/* ============================================================
   AgRisk Landing Page — style.css
   Organização por seção conforme estrutura do index.html
   ============================================================ */

/* Importação da fonte Sora para o menu */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600&display=swap');


/* === VARIÁVEIS GLOBAIS === */
:root {
    --bg-base: #011E26;
    --bg-darker: #042c38;
    --brand-green: #19eaa3;
    --brand-green-glow: rgba(25, 234, 163, 0.4);
    --brand-green-dim: rgba(25, 234, 163, 0.05);
    --text-white: #FFFFFF;
    --text-gray: #A0B3B8;
    --font-heading: 'Montserrat', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-brand: 2px solid var(--brand-green-glow);
    --shadow-main: 0 4px 15px rgba(25, 234, 163, 0.15);
    --shadow-glow: 0 6px 20px rgba(25, 234, 163, 0.3);

    /* Nav Variables */
    --nav-bg: #0d0f0e;
    --nav-text: rgba(255, 255, 255, 0.72);
    --nav-border: rgba(255, 255, 255, 0.06);
    --nav-green: #19eaa3;
    --nav-green-hover: #3ef2b2;
    --nav-height: 68px;
    --font-nav: 'Sora', sans-serif;

    /* Standardization Variables */
    --section-vp: 100px;
    --container-hp: 5%;
    --fs-h2: 2.2rem;
    --fs-p: 1.1rem;
    --lh-p: 1.6;
    --btn-padding: 0.7rem 1.8rem;
    --btn-radius: 20px;
    --btn-fs: 0.95rem;
    --icon-size-feature: 32px;
}

/* === BOTÕES GLOBAIS === */
h1, h2 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.btn-cta {
    background-color: var(--brand-green);
    color: #011E26;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--btn-fs);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background-color: #5fe8b9;
    color: #011E26;
}

/* === ANIMAÇÕES DE ENTRADA === */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BUG 1 SAFETY NET: Hide any links that are direct children of body and likely rogue */
body > a:not(.nav-logo):not(.hero-btn),
body > ul:not(.nav-links):not(.mobile-links) {
    display: none !important;
}


/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* FIX GLOBAL: imagens nunca estouram o container */
img {
    max-width: 100%;
    height: auto;
}

/* Elemento exclusivo mobile — oculto por padrão no desktop */
.deepdive-mac-mobile {
    display: none;
}

/* ============================================================
   MENU DE NAVEGAÇÃO — GLOBAL & DESKTOP
   ============================================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: #0d0f0e !important; /* BUG 2: Sempre sólido */
    border-bottom: 1px solid var(--nav-border);
    z-index: 2000; /* BUG 3: Acima de tudo, inclusive overlay */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--font-nav);
}

.main-nav.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(13, 15, 14, 0.95) !important;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative; /* Base para o posicionamento central dos links */
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

/* BUG 4: Links centralizados de forma robusta conforme especificação */
.nav-links {
    list-style: none;
    display: flex;
    flex: 1;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-green);
}

.nav-link.active {
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    z-index: 10;
}

.nav-btn-login {
    text-decoration: none;
    color: var(--nav-green);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-btn-login:hover {
    color: var(--nav-green-hover);
}

.nav-btn-expert {
    text-decoration: none;
    background-color: var(--nav-green);
    color: #0d0f0e;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-btn-expert:hover {
    background-color: var(--nav-green-hover);
    transform: translateY(-1px);
}

/* Hambúrguer Hidden no Desktop */
.nav-hamburger {
    display: none;
}

/* ============================================================
   RESPONSIVIDADE PROGRESSIVA DESKTOP
   ============================================================ */
@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    .nav-links { gap: 12px; }
    .nav-link { font-size: 13px; }
    .nav-logo img { height: 28px; }
    :root { --nav-height: 68px; }
}

@media (max-width: 950px) {
    .nav-links { gap: 4px; }
    .nav-actions { gap: 12px; }
}

@media (max-width: 900px) {
    :root { --nav-height: 62px; }
    .nav-container { padding: 0 16px; }
    .nav-links { gap: 0; }
    .nav-link { font-size: 12px; }
    .nav-logo img { height: 26px; }
    .nav-actions { gap: 8px; }
}

@media (max-width: 850px) {
    /* BUG 4: Esconde os links centrais antes que sobreponham */
    .nav-links { display: none !important; }
}

