/* --- 1. CONFIGURAÇÕES BASE & VARIÁVEIS --- */
:root {
    --neon: #39ff14;
    --fundo-dark: #02050a;
    --verde-profundo: #051a05;
    --branco: #ffffff;
    --texto: #e0e6ed;
    --transicao: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* * {
    outline: 1px solid red;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at 50% 0%, var(--verde-profundo) 0%, var(--fundo-dark) 80%);
    background-color: var(--fundo-dark);
    background-attachment: fixed;
    color: var(--texto);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Correção de overflow no mobile */
.container-visual,
.elemento-3d {
    max-width: 100%;
}

/* --- 2. COMPONENTES REUTILIZÁVEIS (AUXILIARES) --- */
.cor-neon {
    color: var(--neon);
}

.cor-branca {
    color: var(--branco);
}

.brilho-neon {
    text-shadow: 0 0 25px rgba(57, 255, 20, 0.7);
}

.subtitulo-neon {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--neon);
    font-weight: 900;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.botao-neon {
    display: inline-block;
    padding: 18px 35px;
    border: 2px solid var(--neon);
    color: var(--neon) !important;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transicao);
}

.botao-neon.pequeno {
    padding: 8px 18px;
    font-size: 0.7rem;
}

.botao-neon:hover {
    background: var(--neon);
    color: var(--fundo-dark) !important;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
    transform: translateY(-5px);
}

/* Animação de entrada (Scroll Reveal) */
.revelar {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.17, 0.55, 0.55, 1);
}

.revelar.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* --- 3. CABEÇALHO & NAVEGAÇÃO --- */
.cabecalho-fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 5, 10, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transicao);
}

.navegacao {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-marca {
    text-decoration: none;
    color: var(--branco);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -1px;
}

.logo-marca span {
    color: var(--neon);
}

.lista-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.lista-menu a {
    text-decoration: none;
    color: var(--texto);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.lista-menu a:hover:not(.botao-neon) {
    color: var(--neon);
}

/* Menu Hamburguer Mobile */
.menu-hamburguer {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2000;
}

.barrinha {
    width: 30px;
    height: 3px;
    background-color: var(--neon);
    border-radius: 2px;
    transition: 0.4s;
}

/* Animação do botão hamburguer para "X" */
.menu-hamburguer.aberto .barrinha:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburguer.aberto .barrinha:nth-child(2) {
    opacity: 0;
}

.menu-hamburguer.aberto .barrinha:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- 4. SEÇÃO INICIAL (HERO SECTION) --- */
.secao-destaque {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 120px 0 60px 0;
}

.texto-principal {
    flex: 1.2;
    z-index: 10;
}

.texto-principal h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.texto-principal p {
    max-width: 480px;
    opacity: 0.85;
    font-size: 1.15rem;
    margin-bottom: 60px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Elementos Visuais 3D */
.container-visual {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 2000px;
}

.elemento-3d {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: rotateY(-18deg);
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.15));
}

.circulo-decorativo {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(57, 255, 20, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, transparent 75%);
    z-index: 1;
}

.placa-performance {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateZ(120px);
    animation: flutuar 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.numero-100 {
    font-size: 11.5rem;
    font-weight: 900;
    color: var(--neon);
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.sub-texto {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 5px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-top: 15px;
}

/* --- 5. SEÇÃO OFERTA (PILARES) --- */
.secao-pilares {
    padding: 60px 0 100px 0;
}

.header-pilares {
    text-align: center;
    margin-bottom: 70px;
}

.header-pilares h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
}

.header-pilares p {
    max-width: 600px;
    margin: 20px auto 0;
    opacity: 0.7;
}

.grid-pilares {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-pilar {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 35px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.card-pilar:hover {
    background: rgba(57, 255, 20, 0.03);
    border-color: var(--neon);
    transform: translateY(-10px);
}

.icone-container {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon);
}

.svg-neon {
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.5));
}

.card-pilar h3 {
    margin-bottom: 15px;
    font-weight: 900;
}

.card-pilar p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.6;
}

