@font-face {
    font-family: 'Bellarina';
    src: url('assets/fontes/Bellarina.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* --- Variáveis de Marca --- */
:root {
    --brand-main: #188883; /* Azul Tiffany */
    --brand-dark: #242424; /* Preto */
    --brand-darker: #343434; /* Cinza Escuro */
    --brand-light: #F1F1F1; /* Cinza Claro */
    --brand-muted: rgba(241, 241, 241, 0.7);
    
    --font-title: 'Sansation', sans-serif;
    --font-body: 'Sansation', sans-serif;
    --font-signature: 'Bellarina', cursive;

    --card-bg: rgba(241, 241, 241, 0.05);
    --card-num-size: clamp(2.5rem, 8vw, 6rem);
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--brand-dark);
    color: var(--brand-light);
    font-family: var(--font-body);
    line-height: 1.2; /* Padrão do Guia IDV */
    overflow-x: hidden;
    width: 100%;
}

/* --- Hero Section --- */
.hero-lp {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: visible; 
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%);
}

.overlay-lp {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(36,36,36,0.4) 0%, rgba(36,36,36,0.9) 100%);
    z-index: 2;
}

.hero-content-lp {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 5vh 5%;
}

.hero-bottom-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: end;
    gap: 2rem;
}
.logo img{
    max-height: 24px;
}
.logo-word.ucut {
    font-family: var(--font-title);
    font-size: clamp(3rem, 11vw, 11rem);
    font-weight: 900;
    letter-spacing: 0; /* Tracking 0 conforme IDV */
    text-transform: uppercase;
}
.logo-text img{
    max-width: 100%;
}
.dot { color: var(--brand-main); }

.logo-word.sig {
    font-family: var(--font-signature); /* Fonte auxiliar Bellarina */
    font-size: clamp(43px, 3.8vw, 4.4rem);
    font-weight: 400;
    letter-spacing: 0; /* Tracking 0 conforme IDV */
    color: var(--brand-muted);
    margin-top: 5px;
}

.text-cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 400px;
    justify-self: end;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.9rem);
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-button {
    font-family: var(--font-title);
    display: inline-block;
    background-color: var(--brand-main);
    color: var(--brand-dark);
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
}

/* --- Seção 2: Estatísticas --- */
.stats-lp {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 15vh 5%;
    margin-top: 25vh;
    z-index: 10;
}

.stats-grid-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5vw;
    align-items: center;
}

.stats-header-group {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.stats-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.5vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--brand-light);
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    color: var(--brand-muted);
    max-width: 630px;
}

.stats-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-card { opacity: 0; transform: translateY(30px); }

.rolling-number {
    font-family: var(--font-title);
    font-size: var(--card-num-size);
    font-weight: 900;
}
.plus {
    font-family: var(--font-title);
    font-size: calc(var(--card-num-size) * 0.7);
    font-weight: 900;
    color: var(--brand-main);
    margin-left: 0.1em;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--brand-muted);
    margin-top: 0.5rem;
}
.video-target-box {
    width: 45vw;
    max-width: 800px;
    aspect-ratio: 16/9;
}
.highlight { color: var(--brand-main); }
.stats-divider{
    border: none;
    border-top: 1px solid rgba(241, 241, 241, 0.1);
}

/* --- SEÇÃO 03: ACORDEÃO PREMIUM --- */
.acc-section {
    position: relative;
    padding: 10vh 0;
    background-color: var(--brand-dark);
}

.acc-container {
    display: flex;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

.acc-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    border-right: 1px solid rgba(241, 241, 241, 0.1);
}

.acc-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.acc-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4);
    transition: filter 0.6s ease;
}

.acc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(36,36,36,0.8) 0%, transparent 60%);
}

.acc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}

.acc-number {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--brand-main);
    display: block;
    margin-bottom: 1rem;
}