@media (max-width: 820px) {
    :root { --nav-height: 58px; }
    .nav-container { padding: 0 12px; }
    .nav-logo img { height: 24px; }
    .nav-actions { gap: 12px; }
}

/* ============================================================
   MENU MOBILE (768px ou menos)
   ============================================================ */
@media (max-width: 768px) {
    .main-nav { 
        height: 60px;
        background-color: var(--nav-bg); /* Sempre escuro no mobile */
        border-bottom: 1px solid var(--nav-border);
    }

    .nav-links, .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100; /* Acima do overlay */
        position: relative;
    }

    .nav-hamburger span {
        width: 100%;
        height: 2px;
        background-color: var(--nav-green);
        transition: all 0.3s ease;
        display: block;
    }

    /* Transformação Hamburguer para X — Bug 3 Correção definitiva */
    .nav-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Base styles for Mobile Overlay — must be outside media query to be hidden on desktop */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--nav-bg);
    z-index: 1050;
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================================================
   MENU MOBILE (768px ou menos)
   ============================================================ */
@media (max-width: 768px) {
    .main-nav { 
        height: 60px;
        background-color: var(--nav-bg); /* Sempre escuro no mobile */
        border-bottom: 1px solid var(--nav-border);
    }
    
    .mobile-menu-content {
        width: 100%;
        padding: 0 40px;
        text-align: center;
    }

    .mobile-links {
        list-style: none;
    }

    .mobile-links li {
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mobile-menu-overlay.active .mobile-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-links a {
        text-decoration: none;
        font-size: 26px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.38);
        transition: color 0.3s ease;
    }

    .mobile-links a:hover,
    .mobile-links a.active {
        color: var(--nav-green);
    }

    .mobile-divider {
        height: 1px;
        background-color: var(--nav-border);
        margin: 2rem 0;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .mobile-menu-overlay.active .mobile-divider {
        opacity: 1;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-btn-login, .mobile-btn-expert {
        text-decoration: none;
        padding: 16px;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 600;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        text-align: center;
    }

    .mobile-menu-overlay.active .mobile-btn-login,
    .mobile-menu-overlay.active .mobile-btn-expert {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-btn-login {
        background-color: rgba(25, 234, 163, 0.10);
        border: 1px solid rgba(25, 234, 163, 0.28);
        color: var(--nav-green);
    }

    .mobile-btn-expert {
        background-color: var(--nav-green);
        color: #0d0f0e;
    }
}


/* ============================================================
   SEÇÃO 1 — HERO
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-bg-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 680px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: var(--brand-green);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    max-width: 90%;
    opacity: 0.95;
    letter-spacing: -0.2px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-green);
    color: #011E26;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-main);
    border: 1px solid transparent;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background-color: #5fe8b9;
}


/* ============================================================
   SEÇÃO 2 — MÉTRICAS E SOCIAL PROOF
   ============================================================ */
.metrics-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000a13 url('Bg2.jpg') no-repeat center bottom;
    background-size: 100% 100%;
    padding: var(--section-vp) var(--container-hp);
    overflow: hidden;
    z-index: 2;
}

.metrics-headline {
    text-align: center;
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3rem;
    line-height: 1.3;
    max-width: 850px;
}

.metrics-headline .highlight-word {
    color: var(--text-white);
}

.metrics-headline .brand-highlight {
    font-weight: 600;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin-bottom: 4rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.carousel-track img:hover {
    opacity: 1;
}

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

.metrics-divider {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 234, 163, 0.4), transparent);
    margin-bottom: 5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 4rem 2rem;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.metric-card:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 20%;
    height: 60%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(25, 234, 163, 0.15), transparent);
}

.metric-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(25, 234, 163, 0.3);
}

.metric-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    opacity: 0.8;
    line-height: 1.4;
    max-width: 250px;
}


/* ============================================================
   SEÇÃO 3 — FEATURES (SPLIT PANEL)
   ============================================================ */
.features-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--section-vp) var(--container-hp);
    background-color: #000a13;
    z-index: 2;
}

.features-box {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background-color: #000a13;
    border: var(--border-brand);
    border-radius: 20px;
    overflow: hidden;
}

.features-left {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.features-logo {
    height: 30px;
    width: auto;
    margin-bottom: 2.5rem;
    align-self: flex-start;
}

.features-headline {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--brand-green);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    max-width: 95%;
}

.features-desc {
    font-family: var(--font-body);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 95%;
}

