/* Estilos Globais */
:root {
    /* Paleta de cores fornecida */
    --c1: #5CF2F2;
    --c2: #B4B9BF;
    --c3: #111111;
    --c4: #09050D00;
    --c5: #112933;
    --c6: #138282;
    --c7: #5CF2F2;
    --c8: #1E4959;
    --c9: #05141A;
    --c10: #5CF2F2;
    --c5-darker: #0A191F;
    --primary-color: #00ffff;
    --primary-hover: #5CF2F2;
    --bg-dark: #001a1a;
    --bg-gradient: linear-gradient(to bottom, #001a1a, #003333);
}

html, body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: #fff;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100vw;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Header/Navbar */
header {
    width: 100%;
    background: transparent;
    position: fixed;
    z-index: 50;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.header.active {
    background-color: rgba(0, 12, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.nav {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: padding 0.3s ease;
}

.header.active .nav {
    padding: 0.8rem 2rem;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

/* Hero Section */
/* Efeito de partículas luminosas para o Hero */
section.hero {
    position: relative;
    overflow: hidden;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    min-height: 14vh;
    background: linear-gradient(160deg, #061F29 45%, #5CF2F2 100%);
    box-shadow: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 20%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-text {
    font-size: 1.15rem;
    color: #fff !important;
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.79);
    font-size: 48px;
    line-height: 53px;
    text-shadow: 0 0 8px var(--c1), 0 0 16px var(--c6);
}

.hero p {
    color: var(--c7);
    line-height: 1.6;
}

/* Botões */
.btn-primary, .hero .btn-primary {
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-size: 1.125rem;
    font-weight: bold;
    box-shadow: 0 4px 24px 0 #00ffff80;
    transition: all 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero button,
.hero .btn-primary {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--c1);
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 14px var(--c1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero button:hover,
.hero .btn-primary:hover,
.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.hero button::before,
.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--c1), var(--c6), var(--c8), var(--c1));
    background-size: 400% 400%;
    border-radius: 9999px;
    animation: gradientBorder 4s ease infinite;
    z-index: -1;
}

/* Efeito HERO especial apenas para o botão principal do HERO */
.hero-btn-effect {
    background: linear-gradient(90deg, #00ffff, #138282, #5CF2F2, #00ffff);
    background-size: 400% 400%;
    animation: hero-gradient-bg 4s ease infinite;
    color: #fff !important;
    border-radius: 9999px;
    box-shadow: 0 4px 24px #00ffff55, 0 0 16px 2px #00ffff77;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-btn-effect:hover {
    box-shadow: 0 8px 32px #00ffffcc, 0 0 32px 8px #00ffff99;
    transform: scale(1.07);
}

/* Gradiente animado de borda para botão destacado */
.hero-effect-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-effect-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--c1), var(--c6), var(--c8), var(--c1));
    background-size: 400% 400%;
    border-radius: 9999px;
    animation: gradientBorder 4s ease infinite;
    z-index: -1;
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes hero-gradient-bg {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes floatParticle {
    0% {
        transform: translateY(100%) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100%) translateX(50px);
        opacity: 0;
    }
}

.animate-float, .hero-image {
    animation: float 2.8s ease-in-out infinite;
}

.floating-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: floatParticle 15s linear infinite;
}

/* Chatbot Section */
.chatbot-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 20, 30, 0.95) 0%, rgba(0, 40, 60, 0.95) 100%);
}

.chatbot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.chatbot-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

#chatbot-section h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00ffff, #138282, #5CF2F2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

#chatbot-section p {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