.acc-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.acc-description {
    font-size: 1.1rem;
    color: var(--brand-muted);
    max-width: 300px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

/* Hover Desktop */
@media (min-width: 769px) {
    .acc-item:hover {
        flex: 2.5;
    }
    .acc-section{
        padding: 20px;
    }
    .acc-item:hover video {
        filter: grayscale(0%) brightness(0.8);
    }
    
    .acc-item:hover .acc-title, 
    .acc-item:hover .acc-description {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .acc-container {
        flex-direction: column;
        height: auto;
    }
    
    .acc-item {
        height: 60vh;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(241, 241, 241, 0.1);
    }
    
    .acc-item video {
        filter: grayscale(0%) brightness(0.6);
    }
    
    .acc-title, .acc-description {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- SEÇÃO 04: REVERSE REVEAL (UNDERCUT SIGNATURE) --- */

.reverse-reveal-sec {
    position: relative;
    background-color: var(--brand-dark);
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

.reveal-container-v2 {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.left-content-v2 {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    z-index: 5;
    text-align: left;
}

.explain-headline {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 3.8vw, 63px);
    line-height: 1.2;
    color: var(--brand-light);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.explain-body {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.3vw, 20px);
    line-height: 1.2;
    color: var(--brand-muted);
    max-width: 610px;
}

.image-wrapper-v2 {
    position: absolute;
    top: 15vh;
    right: 5%;
    width: 45vw;
    height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(36,36,36,0.6);
    will-change: transform, width, height, right, top;
}

.reveal-img-v2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay-v2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(36,36,36,0.9) 100%);
    background-color: rgba(36,36,36,0.4);
    opacity: 0;
    z-index: 3;
}

.final-signature-v2 {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    text-align: center;
    z-index: 10;
    opacity: 0;
    width: 100%;
}

.sig-top {
    font-family: var(--font-body);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0; /* Tracking 0 conforme IDV */
    color: var(--brand-muted);
    margin-bottom: 0.8rem;
}

.sig-bottom {
    font-family: var(--font-signature);
    font-size: clamp(2.8rem, 10vw, 13rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--brand-main);
    letter-spacing: 0; /* Tracking 0 conforme IDV */
    white-space: nowrap;
}

.sig-bottom .dot {
    color: var(--brand-main);
}

@media (max-width: 768px) {
    .reverse-reveal-sec {
        height: auto;
        padding: 10vh 0;
    }

    .reveal-container-v2 {
        flex-direction: column;
        height: auto;
        padding: 0 5%;
        justify-content: flex-start;
    }

    .left-content-v2 {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        text-align: center;
        margin-bottom: 6vh;
    }

    .image-wrapper-v2 {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 50vh;
        margin-bottom: 6vh;
    }

    .final-signature-v2 {
        position: relative;
        bottom: 0;
        transform: translateX(-50%);
        opacity: 1;
        margin-top: 4vh;
    }

    .sig-bottom {
        font-size: 40px;
    }
}

/* --- SEÇÃO PLANOS --- */
.plans-section {
    padding: 15vh 5%;
    background-color: var(--brand-light);
}

.plans-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8vw;
}

.plans-list {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.plan-item {
    padding: 2rem;
    border-left: 2px solid rgba(36,36,36,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0.4;
}

.plan-item.active {
    opacity: 1;
    border-left: 2px solid var(--brand-main);
    background: linear-gradient(90deg, rgba(24, 136, 131, 0.05) 0%, transparent 100%);
}

.plan-number {
    font-family: var(--font-title);
    color: var(--brand-dark);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-info h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--brand-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.plan-info p {
    color: var(--brand-dark);
    line-height: 1.2;
    font-size: 1rem;
}

.plans-visual {
    width: 50%;
    position: sticky;
    top: 20vh;
}

.plans-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: var(--brand-dark);
    border: 1px solid rgba(241, 241, 241, 0.05);
}

.plans-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.plans-specs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(36,36,36,0.9) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    z-index: 5;
}

#specs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#specs-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brand-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

#specs-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--brand-main);
    border-radius: 50%;
    display: inline-block;
}

/* --- SEÇÃO BENEFÍCIOS --- */
.benefits-sec {
    padding: 10vh 5%;
    background-color: var(--brand-light);
    text-align: center;
}

.benefits-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--brand-dark);
    margin-bottom: 8vh;
    letter-spacing: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(24, 136, 131, 0.08); /* Tom com base no Azul Tiffany */
    padding: 30px;
    border-radius: 12px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(24, 136, 131, 0.2)); 
}