/* --- 6. SEÇÃO PERFORMANCE & LUCRO --- */
.secao-performance {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(57, 255, 20, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.header-centralizado {
    text-align: center;
    margin-bottom: 70px;
}

.desc-performance {
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1.1rem;
}

.grade-vitals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.card-vital {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card-vital:hover {
    transform: translateY(-10px);
    background: rgba(57, 255, 20, 0.02);
    border-color: var(--neon);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vital-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.icone-negocio {
    font-size: 2.5rem;
}

.status.bom {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--neon);
    background: rgba(57, 255, 20, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-vital h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-vital p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-vital strong {
    color: var(--neon);
}

/* Gráficos CWV */
.grafico-cwv {
    width: 100%;
}

.barra-fundo {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.barra-preenchida {
    height: 100%;
    background: linear-gradient(90deg, #0a2b08 0%, var(--neon) 100%);
    width: 0;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.legenda-grafico {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.marca-bom {
    color: var(--neon);
}

/* Animações dos Gráficos via Scroll */
.revelar.visivel .LCP-bar {
    animation: animarBarra 1.5s ease-out forwards 0.2s;
}

.revelar.visivel .CLS-bar {
    animation: animarBarra 1.5s ease-out forwards 0.4s;
}

.revelar.visivel .INP-bar {
    animation: animarBarra 1.5s ease-out forwards 0.6s;
}

@keyframes animarBarra {
    from {
        width: 0;
    }

    to {
        width: 95%;
    }
}

/* --- 7. SEÇÃO PROCESSO (COMO TRABALHO) --- */
.secao-processo {
    padding: 100px 0;
}

.linha-processo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.card-processo {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid rgba(57, 255, 20, 0.1);
    transition: 0.4s;
}

.card-processo:hover {
    background: rgba(57, 255, 20, 0.03);
    border-left-color: var(--neon);
    transform: translateX(10px);
}

.num-processo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon);
    opacity: 0.3;
    font-family: monospace;
}

/* --- 8. SEÇÃO QUEM SOU (SOBRE) --- */
.secao-sobre {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(57, 255, 20, 0.02));
}

.grade-sobre {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.moldura-neon {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 380px;
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.03);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    justify-self: center;
}

.foto-perfil {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(40%) brightness(90%);
    transition: 0.5s ease;
    justify-self: center;

}

.background-glass-overlay {
    position: absolute;
    bottom: -25px;
    right: -25px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 10;
}


.label-experiencia {
    font-size: 0.85rem;
    color: var(--neon);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

.sobre-texto h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 800;
}

.sobre-texto p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.badges-tecnicas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.badge:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon);
    color: var(--neon);
}

/* --- 9. SEÇÃO DÚVIDAS (FAQ) --- */
.secao-faq {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-header {
    margin-bottom: 50px;
    text-align: center;
}

.lista-faq {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

details[open] {
    background: rgba(57, 255, 20, 0.03);
    border-color: rgba(57, 255, 20, 0.4);
}

summary {
    padding: 22px 30px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    color: var(--neon);
    font-size: 1.6rem;
}

details[open] summary::after {
    content: '-';
}


.faq-content {
    padding: 0 30px 25px 30px;
    color: rgba(255, 255, 255, 0.7);
    animation: slideDown 0.4s ease-out;
}

/* --- 10. SEÇÃO CONTATO --- */
.secao-contato {
    padding: 100px 0;
}

.grade-contato {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.card-direto {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.link-neon {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid var(--neon);
}

.form-contato {
    background: rgba(255, 255, 255, 0.01);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grupo-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grupo-input input,
.grupo-input select,
.grupo-input textarea {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
}

.grupo-input input:focus,
.grupo-input select:focus,
.grupo-input textarea:focus {
    border-color: var(--neon);
    outline: none;
}

.btn-enviar-projeto {
    background: var(--neon);
    color: #000;
    font-weight: 900;
    padding: 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.btn-enviar-projeto:hover {
    transform: translateY(-4px);
    background: #4efd1d;
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.3);
}

/* --- 11. RODAPÉ (FOOTER) --- */
.rodape-moderno {
    background: rgba(2, 5, 10, 0.98);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grade-rodape {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.txt-rodape {
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 300px;
    margin: 20px 0;
}

.status-sistema {
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ponto-status {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulse 2s infinite;
}

.item-contato {
    text-decoration: none;
    color: var(--branco);
    font-size: 0.8rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 15px;
    display: block;
    transition: 0.3s;
}

.item-contato:hover {
    border-color: var(--neon);
    background: rgba(57, 255, 20, 0.08);
}

.assinatura {
    background: #010307;
    padding: 35px 0;
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.flex-assinatura {
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
}

/* --- 12. ANIMAÇÕES GLOBAIS --- */
@keyframes flutuar {

    0%,
    100% {
        transform: translateZ(120px) translateY(0);
    }

    50% {
        transform: translateZ(120px) translateY(-25px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 13. RESPONSIVIDADE (MEDIA QUERIES) --- */

/* Tablets e Mobile */
@media (max-width: 950px) {

    /* Menu Mobile Hamburguer */
    .menu-hamburguer {
        display: flex;
    }

    .lista-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: rgba(2, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1500;
    }

    .lista-menu.ativo {
        right: 0;
    }

    .lista-menu a {
        font-size: 1rem;
    }

    /* Seção Hero */
    .secao-destaque {
        flex-direction: column;
        text-align: center;
    }

    .texto-principal h1 {
        font-size: 3rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .texto-principal p {
        margin: 0 auto 50px auto;
    }

    .container-visual {
        justify-content: center;
        margin-top: 60px;
        width: 100%;
    }

    .elemento-3d {
        width: 90%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .numero-100 {
        font-size: 8rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    /* Grades */
    .grid-pilares,
    .grade-vitals,
    .linha-processo,
    .grade-sobre,
    .grade-contato,
    .grade-rodape {
        grid-template-columns: 1fr;
    }

    .sobre-visual {
        order: 2;
        margin-top: 40px;
    }

    .background-glass-overlay {
        right: 50%;
        transform: translateX(50%);
    }

    .flex-assinatura {
        display: flex;
        flex-direction: column;
        text-align: center;
        opacity: 0.4;
    }

}