/* ==================================================
   FONTES
================================================== */
@font-face {
    font-family: 'Nasalization';
    src: url('../fonts/Nasalization.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==================================================
   RESET & BASE GLOBAL
================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Nasalization', sans-serif;
    color: #e5e7eb;

    background:
        linear-gradient(
            rgba(30, 41, 59, 0.88),
            rgba(30, 41, 59, 0.88)
        ),
        url("../images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.mobile{
    display: none;
}



/* ==================================================
   HEADER / NAVBAR
================================================== */
header {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 100px;

    background: rgba(30,41,59,0.85);
    backdrop-filter: blur(10px);

    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border-bottom: 1px solid #353a40;

    animation: fadeUp 0.8s ease forwards;
}

header.scrolled {
    background: rgba(15,23,42,0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

header a {
    color: #e5e7eb;
}

#apresentation {
    display: flex;
    align-items: center;
}

.brand-title {
    display: flex;
    flex-direction: column;
    gap: 2px; /* controla o espaçamento geral */
}

.brand-title h1 {
    font-size: 1.4rem;
    color: #f8fafc;
    margin: 0;
}

/* Linha abaixo do título */
.brand-divider {
    width: 95%;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, transparent);
}

/* Slogan */
.brand-slogan {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7 rem;
    color: #aeffdb;
    letter-spacing: 0.5px;
}


.logo {
    width: 80px;
    height: 80px;
}

/* NAV LINKS */
nav {
    display: flex;
    gap: 1rem;
}


nav a {
    position: relative;
    padding: 8px 4px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #38bdf8;
}

nav a:hover::after {
    width: 100%;
}

/* ==================================================
   SECTIONS
================================================== */
section {
    width: 100%;
    scroll-margin-top: 80px;
}

/* ==================================================
   HERO
================================================== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: calc(100vh - 60px);
    margin-top: 70px;
    padding: 30px 50px;

    width: 100%;

    overflow: hidden;
}

.hero-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    height: 100%;
    width: 100%;

}

/* ==================================================
   CARD BASE
================================================== */
.card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);

    border-radius: 16px;
    padding: 30px;

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* ==================================================
   HERO TEXT
================================================== */
.hero-text {
    width: 50%;
    height: auto;
}

.titulo{
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #f8fafc;
    letter-spacing: 0.5px;
}

.titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 16px;
    background: linear-gradient(90deg, #38bdf8, transparent);
}

.enfase {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #f8fafc;
    letter-spacing: 0.5px;
}
h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: normal;
    margin-bottom: 35px;
    color: #cbd5e1;

    animation: fadeUp 1s ease forwards;
}

/* ==================================================
   CTA
================================================== */
.cta,
.cta-fixo {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0f172a;

    border: none;
    border-radius: 10px;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(56,189,248,0.4);
    transition: all 0.3s ease;

    animation: pulse 5s infinite;
}

.cta {
    padding: 18px;
    width: 100%;
    display: inline-block;
    text-align: center;


}



.cta-fixo {
    padding: 9px 18px;
}

.cta:hover,
.cta-fixo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56,189,248,0.6);
}

/* CTA POINTS HERO */
.cta-points-hero {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 10px;

    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;

    font-size: 0.85rem;
    color: #94a3b8;
}

/* ==================================================
   HERO VIDEO
================================================== */
.hero-video  {

    margin: 0px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;

    align-items: center;
    justify-content: center;

}

.hero-video video {

    max-height: 300px;
    width: 100%;

    display: block;
    border-radius: 10px;
}




.para-quem{

    display: flex;
    flex-direction: column;
    align-items: center;



}




.para-quem h3, .para-quem h4{

        display: flex;
        justify-content: space-evenly;
        font-size: 0.75rem;
        flex-wrap: wrap;

        color: #94a3b8;

}

.explicacao{
    margin-top: 24px;
    color: #94a3b8;
}



.gif{

    display: flex;
    gap: 20px ;

    
}

.icones{

    display: flex;
    flex-direction: column;
    align-items: center;
    

}

.icones img{

    margin-top: 10px;
    width: 64px;
    height: 64px;

}



.hero-circles {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;

}