#chatbot-section .destaque {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Utilitário: gradiente neon para texto futurista */
.neon-gradient {
    background: linear-gradient(90deg, #00ffff, #5CF2F2, #138282);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

/* Utilitário: sombra neon para texto destacado */
.neon-shadow {
    text-shadow: 2px 4px 6px #0e3b4699, 0 0 4px #00ffff, 0 0 10px #00ffff44;
}

/* Utilitário: espaçamento de letras para títulos de destaque */
.letter-spacing {
    letter-spacing: 1px;
}

/* Fontes locais configuradas */
/* Fontes locais configuradas corretamente */

/* Inter Regular */
@font-face {
  font-family: 'Inter';
  src: url('font/Inter/Inter-Regular.woff2') format('woff2'),
       url('font/Inter/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Orbitron Light (peso 300) */
@font-face {
  font-family: 'Orbitron';
  src: url('font/Orbitron/Orbitron-Light.woff2') format('woff2'),
       url('font/Orbitron/Orbitron-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Orbitron Bold (peso 700) */
@font-face {
  font-family: 'Orbitron';
  src: url('font/Orbitron/Orbitron-Bold.woff2') format('woff2'),
       url('font/Orbitron/Orbitron-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Aplicação das fontes */
body {
  font-family: 'Inter', Arial, sans-serif;
}
h1, h2, .hero-title {
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
}

/* Se desejar usar Orbitron Light em subtítulos ou outros elementos: */
.subtitle, .orbitron-light {
  font-family: 'Orbitron', 'Inter', Arial, sans-serif;
  font-weight: 300;
}

/* Benefícios/Impacto */
.beneficios-bg {
    background: linear-gradient(225deg, #121221 70%, #00fff7 110%, rgba(0,255,247,0.0) 130%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 14px;
    box-sizing: border-box;
}

.impacto-bg {
    background: linear-gradient(45deg, #121221 70%, #00fff7 110%, rgba(0,255,247,0.0) 130%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 14px;
    box-sizing: border-box;
}

.beneficios-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff99;
    letter-spacing: 1px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cards de Benefícios */
.benefit-card {
    background: rgba(0, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(120deg, #00ffff, #5CF2F2, #138282, #00ffff);
    background-size: 200% 200%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    opacity: 0.55;
    transition: opacity 0.3s;
    pointer-events: none;
    animation: benefit-gradient-anim 2.5s linear infinite;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: scale(1.045);
    box-shadow: 0 0 24px 4px #00ffff55, 0 4px 24px 0 #00ffff22;
    border-color: transparent;
    z-index: 2;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.neon-icon svg, .neon-icon i {
    font-size: 2.5rem;
    color: #00ffff;
    filter: drop-shadow(0 0 8px #00ffff) drop-shadow(0 0 16px #00ffff99);
}

.neon-icon svg {
    filter: drop-shadow(0 0 8px #00ffff) drop-shadow(0 0 16px #00ffff99);
}

@keyframes benefit-gradient-anim {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Testimonial/Depoimentos */
.testimonial-card {
    position: relative;
    border-radius: 20px;
    padding: 3rem;
    background: rgba(0, 30, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1360px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        rgba(0, 255, 255, 0.1), 
        transparent
    );
    animation: rotateGradient 10s linear infinite;
    z-index: -1;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: -1;
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.spin-icon {
    animation: spinSlow 15s linear infinite;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    background: linear-gradient(90deg, #00ffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.card-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-highlight {
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card-highlight b {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Footer/Rodapé */
.footer {
    background: #001a1a;
    padding: 2rem 0;
    margin-top: 4rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-copy {
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-btn {
    background: linear-gradient(120deg, #00ffff 0%, #138282 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 32px #00ffff55, 0 0 0 4px #13828233;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    outline: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 40px #00ffff99, 0 0 0 8px #13828244;
    background: linear-gradient(120deg, #00ffff 0%, #5CF2F2 100%);
}

.whatsapp-float-btn svg {
    width: 36px;
    height: 36px;
    fill: #fff;
    filter: drop-shadow(0 0 4px #00ffff);
}

/* Scrollbar moderna e futurista */
body::-webkit-scrollbar {
    width: 14px;
    background: linear-gradient(180deg, var(--c1) 0%, var(--c6) 60%, var(--c9) 100%);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--c6) 0%, var(--c1) 80%);
    border-radius: 10px;
    box-shadow: 0 0 12px 2px var(--c1), 0 0 0 1px var(--c6);
    border: 3px solid rgba(0,0,0,0.25);
    transition: background 0.3s;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--c1) 0%, var(--c6) 100%);
    box-shadow: 0 0 20px 4px var(--c1);
}

body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #001a1a 0%, #00343a 100%);
    border-radius: 10px;
}

/* Fonte Orbitron para todos os títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Responsividade */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .testimonial-card, .beneficios-grid {
        max-width: 100vw;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.1;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .hero > .container {
        gap: 1.2rem;
    }
    
    .hero-content {
        margin-top: 2.8rem;
    }
    
    .hero-image {
        max-height: 160px;
        width: auto;
        margin-top: 0.5rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.7rem;
    }
    
    .hero h1, #chatbot-section h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        gap: 5rem;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    
    .hero-content {
        width: 55%;
        align-items: flex-start;
        text-align: left;
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-image-container {
        width: 45%;
        justify-content: flex-end;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    #chatbot-section h2 {
        font-size: 3rem;
    }
    
    .nav {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    .logo img {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    #chatbot-section h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1023px) {
    .nav {
        justify-content: center;
    }
    
    .logo img {
        margin: 0 auto;
        display: block;
    }
}
/* Seção Painel de Controle */
.painel-control {
    background: linear-gradient(45deg, #0f172a, #1e293b);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.painel-control::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 30%);
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.painel-control::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    opacity: 0.5;
    z-index: 0;
}

.painel-control .container {
    position: relative;
    z-index: 2;
}

/* Efeito de partículas flutuantes */
.painel-control .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

.painel-control .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.painel-control .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.painel-control .particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.painel-control .particle:nth-child(4) {
    top: 10%;
    left: 60%;
    animation-delay: 6s;
}

.painel-control .particle:nth-child(5) {
    top: 70%;
    left: 70%;
    animation-delay: 8s;
}

.painel-wrapper {
    position: relative;
    z-index: 1;
}

.painel-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.painel-subtitle {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.painel-desc {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.painel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.painel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    max-height: 60px; /* Aumentado em 20% (de 50px para 60px) */
    width: auto;
    filter: drop-shadow(0 0 4px #00ffff);
}

.painel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.painel-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.painel-card:hover .painel-icon {
    transform: scale(1.1);
}

.painel-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

.painel-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 4rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

@keyframes glowPulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.9; }
    100% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-grid {
        grid-template-columns: 1fr;
    }
    
    .painel-title {
        font-size: 2rem;
    }
    
    .painel-subtitle {
        font-size: 1.5rem;
    }
    
    .info-boxes-container {
        flex-direction: column;
    }
}

/* Efeito especial para o nome Beauty no rodapé */
.beauty-highlight {
    position: relative;
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: beautyGlow 3s infinite;
    padding: 0 5px;
}

.beauty-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(0, 255, 255, 0) 100%);
    z-index: -1;
    animation: beautyLight 3s infinite;
}

@keyframes beautyGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); }
    50% { text-shadow: 0 0 15px rgba(0, 255, 255, 0.9); }
}

@keyframes beautyLight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLine {
    0% { opacity: 0.1; }
    100% { opacity: 0.5; }
}

@keyframes pulseDot {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Efeito de partículas flutuantes */
.floating-data {
    position: absolute;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.7rem;
    pointer-events: none;
    animation: floatData 20s linear infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes floatData {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

/* Efeito de partículas em rede para o Painel de Controle */
.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px #00ffff;
}

.particle-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    transform-origin: left center;
    z-index: -1;
}

/* Linhas de circuito digital */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    height: 1px;
}

.circuit-line:nth-child(1) {
    width: 30%;
    top: 20%;
    left: 0;
    animation: pulseLine 3s infinite alternate;
}

.circuit-line:nth-child(2) {
    width: 40%;
    top: 40%;
    right: 0;
    animation: pulseLine 4s infinite alternate-reverse;
}

.circuit-line:nth-child(3) {
    width: 25%;
    bottom: 30%;
    left: 10%;
    animation: pulseLine 5s infinite alternate;
}

.circuit-line:nth-child(4) {
    width: 35%;
    bottom: 15%;
    right: 5%;
    animation: pulseLine 3.5s infinite alternate-reverse;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.circuit-dot:nth-child(5) {
    top: 20%;
    left: 30%;
    animation: pulseDot 3s infinite alternate;
}

.circuit-dot:nth-child(6) {
    top: 40%;
    right: 40%;
    animation: pulseDot 4s infinite alternate-reverse;
}

.circuit-dot:nth-child(7) {
    bottom: 30%;
    left: 35%;
    animation: pulseDot 5s infinite alternate;
}

.circuit-dot:nth-child(8) {
    bottom: 15%;
    right: 40%;
    animation: pulseDot 3.5s infinite alternate-reverse;
}

/* Caixas informativas adicionais */
.info-boxes-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.info-box {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.info-box-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.info-box-content {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.info-box-icon {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.logo img {
    display: block;
    margin: 0;
    transition