.feature-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.4rem 0;
    border-bottom: 2px solid rgba(25, 234, 163, 0.15);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: var(--icon-size-feature);
    height: var(--icon-size-feature);
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-white);
    opacity: 0.7;
}

.features-cta {
    align-self: flex-start;
    margin-top: auto;
    background-color: var(--brand-green);
    color: #011E26;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--btn-fs);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-main);
}

.features-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background-color: #5fe8b9;
}

.features-right {
    flex: 1;
    position: relative;
    background: url('Gestão-de-portifólio.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100%;
    border-left: 2px solid rgba(25, 234, 163, 0.2);
}


/* ============================================================
   SEÇÃO 4 — NÍVEIS / PLANOS
   ============================================================ */
.pricing-section {
    position: relative;
    width: 100%;
    background: url('Bg4.jpg') no-repeat center center;
    background-size: cover;
    padding: var(--section-vp) var(--container-hp);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.pricing-headline {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.pricing-card {
    background-color: #01141a;
    border: var(--border-brand);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .pricing-grid:hover .pricing-card {
        opacity: 0.4;
        filter: grayscale(40%);
    }

    .pricing-grid .pricing-card:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(25, 234, 163, 0.3);
        z-index: 10;
    }
}

.pricing-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(25, 234, 163, 0.2);
}

.pricing-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pricing-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brand-green);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-desc {
    font-family: var(--font-body);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-btn {
    background-color: var(--brand-green);
    color: #011E26;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--btn-fs);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background-color: #5fe8b9;
}


/* ============================================================
   SEÇÃO 5 — PRODUCT DEEP DIVE
   ============================================================ */
.deepdive-section {
    position: relative;
    width: 100%;
    background-color: #000a13;
    background-image:
        linear-gradient(rgba(25, 234, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 234, 163, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: var(--section-vp) var(--container-hp);
    display: flex;
    flex-direction: column;
    gap: 8rem;
    z-index: 2;
}

.deepdive-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.deepdive-top-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.deepdive-logo {
    height: 35px;
    width: auto;
    margin-bottom: 2.5rem;
    align-self: flex-start;
}

.deepdive-headline {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--brand-green);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.deepdive-desc {
    font-family: var(--font-body);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    color: var(--text-gray);
}

.deepdive-top-right {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deepdive-mac-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
}

.deepdive-mac-img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(-2deg);
}

.deepdive-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
}

.deepdive-bottom-left {
    flex: 1.2;
    position: relative;
}

.deepdive-telas-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.deepdive-bottom-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.deepdive-feature-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2.5rem;
}

.deepdive-feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(25, 234, 163, 0.15);
}

.deepdive-feature-item:first-child {
    padding-top: 0;
}

.deepdive-feature-icon {
    width: var(--icon-size-feature);
    height: var(--icon-size-feature);
    object-fit: contain;
    flex-shrink: 0;
}

.deepdive-feature-text {
    display: flex;
    flex-direction: column;
}

.deepdive-feature-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 0.4rem;
}

.deepdive-feature-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.deepdive-cta {
    align-self: flex-start;
    background-color: var(--brand-green);
    color: #011E26;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--btn-fs);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-main);
}

.deepdive-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background-color: #5fe8b9;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.visible {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* ============================================================
   SEÇÃO 6 — CRED ACADEMY
   ============================================================ */
.academy-section {
    background: #000a13 !important;
    background-image: none !important;
    background-color: #000a13 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--section-vp) 0;
    overflow: hidden;
    z-index: 2;
}

.academy-logo-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.academy-logo-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 234, 163, 0.5), transparent);
}

.academy-logo {
    height: 55px;
    width: auto;
    flex-shrink: 0;
}