.hero-circles span{
    font-weight: bold;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 120px;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;

    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);

    margin-bottom: 12px;
    transition: transform 0.3s ease;
}



.circle img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.circle-item span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.circle-item:hover .circle {
    transform: translateY(-6px);
}




/* Container principal */
.comparison {
    position: relative;
    max-width: 1100px;
    height: 720px;
    margin: 140px auto;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
}

/* Estados do comparativo */
.comparison-state {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 60px;
    transition: opacity 0.45s ease, transform 0.45s ease;
    border-radius: 24px;
}

/* Problema - estado inicial */
.problema {
    background: rgba(239, 68, 68, 0.12);
    opacity: 1;
    pointer-events: auto;

}

/* Solução - estado inicial escondido */
.solucao {
    background: rgba(34, 197, 94, 0.12);
    opacity: 0;
    pointer-events: none;

}

/* Hint que dispara hover */
.hint {
    position: absolute;
    bottom: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    user-select: none;
    font-family: 'Nasalization', sans-serif;
    background-color: transparent;
    border: none;
    color: #e5e7eb;

}

.hint p {

opacity: 0.6;  
}


/* Posição dos hints */
.hint-solution {
    right: 30px;
}

.hint-problem {
    left: 30px;
    opacity: 0;
   
}

.secundario{
    opacity: 0.7;

    font-size: 0.8rem;
}


/* H2 com linha decorativa */
.comparison h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin-top: 16px;
    background: linear-gradient(90deg, #38bdf8, transparent);
}

/* Textos do comparativo */
.comparison-text h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.comparison-text h3 {
    margin-bottom: 20px;
}

.comparison-text ul {
    list-style: none;
    padding-left: 20px;
}

.comparison-text li {
    margin-bottom: 14px;
}

/* Imagens do comparativo */
.comparison-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


.comparison-images img {
    width: 70%;
    border-radius: 14px;
}


.images-comparison-solution:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(106, 191, 137, 0.35);

}

.images-comparison-problem:hover {

    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(210, 140, 140, 0.35);

}


.social-proof {
    text-align: center;
    margin: 100px auto;
    padding: 0 20px;
}

.social-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 30px;
}

.social-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-logos img {
    height: 84px;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.social-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.testimonials {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(15,23,42,0.7);
    border-radius: 16px;
    padding: 30px;

    font-family: Arial, Helvetica, sans-serif;
    color: #cbd5e1;

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}



.testimonial-card span {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.testimonial-subtitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* ===============================
   TESTIMONIAL CAROUSEL
================================ */

.testimonial-carousel {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding: 20px 0;
}

/* remove scrollbar visual */
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: center;

    background: rgba(15,23,42,0.7);
    border-radius: 16px;
    padding: 30px;

    font-family: Arial, Helvetica, sans-serif;
    color: #cbd5e1;

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ===============================
   DOTS
================================ */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-dots span.active {
    background: #38bdf8;
    transform: scale(1.3);
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #475569;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots button.active {
    background: #38bdf8;
    opacity: 1;
    transform: scale(1.3);
}


.logo_testimonials{

    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

/* ================================
   COMO FUNCIONA
================================ */
.how-it-works {
    padding: 100px 8%;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.how-it-works h3{
 

        font-size: 0.75rem;
   
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}



.step img{
    width: 64px;
    height: 64px;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.step p {
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.6;
}


.duvidas-real-circles {
    display: flex;
    justify-content: space-around;
    width: 100%;
}


.duvidas-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


.duvidas-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    box-sizing: border-box;

    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
    cursor: pointer;
}



.duvidas-circle::after {
    opacity: var(--arrow, 0);
    content: "";
    position: absolute;
    bottom: -30px;
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
    transform: rotate(45deg);
}

.duvidas-circle:hover{
    transform: translateY(-6px);

}


.duvidas-circle h3 {
    font-size: 1.05rem;
    font-weight: bold;
    color: #22c55e;
    line-height: 1.3;
    max-width: 180px;
    margin: 0;
    pointer-events: none;
}





/* Hint que dispara hover */


.hint-duvidas {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.7;
    pointer-events: none;

}

.faq-item-duvidas {
    margin-top: 60px;
    max-width: 320px;

    margin-right: 5px;
    margin-left: 5px;

    text-align: center;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: opacity 0.35s ease, transform 0.35s ease;

    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    pointer-events: none;
}


/* ================================
   FAQ / OBJEÇÕES
================================ */
.faq {
    padding: 100px 10%;
    width: 100%;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}



.faq-item-duvidas p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}






/* ================================
   CTA FINAL
================================ */
.cta-final {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 120px 20px;
    text-align: center;
}


.cta-final h2 {
    font-size: 2.4rem;
    color: #f8fafc;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.15rem;
    color: #cbd5f5;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-points {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-points li {
    font-size: 1rem;
    color: #e2e8f0;
}

.cta-big {
    background: #22c55e;
    color: #022c22;
    font-size: 1.2rem;
    padding: 16px 42px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;

    transition: all 0.3s ease;
}

.cta-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34,197,94,0.35);
}

.cta-note {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}






/* ================================
   FOOTER
================================ */
.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}



