/* ===============================
   PALETA ÚNICOO
================================= */
:root {
    --preto: #000000;
    --verde: #96E01A;
    --branco: #FFFFFF;
    --cinza-claro: #f4f4f4;
    --cinza-txt: #4A4A4A;
}

/* ===============================
   RESET & BASE
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--branco);
    color: var(--cinza-txt);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.centralizado {
    text-align: center;
}

.texto-branco {
    color: var(--branco);
}

.verde-destaque {
    color: var(--verde);
}

.bg-preto {
    background-color: var(--preto);
}

.bg-cinza {
    background-color: var(--cinza-claro);
}

/* ===============================
   SCROLL PROGRESS
================================= */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--verde), #dfff6b);
    z-index: 2000;
    transition: width 0.15s linear;
}

/* ===============================
   TOP BAR
================================= */
.top-bar {
    background: var(--verde);
    padding: 10px 0;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.9em;
}

.btn-top-bar {
    background: var(--preto);
    color: var(--verde);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.8em;
}

/* ===============================
   HEADER / NAV
================================= */
.header {
    background: var(--branco);
    padding: 15px 0;
    position: sticky;
    top: 45px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.8em;
    font-weight: 900;
    color: var(--preto);
}

.ponto-verde {
    color: var(--verde);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--verde);
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-principal {
    background-color: var(--verde);
    color: var(--preto);
    border-color: var(--verde);
}

.btn-principal:hover {
    background-color: var(--preto);
    color: var(--verde);
    box-shadow: 0 10px 25px rgba(150, 224, 26, 0.4);
    transform: translateY(-4px) scale(1.02);
}

.btn-secundario {
    background-color: transparent;
    color: var(--branco);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secundario:hover {
    background-color: var(--branco);
    color: var(--preto);
}

.btn-nav {
    background-color: var(--verde);
    color: var(--preto);
    padding: 8px 20px;
    font-weight: 700;
}

/* Header scrolled */
.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

.header.scrolled .logo,
.header.scrolled .nav-item {
    color: var(--branco);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--preto);
    cursor: pointer;
}