.academy-headline {
    font-family: var(--font-headings);
    font-size: var(--fs-h2);
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    max-width: 800px;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.academy-desc {
    font-family: var(--font-body);
    font-size: var(--fs-p);
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    line-height: var(--lh-p);
    margin-bottom: 3.5rem;
}

.academy-stats {
    display: flex;
    align-items: stretch;
    width: fit-content; /* Agora a barra "abraça" o conteúdo */
    max-width: 95%;
    margin: 0 auto 5rem auto;
    background: #0d1f2d;
    border: 2px solid #19eaa3;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.academy-stats-track {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.academy-stat-item {
    flex: 0 0 auto; /* Não estica, mantém tamanho do conteúdo + padding */
    min-width: 180px; /* Garante um tamanho base para evitar compressão excessiva */
    text-align: center;
    color: #fff;
    font-size: clamp(16px, 1.2vw, 20px); /* Ajustado para consistência desktop */
    font-weight: 700;
    line-height: 1.3;
    padding: 24px 35px; /* Respiro balanceado */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.academy-stat-divider {
    width: 2px;
    background: #19eaa3;
    align-self: stretch;
    margin: 16px 0;
    flex-shrink: 0;
}

.academy-mobile-only {
    display: none;
}

.academy-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    margin: 2rem 0 5rem 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.academy-logo-bar,
.academy-headline,
.academy-desc,
.academy-stats,
.academy-grid,
.academy-cta {
    position: relative;
    z-index: 1;
    padding-left: 5%;
    padding-right: 5%;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 3.5rem;
}

.academy-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0d1f2d;
    border: 1px solid rgba(25, 234, 163, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
}

.academy-cat-icon-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background-color: #19eaa3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.academy-cat-icon {
    width: var(--icon-size-feature);
    height: var(--icon-size-feature);
    object-fit: contain;
}

.academy-cat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.3;
}

.academy-cta {
    background-color: transparent;
    color: var(--brand-green);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--btn-fs);
    padding: var(--btn-padding);
    border-radius: var(--btn-radius);
    border: 2px solid var(--brand-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.academy-cta:hover {
    background-color: var(--brand-green);
    color: #011E26;
    box-shadow: var(--shadow-glow);
}


/* ============================================================
   SEÇÃO 7 — GUARDIÕES DO AGRO
   ============================================================ */
.guardioes-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-base);
    padding: var(--section-vp) var(--container-hp);
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 2;
}

.guardioes-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 2;
}

.guardioes-content {
    width: 50%;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guardioes-logo {
    height: clamp(80px, 10vw, 120px);
    width: auto;
    margin-bottom: 2.5rem;
    display: block;
}

.guardioes-headline {
    font-size: var(--fs-h2);
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.guardioes-desc {
    font-size: var(--fs-p);
    color: var(--text-gray);
    line-height: var(--lh-p);
    margin-bottom: 2.5rem;
}

.guardioes-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.guardioes-badge {
    background-color: rgba(25, 234, 163, 0.05);
    border: 1px solid var(--brand-green);
    border-radius: 40px;
    padding: 0.8rem 1.4rem;
    color: var(--brand-green);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    width: fit-content;
    max-width: 100%;
    transition: all 0.3s ease;
}

.guardioes-badge:hover {
    background-color: rgba(25, 234, 163, 0.12);
    transform: translateY(-2px);
}

.guardioes-badge::before {
    content: '✓';
    font-weight: 700;
}

.guardioes-visual {
    width: 50%;
    height: 600px;
}

.guardioes-phone-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 140%;
    max-height: 950px;
    width: auto;
    object-fit: contain;
    object-position: right center;
    z-index: 3;
}


/* ============================================================
   SEÇÃO 8 — FORMULÁRIO DE CONTATO
   ============================================================ */
.contact-section {
    width: 100%;
    background: linear-gradient(to bottom, var(--bg-base), #000a13);
    padding: var(--section-vp) var(--container-hp);
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
}

.contact-photo-panel {
    flex: 1;
    border: var(--border-brand);
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
}

.contact-photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-content-panel {
    flex: 1;
    border: var(--border-brand);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.contact-headline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-h2);
    color: var(--text-white);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact-desc {
    font-size: var(--fs-p);
    color: var(--text-gray);
    text-align: center;
    line-height: var(--lh-p);
    max-width: 420px;
    margin-bottom: 2rem;
}

/* HubSpot Form Overrides */
#hubspot-form {
    width: 100%;
    flex: 1;
}

#hubspot-form .hs-form fieldset { max-width: 100% !important; }
#hubspot-form .hs-form .hs-input { width: 100% !important; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; font-size: 14px; color: #fff; background: rgba(255,255,255,0.05); outline: none; transition: border-color 0.2s; }
#hubspot-form .hs-form .hs-input:focus { border-color: #19eaa3; }
#hubspot-form .hs-form .hs-form-field { margin-bottom: 16px; }
#hubspot-form .hs-form label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
#hubspot-form .hs-form .hs-button { width: 100%; padding: 12px; background: transparent; color: #19eaa3; border: 2px solid #19eaa3; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
#hubspot-form .hs-form .hs-button:hover { background: #19eaa3; color: #07130e; }
#hubspot-form .hs-form .hs-error-msgs { list-style: none; margin-top: 4px; }
#hubspot-form .hs-form .hs-error-msgs label { color: #e53e3e; font-size: 12px; font-weight: 400; }
#hubspot-form .submitted-message { text-align: center; font-size: 15px; color: #fff; padding: 16px 0; }



/* ============================================================
   SEÇÃO 9 — FAQ
   ============================================================ */
.faq-section {
    position: relative;
    width: 100%;
    background-color: #000a13;
    padding: var(--section-vp) var(--container-hp) 260px var(--container-hp);
    overflow: hidden;
    z-index: 2;
}

.faq-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 0;
    pointer-events: none;
}