.benefit-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--brand-dark);
    line-height: 1.2;
    max-width: 200px;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .plans-container { flex-direction: column-reverse; }
    .plans-list, .plans-visual { width: 100%; }
    .plans-visual { position: relative; top: 0; margin-bottom: 3rem; }
}

/* --- SEÇÃO 05: POR QUE ESCOLHER --- */
.editorial-why {
    background-color: var(--brand-light);
    padding: 12vh 5%;
    color: var(--brand-dark);
    width: 100%;
}

.editorial-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.editorial-intro {
    margin-bottom: 8vh;
}

.tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0; /* Conforme IDV */
    color: var(--brand-main);
    margin-bottom: 1.5rem;
}

.editorial-intro h2 {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.editorial-intro h2 span {
    color: var(--brand-dark);
    display: block;
    -webkit-text-stroke: 1px var(--brand-dark);
    color: transparent;
}

.editorial-intro p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--brand-darker);
    margin-top: 1rem;
    letter-spacing: 0;
}

.editorial-list {
    border-top: 1px solid #ddd;
    margin-top: 5vh;
}

.ed-item {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #ddd;
    transition: border-bottom-color 0.4s ease;
}

.ed-number {
    font-family: var(--font-title);
    font-size: 1rem;
    color: #aaa;
    width: 80px;
}

.ed-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.ed-content h3 {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 3.2vw, 2.8rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--brand-dark);
    max-width: 80%;
    transition: transform 0.4s ease, color 0.4s ease;
}

.ed-icon {
    width: 65px;
    height: 65px;
    opacity: 0.4;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-icon img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
}

.ed-item:hover {
    border-bottom-color: var(--brand-main);
}

.ed-item:hover h3 {
    color: var(--brand-darker);
    transform: translateX(10px);
}

.ed-item:hover .ed-icon {
    opacity: 1;
    transform: scale(1.1);
}

.ed-item:hover .ed-icon img {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .editorial-intro h2 { font-size: 3rem; }
    
    .ed-item { 
        padding: 2.5rem 0; 
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ed-number { margin-bottom: 1rem; }
    
    .ed-content { width: 100%; }
    
    .ed-content h3 { font-size: 1.6rem; }
    
    .ed-icon { width: 50px; height: 50px; opacity: 1; }
    .ed-icon img { filter: grayscale(0); }
}

/* --- SEÇÃO FINAL: CTA --- */
.final-cta-sec {
    position: relative;
    padding: 20vh 5%;
    background-color: var(--brand-dark);
    color: var(--brand-light);
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
}

.cta-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(36,36,36,0.9) 100%);
    background-color: rgba(36,36,36,0.5);
}

.cta-hex-grid {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hex-grid-cyan.png');
    opacity: 0;
    z-index: 2;
    mix-blend-mode: screen;
}

.cta-header {
    margin-bottom: 8vh;
}

.cta-headline {
    font-family: var(--font-title);
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--brand-light);
}

.cta-headline span {
    color: var(--brand-light);
    -webkit-text-stroke: 1px var(--brand-light);
    color: transparent;
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.btn-boom {
    font-size: 1.2rem;
    padding: 1.5rem 3.5rem;
    background-color: var(--brand-main);
    color: var(--brand-dark);
    border-radius: 50px;
    box-shadow: 0 0 0 0 rgba(24, 136, 131, 0.7);
    transition: transform 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
}

.btn-boom:hover {
    transform: scale(1.05) translateY(-5px);
}

.cta-sub {
    font-size: 0.9rem;
    color: var(--brand-muted);
    letter-spacing: 0;
}

/* --- HEADER GLASSMORPHISM --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    background: rgba(36, 36, 36, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(241, 241, 241, 0.05);
    transition: padding 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--brand-light);
    text-decoration: none;
}

.logo span { color: var(--brand-main); }

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--brand-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 0.3s;
}

.nav-menu a:hover { color: var(--brand-light); }

.btn-header {
    background-color: var(--brand-main);
    color: var(--brand-dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- WHATSAPP FLUTUANTE --- */
.wpp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 999;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(36,36,36,0.3);
}