/* ===============================
   HERO
================================= */
.hero {
    min-height: 90vh;
    position: relative;
    color: var(--branco);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 200px;
    padding-bottom: 140px;
    background: radial-gradient(circle at top left, #96E01A30, transparent 60%),
                linear-gradient(135deg, #000000, #050505);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, #96E01A22, transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 60px;
    z-index: 1;
}

.hero-title {
    font-size: 4.8em;
    font-weight: 900;
    line-height: 1.05;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.35em;
    color: #dddddd;
    margin: 20px 0 35px;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.autoridade-icons {
    margin-top: 20px;
    font-size: 0.95em;
    font-weight: 600;
    color: #cccccc;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
}

.autoridade-icons i {
    color: var(--verde);
    margin-right: 6px;
}

/* Hero Aside Card */
.hero-aside {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-card {
    background: rgba(12, 12, 12, 0.9);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(150, 224, 26, 0.3);
    backdrop-filter: blur(20px);
    max-width: 360px;
}

.hero-card-label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.hero-card h3 {
    font-size: 2.4em;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-card h3 span {
    display: block;
    font-size: 0.45em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbbbbb;
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

.hero-metrics div {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #dddddd;
}

.hero-metrics strong {
    color: var(--verde);
    font-size: 1em;
}

.hero-card-footer {
    font-size: 0.75em;
    color: #888888;
}

/* Divisor */
.divisor-verde {
    width: 100%;
    height: 90px;
    background-color: var(--verde);
    transform: skewY(-2deg);
    margin-top: -50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===============================
   SUBTÍTULOS & TÍTULOS
================================= */
.sub-titulo {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--verde);
    margin-bottom: 10px;
    display: block;
    font-size: 0.9em;
}

.section-title {
    font-size: 3.3em;
    font-weight: 900;
    margin-bottom: 40px;
}

/* ===============================
   CAPTURA STRIP
================================= */
.captura-strip {
    background: #0f0f0f;
    color: var(--branco);
    padding: 60px 0;
}

.captura-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    gap: 40px;
    align-items: center;
}

.captura-text h2 {
    font-size: 2.1em;
    margin-bottom: 12px;
}

.captura-text p {
    font-size: 0.98em;
    color: #dddddd;
}

.captura-inline-form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr auto;
    gap: 10px;
}

.captura-inline-form input {
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid #333333;
    font-size: 0.95em;
    background: #181818;
    color: var(--branco);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.captura-inline-form input:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 1px rgba(150, 224, 26, 0.4);
}

.captura-help {
    font-size: 0.78em;
    margin-top: 8px;
    color: #999999;
}

/* ===============================
   QUEM SOMOS
================================= */
.grid-2-col {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.lista-sobre {
    margin: 20px 0 25px;
}

.lista-sobre li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98em;
}

.lista-sobre i {
    color: var(--verde);
}

.btn-inline {
    margin-top: 10px;
}

.sobre-metricas {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.destaque-box {
    background: var(--verde);
    padding: 24px 24px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(150, 224, 26, 0.4);
}

.destaque-box .numero {
    font-size: 2.4em;
    font-weight: 900;
    color: var(--preto);
}

.destaque-box p {
    font-size: 0.95em;
    margin-top: 8px;
}

.destaque-dark {
    background: #111111;
    color: var(--branco);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* ===============================
   SERVIÇOS
================================= */
.servicos {
    position: relative;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card-servico {
    background: var(--branco);
    padding: 26px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    border-top: 4px solid var(--verde);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.card-servico::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, #96E01A22, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(150, 224, 26, 0.7);
}

.card-servico:hover::before {
    opacity: 1;
}

.card-servico i {
    font-size: 2em;
    color: var(--verde);
    margin-bottom: 15px;
}

.card-servico h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.card-servico p {
    font-size: 0.95em;
    margin-bottom: 18px;
}

.tag-card {
    display: inline-block;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    border: 1px solid rgba(150, 224, 26, 0.6);
    padding: 4px 12px;
    color: #666666;
}

/* ===============================
   LOGOS
================================= */
.logos {
    padding: 80px 0;
}

.logos-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    border-radius: 12px;
    border: 1px dashed #cccccc;
    padding: 16px 20px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
}

/* ===============================
   METODOLOGIA
================================= */
.metodologia {
    position: relative;
}

.grid-metodologia {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 30px;
}

.passo {
    background: var(--branco);
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.passo i {
    font-size: 2.5em;
    color: var(--verde);
    margin-bottom: 14px;
}

.passo h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.passo p {
    font-size: 0.95em;
    color: #666666;
}

.passo:hover {
    transform: translateY(-10px) rotateZ(-1deg);
    box-shadow: 0 16px 40px rgba(150, 224, 26, 0.35);
}

/* ===============================
   CASES
================================= */
.cases {
    text-align: center;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin: 25px 0 40px;
}

.case-card {
    background: #111111;
    border-radius: 16px;
    border: 1px solid rgba(150, 224, 26, 0.4);
    padding: 28px 24px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.case-card h3 {
    font-size: 1.25em;
    margin-bottom: 12px;
}

.case-card p {
    font-size: 0.95em;
    color: #dddddd;
}

.case-card:hover {
    background: var(--verde);
    color: var(--preto);
    border-color: var(--preto);
    transform: translateY(-10px);
}

.btn-grande {
    padding: 16px 40px;
    font-size: 1em;
}

/* ===============================
   FAQ
================================= */
.faq {
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 25px;
}

.faq-item {
    background: var(--branco);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.faq-item h3 {
    font-size: 1.05em;
    margin-bottom: 8px;
    font-weight: 700;
}

.faq-item p {
    font-size: 0.93em;
    color: #555555;
}

/* ===============================
   CONTATO
================================= */
.grid-2-col-contato {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: center;
}

.contato-info p {
    margin-bottom: 8px;
}

.form-shadow {
    background: var(--branco);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.form-shadow input,
.form-shadow textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-size: 0.95em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-shadow input:focus,
.form-shadow textarea:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 1px rgba(150, 224, 26, 0.4);
}

.form-shadow textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-full {
    width: 100%;
}

/* ===============================
   FOOTER
================================= */
.footer {
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.footer h3,
.footer h4 {
    margin-bottom: 10px;
}

.footer ul li {
    margin-bottom: 6px;
    font-size: 0.95em;
}

.footer ul li a {
    color: var(--branco);
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer ul li a:hover {
    opacity: 1;
    color: var(--verde);
}

.redes-sociais a {
    color: var(--verde);
    margin-right: 12px;
    font-size: 1.4em;
    transition: transform 0.2s ease;
}

.redes-sociais a:hover {
    transform: translateY(-3px);
}

.copy {
    margin-top: 25px;
    text-align: center;
    font-size: 0.8em;
    opacity: 0.7;
}

/* ===============================
   POPUP SLIDE-IN
================================= */
.lead-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 320px;
    background: #0f0f0f;
    color: var(--branco);
    border-radius: 16px;
    padding: 18px 18px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(150, 224, 26, 0.4);
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1500;
}

.lead-popup.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.lead-popup-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: transparent;
    border: none;
    color: #888888;
    font-size: 1.4em;
    cursor: pointer;
}

.lead-popup-title {
    font-size: 0.98em;
    font-weight: 700;
    margin-bottom: 6px;
}

.lead-popup-text {
    font-size: 0.9em;
    color: #dddddd;
    margin-bottom: 10px;
}

.btn-popup {
    width: 100%;
    text-align: center;
}

/* ===============================
   WHATSAPP FLOAT
================================= */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--branco);
    font-size: 1.9em;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    z-index: 1400;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* ===============================
   ANIMAÇÕES SCROLL
================================= */
.animar-fade-up,
.animar-fade-left,
.animar-fade-right,
.animar-card-bounce {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.animar-fade-left {
    transform: translateX(-40px);
}

.animar-fade-right {
    transform: translateX(40px);
}

.animar-card-bounce {
    transform: translateY(20px);
}

/* Quando entra na view */
.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Efeito cascata nos serviços */
.grid-servicos .animar-card-bounce:nth-child(1) { transition-delay: 0.0s; }
.grid-servicos .animar-card-bounce:nth-child(2) { transition-delay: 0.06s; }
.grid-servicos .animar-card-bounce:nth-child(3) { transition-delay: 0.12s; }
.grid-servicos .animar-card-bounce:nth-child(4) { transition-delay: 0.18s; }
.grid-servicos .animar-card-bounce:nth-child(5) { transition-delay: 0.24s; }
.grid-servicos .animar-card-bounce:nth-child(6) { transition-delay: 0.30s; }

/* ===============================
   RESPONSIVIDADE
================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8em;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
    }

    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-aside {
        justify-content: flex-start;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .grid-metodologia {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        gap: 10px;
    }

    .captura-grid {
        grid-template-columns: 1fr;
    }

    .captura-inline-form {
        grid-template-columns: 1fr;
    }

    .lead-popup {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 30px;
        background: rgba(0, 0, 0, 0.98);
        padding: 18px;
        border-radius: 12px;
        flex-direction: column;
        gap: 10px;
        min-width: 220px;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        color: var(--branco);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        color: var(--branco);
    }

    .header {
        background: rgba(0, 0, 0, 0.98);
        padding: 12px 0;
    }

    .logo {
        color: var(--branco);
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .grid-metodologia {
        grid-template-columns: 1fr;
    }

    .grid-2-col-contato {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 2.3em;
    }

    .footer-grid {
        text-align: left;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 14px;
    }
}