.faq-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-headline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-h2);
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-divider-top {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 3rem auto;
}

.faq-container {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-brand);
    border-radius: 20px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 2px solid rgba(25, 234, 163, 0.4);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 2rem;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
}

.faq-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, border-color 0.3s ease;
}

.faq-arrow svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.3s ease;
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    border-color: var(--brand-green);
}

.faq-item.open .faq-arrow svg {
    stroke: var(--brand-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    padding-bottom: 1.6rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}


/* ============================================================
   BARRA DE INVESTIDORES
   ============================================================ */
.investor-bar {
    width: 100%;
    background: url('Group 39.png') no-repeat center center;
    background-size: cover;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    margin-top: var(--nav-height);
    overflow: hidden;
}

.investor-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 5vw;
}

.investor-bar-label {
    font-family: var(--font-body);
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 500;
    color: #08121a;
    white-space: nowrap;
    margin-right: 30px;
    flex-shrink: 1;
    min-width: 0;
}

.investor-track-wrap {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    flex-shrink: 1;
    min-width: 0;
}

.investor-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: investor-marquee 35s linear infinite;
}

.investor-track > * {
    margin-right: 30px;
}

.investor-track img {
    height: clamp(18px, 6vw, 28px);
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    flex-shrink: 0;
}

.investor-track img.investor-logo-small {
    height: clamp(14px, 4.5vw, 21px); /* Mantém proporção de 25% menor */
}

.investor-sep {
    width: 1px;
    height: 18px;
    background-color: rgba(8, 18, 26, 0.15);
    flex-shrink: 0;
}

@keyframes investor-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}


/* ============================================================
   RESPONSIVIDADE — BREAKPOINTS COMPLETOS
   ============================================================ */

/* --- 1024px --- */
@media (max-width: 1024px) {
    /* ── HERO MOBILE LAYOUT (INICIA EM 1024px conforme pedido) ── */
    .hero {
        min-height: auto;
        padding: 0;
        background: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow: visible;
    }

    .hero-bg-picture {
        position: relative;
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
        order: 2; /* Move image below content */
        z-index: auto;
    }

    .hero-bg-img {
        height: auto;
        object-fit: unset;
        object-position: center center;
    }

    .hero-content {
        order: 1; /* Keep content at top */
        width: 100%;
        max-width: 100%;
        padding: 60px 5% 40px 5%;
        background-color: var(--bg-base);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: static;
        z-index: auto;
    }

    /* Imagem hero — Antigo ::after removido para usar o <picture> do HTML */
    .hero::after {
        display: none !important;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        letter-spacing: -0.5px;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin: 0 auto 2rem;
        opacity: 0.9;
    }

    .hero-btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 14px;
    }

    /* ── FEATURES — SESSÃO 3 (MOBILE) ───────────────────── */
    .features-section { padding: 0 4% 60px 4%; }
    .features-box {
        flex-direction: column-reverse;
        border-radius: 16px;
    }

    /* Painel da imagem — no topo, altura generosa */
    .features-right {
        min-height: 480px;
        border-left: none;
        border-top: none;
        border-bottom: 2px solid rgba(25, 234, 163, 0.2);
    }

    .features-left { padding: 1.75rem 1.5rem; }

    .features-headline {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .features-desc { font-size: 0.95rem; }

    .features-cta {
        align-self: stretch;
        text-align: center;
    }

    .pricing-grid { gap: 1.5rem; }
    .pricing-content { padding: 1.5rem 1rem; }

    /* ── GUARDIÕES — SESSÃO 7 (MOBILE INICIA EM 1024px) ── */
    .guardioes-section {
        padding: 60px 5% 0 5%;
        flex-direction: column;
    }
    .guardioes-container { flex-direction: column; }
    .guardioes-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
        align-items: center;
        text-align: center;
    }
    .guardioes-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .guardioes-headline { text-align: center; }
    .guardioes-desc { text-align: center; }
    .guardioes-badges {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }
    .guardioes-visual { display: none; }
    .guardioes-phone-img {
        position: relative;
        height: auto;
        width: 85%;
        max-width: 340px;
        top: auto;
        bottom: 0;
        transform: none;
        margin: 2rem auto 0;
        display: block;
    }
}