.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
}

.footer-brand-header h3 { 
    font-size: 1.4rem; 
    color: #f8fafc; 
    margin: 0;    
}


.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links h4 {
    margin-bottom: 15px;
    color: #e2e8f0;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ================================
   REVEAL SCROLL
================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   ANIMAÇÕES
================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56,189,248,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(56,189,248,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(56,189,248,0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}


/* ==================================================
   MOBILE – MAX 768px
   Conversão + Legibilidade
================================================== */
@media (max-width: 768px) {

    *{
        margin: 0px;
        padding: 0px;
    }

    .mobile{
        display: block !important;
    }

    .pc{
        display: none !important;
    }

    /* ===============================
       HEADER
    =============================== */
    header {
        display: flex;
        padding-left: 10px;
        padding-right: 10px;

        height: 56px;
        align-items: center;
        position: relative;

        z-index: 1001;
        
    }

    #apresentation {
    display: flex;
    align-items: center;
    }

    .brand-title {
        display: flex;
        flex-direction: column;
        gap: 2px; /* controla o espaçamento geral */
    }

    .brand-title h1 {
        font-size: 1.2rem;
        color: #f8fafc;
        margin: 0;
        font-weight: bold;
    }

    /* Linha abaixo do título */
    .brand-divider {
        height: 2px;
        background: linear-gradient(90deg, #38bdf8, transparent);
    }

    /* Slogan */
    .brand-slogan {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.6rem;
        color: #aeffdb;
        letter-spacing: 0.5px;
    }



    



    nav {
    position: absolute;
    top: 56px; /* altura do header */
    right: 0;

    

    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 30px 0;

    transform: translateY(-120%);
    transition: transform 0.35s ease;
        }

    /* menu aberto */
    nav.active {
        transform: translateY(0);
    }

    nav a {
        font-size: 1.1rem;
    }


    nav a {
        font-size: 0.85rem;
    }


.nav-mobile {
    position: fixed;
    top: 56px;
    right: -100%; /* 🔥 remove da viewport */
    
    width: 75%;
    max-width: 300px;
    height: calc(100vh - 56px);

    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);

    transition: right 0.35s ease;

    z-index: 1000;
}

/* menu aberto */
.nav-mobile.active {
    right: 0;
}


.nav-mobile a {
    font-size: 1rem;
    color: #e5e7eb;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-mobile a:hover {
    color: #38bdf8;
}


    .menu-btn {
    width: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: none;
    border: none;
    cursor: pointer;
    margin-right:   10px;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #e5e7eb;
    border-radius: 3px;
    margin: 5px;


    transition: all 0.35s ease;
}


.menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

#menu-overlay {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(6px);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;

    z-index: 999;
}


#menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}





    .logo {
        width: 60px;
        height: 60px;
    }

    h1{
        font-size:1.3rem;
        
    }

    /* ===============================
       HERO
    =============================== */
    .hero {

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 10px;
        margin-top: 10px;
        width: 100%;

    }


    .hero-main {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 100%;
    width: 100%;

    }

    .hero-text {
        width: 100%;


    }



    .hero-text {
        padding: 20px 20px;

    }

    .hero-text h2 {
        font-size: 1.3rem;
        line-height: 1.25;
    }


    h3 {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
        max-width: 100%;
    }

    /* CTA principal */
    .cta {

        width:  100%;
        text-align: center;
        padding: 10px 12px;

        margin-bottom: 0px;

    }


    /* Pontos abaixo do CTA */
    .cta-points-hero {
        width: 100%;
        display: flex;
        margin-top: 24px;
        justify-content: space-evenly;
        font-size: 0.55rem;
        flex-wrap: wrap;
        gap: 5px;

        list-style: none;
        padding: 0;
        color: #94a3b8;
    }

    /* ===============================
       HERO VIDEO
    =============================== */
        .hero-video  {

            margin: 10px auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.45);
            display: flex;
            flex-direction:row;
            gap: 5px;
            padding: 20px;
            height: 180px;
            width: 100%;

        }

        .hero-video video {
            
            width: 100%;
   

            display: block;

            height: 100%;
        }



    /* ===============================
       HERO CIRCLES
    =============================== */
    .hero-circles {
        flex-wrap: wrap;
        gap:24px;

        margin-top: 12px;

    }



    .circle {
        width: 86px;
        height: 86px;

    }

    .circle img {
        width: 42px;
        height: 42px;
    }

    .circle-item span {
        font-size: 0.75rem;
    }

    /* ===============================
       COMPARAÇÃO
    =============================== */
    .comparison {
        height: auto;
        margin: 0px;
        padding: 16px;
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 20px   ;
    }

    .comparison-state {
        position: relative;
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }

    .comparison-text{
        display: flex;
        flex-direction: column;
    }

    .comparison-text h2 {
        font-size: 1.6rem;
    }

    .comparison-text h3 {
        font-size: 1rem;
    }

    .comparison-images img {
        width: 100%;
        display: none;
    }

    .comparison-text li{
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
    }

        /* Problema - estado inicial */
    .problema {
        background: rgba(239, 68, 68, 0.12);
        opacity: 1;
        pointer-events: auto;
        margin: 0;
        padding: 0px 20px ;

    }

    /* Solução - estado inicial escondido */
    .solucao {
        background: rgba(34, 197, 94, 0.12);
        opacity: 1;
        pointer-events: none;

    }

    .cta-mobile {
        font-size: 0.8rem;
        margin-top: 30px;
        text-align: center;

        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: #022c22;

        padding: 14px 20px;
        border-radius: 30px;
        font-weight: bold;
    }


    .destino{
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .gif{
        display: flex;
        justify-content: center;
    }


    /* ===============================
       SOCIAL PROOF
    =============================== */
    .social-logos {
        gap: 30px;
    }

    .social-logos img {
        height: 64px;
    }

    /* ===============================
       TESTEMUNHOS
    =============================== */
    .testimonials {
        margin: 80px auto;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    

    /* ===============================
       COMO FUNCIONA
    =============================== */
    .how-it-works {
        padding: 50px 20px;
    }

    .how-it-works h2{
        font-size: 1.7rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step {
        padding: 30px 24px;
    }

    /* ===============================
       DUVIDAS / CIRCLES
    =============================== */
    .duvidas-real-circles {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }


    .duvidas-circle h3{
        
        padding: 5px;
    }



    /* ================================
   FAQ / OBJEÇÕES

        ================================ */
        .faq {
            padding: 0px 0%;
            width: 100%;
            margin: 0;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.2rem;

        }


        .faq-item-duvidas p {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.85;
        }


        .hint-duvidas {

            margin-top: 30px;
            font-size: 0.8rem;
            padding: 5px;
            opacity: 0.7;
            pointer-events: none;

        }


    /* ===============================
       CTA FINAL
    =============================== */
    .cta-final {
        padding: 40px 20px;
    }

    .cta-final h2 {
        font-size: 1.9rem;
    }

    .cta-final p {
        font-size: 1rem;
    }

    .cta-big {


    width: 100%;
    padding: 10px 20px;
    background: #22c55e;
    color: #022c22;
    font-size: 1rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;

    transition: all 0.3s ease;
    }

    /* ===============================
       FOOTER
    =============================== */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}