.wpp-float img { width: 35px; }

.wpp-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid #25d366;
    border-radius: 50%;
    opacity: 0;
}
a{
    text-decoration: none;
}

/* --- FOOTER --- */
.main-footer {
    background: var(--brand-dark);
    padding: 10vh 5% 5vh;
    border-top: 1px solid rgba(241,241,241,0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p { color: var(--brand-muted); margin-top: 1rem; }
.footer-links h4, .footer-social h4 { color: var(--brand-light); margin-bottom: 1.5rem; text-transform: uppercase; font-size: 0.8rem; }
.footer-links ul { list-style: none; }
.footer-links a { color: var(--brand-muted); line-height: 2.2; }

.footer-bottom {
    margin-top: 8vh;
    padding-top: 3vh;
    border-top: 1px solid rgba(241,241,241,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .btn-header { display: none; }
}

/* --- ESTILO DO BOTÃO HAMBÚRGUER --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--brand-light);
    position: absolute;
    left: 5px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), top 0.4s ease, opacity 0.3s ease;
}

.menu-toggle::before { top: 10px; }
.menu-toggle span { top: 19px; }
.menu-toggle::after { top: 28px; }

.menu-toggle.active::before {
    top: 19px;
    transform: rotate(45deg);
    background-color: var(--brand-main);
}

.menu-toggle.active span {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active::after {
    top: 19px;
    transform: rotate(-45deg);
    background-color: var(--brand-main);
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .btn-header { display: none; } 

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(36, 36, 36, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        z-index: 1000;
        transition: opacity 0.4s ease;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .nav-menu a {
        font-family: var(--font-title);
        font-size: 2.5rem;
        letter-spacing: 0;
    }
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .plans-section {
        padding: 10vh 5%;
    }

    .plans-container {
        flex-direction: column; 
        gap: 1.5rem;
    }

    .plans-list, .plans-visual {
        width: 100%;
    }

    .plans-visual {
        position: relative;
        top: 0;
        margin-bottom: 0;
    }

    .plans-list {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .plans-list::-webkit-scrollbar {
        display: none;
    }

    .plan-item {
        flex: 0 0 auto;
        width: max-content;
        padding: 0.8rem 1.5rem;
        border-left: none;
        border-bottom: 2px solid rgba(241,241,241,0.1);
        text-align: center;
        border-radius: 4px 4px 0 0;
    }

    .plan-item.active {
        border-left: none;
        border-bottom: 2px solid var(--brand-main);
        background: linear-gradient(to top, rgba(24, 136, 131, 0.1) 0%, transparent 100%);
    }

    .plan-number {
        display: none;
    }

    .plan-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .plan-info p {
        display: none;
    }

    .plans-img-wrapper {
        aspect-ratio: 4/3;
    }

    .plans-specs-overlay {
        padding: 1rem;
    }

    #specs-list {
        gap: 0.8rem;
    }

    #specs-list li {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .logo-word.sig { letter-spacing: 0; }
}

@media (max-width: 768px) {
    .hero-bottom-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .logo-word.sig { letter-spacing: 0; }
    
    .text-cta-container {
        align-items: flex-start;
        text-align: left;
        justify-self: start;
    }

    .stats-lp {
        margin-top: 0;
        background-color: transparent;
        padding-bottom: 0;
        min-height: 85vh;
    }
    
    .stats-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .stats-video-col {
        display: none;
    }
    .acc-section{
            padding: 0;
    }
    .editorial-why{
        padding-top: 5vh;
    }
    .stats-header-group { text-align: center; }
    .stats-subtitle { margin: 0 auto; }
    .card-num-wrapper {display: flex;justify-content: center;align-items: center;gap: 9px;}
    .stats-label { text-align: center; }
}