/* --- 992px --- */
    /* Seção 7 (Guardiões) agora inicia em 1024px */

/* --- 900px --- */
@media (max-width: 900px) {
    .contact-wrapper { flex-direction: column; }
    .contact-photo-panel { min-height: 300px; }
}

/* ============================================================
   MOBILE — 768px
   ============================================================ */
@media (max-width: 768px) {

    /* Hero removida deste bloco, pois agora inicia em 1024px */

    /* ── INVESTOR BAR ─────────────────────────────────── */
    .investor-container {
        padding: 0 5vw;
    }
    .investor-track {
        gap: 20px;
    }

    /* ── MÉTRICAS ─────────────────────────────────────── */
    .metrics-section {
        min-height: auto;
        padding: 60px 5% 50px 5%;
        background-size: cover;
    }

    .metrics-headline {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .logo-slot {
        height: 40px;
        width: 110px;
        font-size: 0.7rem;
    }

    .carousel-track { gap: 40px; }
    .carousel-wrapper { margin-bottom: 2.5rem; }
    .metrics-divider { margin-bottom: 3rem; }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .metric-card::after { display: none !important; }

    .metric-card:nth-child(-n+2) {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(25, 234, 163, 0.12);
    }

    .metric-number { font-size: 2rem; }
    .metric-label  { font-size: 0.875rem; }

    /* ── FEATURES — SESSÃO 3 ──────────────────────────────
       Imagem (features-right) sobe para cima do conteúdo
       usando flex-direction: column-reverse no features-box
    ─────────────────────────────────────────────────────── */
    .features-section { padding: 0 4% 60px 4%; }

    .features-box {
        flex-direction: column-reverse;
        border-radius: 16px;
    }

    /* Painel da imagem — no topo, altura generosa */
    .features-right {
        min-height: 480px;
        border-left: none;
        border-top: none;
        border-bottom: 2px solid rgba(25, 234, 163, 0.2);
    }

    .features-left { padding: 1.75rem 1.5rem; }

    .features-headline {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .features-desc { font-size: 0.95rem; }

    .features-cta {
        align-self: stretch;
        text-align: center;
    }

    /* ── PRICING ──────────────────────────────────────── */
    .pricing-section { padding: 60px 5%; }

    .pricing-headline {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 2rem;
    }

    .pricing-content { padding: 1.75rem 1.5rem; }

    .pricing-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    /* ── DEEP DIVE — SESSÃO 5 ─────────────────────────────
       Painel direito (desktop) oculto.
       .deepdive-mac-mobile aparece entre headline e desc.
    ─────────────────────────────────────────────────────── */
    .deepdive-section {
        padding: 60px 5% 70px 5%;
        gap: 4rem;
    }

    .deepdive-top,
    .deepdive-bottom {
        flex-direction: column;
        gap: 2.5rem;
    }

    .deepdive-top-left {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .deepdive-logo { align-self: center; }

    .deepdive-headline {
        font-size: 1.7rem;
        text-align: center;
    }

    .deepdive-desc {
        font-size: 1rem;
        text-align: center;
    }

    /* Painel direito (imagem Mac desktop) — oculto no mobile */
    .deepdive-top-right { display: none; }

    /* Imagem Mac mobile — aparece entre headline e desc */
    .deepdive-mac-mobile {
        display: block;
        width: 100%;
        margin: 1.5rem 0;
    }

    .deepdive-mac-mobile .deepdive-mac-img {
        transform: rotate(0deg);
        width: 100%;
        height: auto;
    }

    .deepdive-bottom-left,
    .deepdive-bottom-right { width: 100%; }

    .deepdive-feature-title { font-size: 1.1rem; }
    .deepdive-feature-desc  { font-size: 0.9rem; }

    .deepdive-cta {
        align-self: stretch;
        text-align: center;
    }

    /* ── ACADEMY — SESSÃO 6 ───────────────────────────────
       Stats: Carrossel Infinito Horizontal
    ─────────────────────────────────────────────────────── */
    .academy-stats {
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin-bottom: 3rem;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        overflow: hidden;
    }

    .academy-stats-track {
        display: flex;
        width: max-content;
        align-items: center;
        animation: academy-marquee 25s linear infinite;
    }

    .academy-stat-item {
        flex: none;
        width: max-content;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        padding: 0 40px;
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
        white-space: nowrap;
    }

    .academy-stat-divider {
        display: block;
        height: 40px;
        width: 2px;
        background: #19eaa3;
        margin: 0;
        align-self: center;
    }

    .academy-mobile-only {
        display: block;
    }

    @keyframes academy-marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* Grid 2 colunas */
    .academy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .academy-cat-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .academy-cat-icon-wrap {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .academy-cat-icon { width: 18px; height: 18px; }
    .academy-cat-label { font-size: 0.82rem; }

    .academy-cta {
        display: block;
        text-align: center;
        width: calc(100% - 10%);
        max-width: 320px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }

    /* ── GUARDIÕES — SESSÃO 7 ─────────────────────────────
       Todos os textos e elementos centralizados
    ─────────────────────────────────────────────────────── */
    /* Seção 7 removida daqui (agora inicia em 1024px) */

    /* ── CONTATO ──────────────────────────────────────── */
    .contact-section { padding: 60px 5%; }

    .contact-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-photo-panel { display: none; }

    .contact-content-panel {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .contact-headline {
        font-size: 1.6rem;
        text-align: center;
    }

    .contact-desc { font-size: 0.95rem; }

    /* ── FAQ ──────────────────────────────────────────── */
    .faq-section { padding: 60px 5% 180px 5%; }

    .faq-headline { font-size: 1.6rem; }

    .faq-question {
        padding: 1.2rem 1rem;
        gap: 0.75rem;
    }

    .faq-question-text { font-size: 0.95rem; }
    .faq-answer { padding: 0 1rem; }
    .faq-answer p { font-size: 0.9rem; }
}


/* ============================================================
   MOBILE PEQUENO — 480px
   ============================================================ */
@media (max-width: 480px) {

    .hero-title { font-size: clamp(1.75rem, 7vw, 2.2rem); }
    .hero-subtitle { font-size: 0.9rem; }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metric-card:nth-child(-n+2) {
        padding-bottom: 0;
        border-bottom: none;
    }

    .metric-number { font-size: 1.8rem; }

    .features-left { padding: 1.5rem 1.25rem; }
    .features-headline { font-size: 1.35rem; }

    .pricing-grid { max-width: 100%; }

    .deepdive-headline { font-size: 1.5rem; }
    .deepdive-desc { font-size: 0.9rem; }

    .academy-headline { font-size: 1.35rem; }
    .academy-grid { gap: 0.6rem; }
    .academy-cat-label { font-size: 0.78rem; }

    .guardioes-headline { font-size: 1.5rem; }
    .guardioes-desc { font-size: 0.95rem; }
    .guardioes-badge { 
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }

    .contact-headline { font-size: 1.4rem; }

    .faq-headline { font-size: 1.4rem; }
    .faq-question-text { font-size: 0.88rem; }


    .investor-container { padding: 0; }
    .investor-track { gap: 25px; }
}
/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background-color: #000;
    padding: 80px 8% 60px 8%;
    color: #fff;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

/* Bloco 1: Info */
.footer-info {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 2.5rem;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.4); /* Esbranquiçado com opacidade reduzida */
    margin-bottom: 2.5rem;
    font-family: var(--font-headings);
    text-wrap: balance;
}

.footer-tagline .highlight {
    color: var(--brand-green);
    opacity: 1;
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
}

/* Bloco 2: Legal Links */
.footer-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-green);
    opacity: 1;
}

/* Bloco 3: Social */
.footer-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
}

.social-title {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icons a {
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--brand-green);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 28px;
    height: 28px;
}

/* RESPONSIVIDADE FOOTER */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .footer-info {
        align-items: center;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-social {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 60px 5%;
    }
    
    .footer-tagline {
        font-size: 1.25rem;
    }
}
