/* --- VARIÁVEIS OFICIAIS C'ÉVOLU --- */
:root {
    --cor-texto: #5f4c63;
    --cor-roxo-claro: #faf0fc;
    --cor-roxo: #9b3eb4;
    --cor-roxo-escuro: #681c7e; 
    --cor-roxo-mais-escuro: #4b0f5c;
    --cor-verde: #00c767;
    --cor-verde-escuro: #018948;
    --cor-laranja: #ff6b00; 
    --cor-laranja-escuro: #e65c00;
    --container-width: 1200px;
}

/* --- RESET E ESTILOS GLOBAIS (MONTSERRAT FORÇADA EM TUDO) --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body, input, button, select, textarea {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    color: var(--cor-texto);
    background-color: var(--cor-roxo-claro);
    line-height: 1.6;
    position: relative;
    font-weight: 500;
}

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; width: 100%; }

/* --- UTILITÁRIOS DE TEXTO E MARGEM --- */
.mt-20 { margin-top: 20px; display: inline-block; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.micro-copy-white { font-size: 0.85rem; color: #ffffff; opacity: 0.8; margin-bottom: 15px; font-weight: 500;}

/* --- BLOBS DE LUZ NO FUNDO --- */
.bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.4; pointer-events: none;}
.blob-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: var(--cor-roxo); }
.blob-2 { top: 40%; left: -10%; width: 400px; height: 400px; background: rgba(0, 199, 103, 0.3); }

/* --- NAVBAR LIMPÍSSIMA --- */
.navbar { padding: 40px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; }
.navbar.scrolled {
    background: rgba(250, 240, 252, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(155, 62, 180, 0.1); padding: 15px 0;
}
.navbar .container { display: flex; justify-content: center; align-items: center; } 

.logo-img { height: 120px; width: auto; object-fit: contain; transition: height 0.3s ease; }
.navbar.scrolled .logo-img { height: 75px; }

/* --- BOTÕES PREMIUM E MICRO-COPY --- */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 14px 30px; border-radius: 8px; font-weight: 700;
    font-size: 1rem; text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center;
}
.btn-large { padding: 18px 45px; font-size: 1.1rem; }
.btn-success { background-color: var(--cor-verde); color: #ffffff; }
.btn-success:hover { background-color: var(--cor-verde-escuro); transform: translateY(-3px); }
.glow-btn { box-shadow: 0 10px 30px rgba(0, 199, 103, 0.3); }

.btn-orange { background-color: var(--cor-laranja); color: #ffffff; }
.btn-orange:hover { background-color: var(--cor-laranja-escuro); transform: translateY(-3px); }
.glow-btn-orange { box-shadow: 0 10px 30px rgba(255, 107, 0, 0.35); }

.hero-cta-group { margin-top: 15px; margin-bottom: 30px; }
.hero-cta-group.centered-cta {
    display: flex; flex-direction: column; align-items: center; text-align: center; margin: 30px auto;
}
.micro-copy-hero {
    font-size: 0.75rem; color: #726275; font-weight: 500; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 4px; opacity: 0.8; 
}
.micro-copy-hero svg { width: 12px; height: 12px; fill: #726275; }

/* --- HERO SECTION --- */
.hero { padding: 160px 0 80px 0; position: relative; width: 100%;}

.video-top-section { text-align: center; max-width: 900px; margin: 0 auto; }
.video-main-title { 
    font-size: clamp(2.2rem, 4vw, 3.5rem); 
    font-weight: 800; color: var(--cor-roxo-mais-escuro); 
    margin-bottom: 30px; line-height: 1.2; letter-spacing: -1.5px; 
}
.hero-image.video-centered { margin: 0 auto; width: 100%; }

.hero-text-section { text-align: center; max-width: 850px; margin: 50px auto 0; }
.new-hero-title { 
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); 
    font-weight: 800; color: #2d2330; margin: 20px 0; line-height: 1.3; letter-spacing: -0.5px; 
}
.hero-subtitle { font-size: 1.15rem; font-weight: 500; color: #726275; margin-bottom: 30px; line-height: 1.6; }
.badge-premium {
    background: rgba(155, 62, 180, 0.08); color: var(--cor-roxo-escuro);
    padding: 8px 18px; border-radius: 30px; font-size: 0.9rem; font-weight: 700;
    display: inline-block; margin-bottom: 10px; border: 1px solid rgba(155, 62, 180, 0.15);
}
.text-gradient {
    background: linear-gradient(135deg, var(--cor-roxo-mais-escuro), var(--cor-roxo));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* CONTAINER HORIZONTAL HERO */
.hero-features-container {
    background: #ffffff; border: 1px solid rgba(155, 62, 180, 0.15);
    padding: 35px 40px; border-radius: 16px;
    box-shadow: 0 10px 30px rgba(75, 15, 92, 0.04);
    margin-top: 40px; width: 100%; 
}
.benefit-list.horizontal-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px 35px; margin-bottom: 0;
}
.benefit-list.horizontal-list li { margin-bottom: 0; }

.benefit-list { list-style: none; margin-bottom: 40px; }
.benefit-list li {
    font-size: 1.05rem; font-weight: 600; color: #5f4c63; 
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.benefit-list li::before {
    content: ''; display: inline-block; width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; 
    background-color: var(--cor-verde);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /></svg>') no-repeat center;
}

/* MOCKUP FRAME GERAL */
.mockup-frame {
    width: 100%; height: auto; background: #ffffff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 70px rgba(75, 15, 92, 0.18); border: 1px solid rgba(155, 62, 180, 0.1);
}
.mockup-header { background: #f5f5f5; padding: 12px 18px; display: flex; gap: 8px; border-bottom: 1px solid #e0e0e0; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }

.image-placeholder {
    position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; overflow: hidden;
}
.image-placeholder iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- FEATURES --- */
.features { padding: 100px 0 60px 0; position: relative; width: 100%; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 70px auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--cor-roxo-mais-escuro); font-weight: 800; margin-bottom: 20px; letter-spacing: -1px;}
.section-header p { font-size: 1.1rem; color: #726275; }

/* CONTAINER PRINCIPAL */
.feature-highlight {
    display: flex; 
    flex-direction: column;
    align-items: center;
    max-width: 950px;
    margin: 0 auto 100px auto;
}

/* O VÍDEO AGORA FICA DENTRO DA CAIXA BRANCA */
.highlight-visual {
    width: 100%;
    margin: 24px 0 28px 0;
    z-index: 2;
}

.mini-mockup {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 16px; 
    border: 1px solid rgba(155, 62, 180, 0.2);
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 25px 50px rgba(155, 62, 180, 0.25); 
}

.mini-mockup iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* O TEXTO E O VÍDEO FICAM DENTRO DA CAIXA BRANCA */
.highlight-text {
    background: #ffffff; 
    padding: 50px; 
    border-radius: 20px; 
    border: 1px solid rgba(155, 62, 180, 0.1);
    box-shadow: 0 15px 40px rgba(75, 15, 92, 0.05);
    width: 100%;
}

.highlight-text h3 { font-size: 2.2rem; color: var(--cor-roxo-mais-escuro); margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px;} 
.highlight-text p { font-size: 1.1rem; color: #726275; margin-bottom: 24px; line-height: 1.6;} 

.feature-bullets { list-style: none; padding: 0; }
.feature-bullets li { 
    font-size: 1rem; font-weight: 600; color: var(--cor-texto); margin-bottom: 12px; 
    display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
}
.feature-bullets li strong { font-weight: 700; }
.feature-bullets li::before {
    content: '✔'; display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; background-color: rgba(0, 199, 103, 0.15); color: var(--cor-verde-escuro);
    border-radius: 50%; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px;
}

/* Grid dos outros Pilares */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; width: 100%; }
.feature-card {
    background: #ffffff; padding: 40px 30px; border-radius: 16px; border: 1px solid rgba(155, 62, 180, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.4s ease; text-align: left; width: 100%;
    display: flex; flex-direction: column; height: 100%;
}
.feature-card p:last-child { margin-bottom: 0; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(155, 62, 180, 0.1); border-color: rgba(155, 62, 180, 0.2); }
.icon-box {
    width: 60px; height: 60px; background: rgba(0, 199, 103, 0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin: 0 0 24px 0;
}
.icon-box svg { width: 30px; height: 30px; stroke: var(--cor-roxo-escuro); }
.feature-card h3 { color: var(--cor-roxo-escuro); font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; }
.feature-card p { color: #726275; font-size: 1rem; line-height: 1.6; }

.badge-safe {
    display: inline-flex; align-items: center; gap: 6px; background: rgba(0, 199, 103, 0.1);
    color: var(--cor-verde-escuro); padding: 6px 12px; border-radius: 20px; font-size: 0.85rem;
    font-weight: 700; margin-bottom: 15px; border: 1px solid rgba(0, 199, 103, 0.2);
}

/* --- DEPOIMENTOS --- */
.testimonials { padding: 40px 0; position: relative; width: 100%; }
.testimonial-subtitle { font-size: 1rem; font-style: italic; font-weight: 600; color: var(--cor-roxo-escuro); }

.testimonials-grid-standard {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; align-items: stretch; 
}

.testimonial-short-card {
    background-color: #ffffff; padding: 16px; border-radius: 16px; border: 1px solid rgba(155, 62, 180, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); width: 100%; display: flex; flex-direction: column;
    transition: all 0.3s ease; height: 100%; 
}
.testimonial-short-card:hover { transform: translateY(-5px); border-color: rgba(155, 62, 180, 0.2); }

.short-frame {
    position: relative; width: 100%; padding-bottom: 177.78%; height: 0; border-radius: 12px;
    background-color: #000; overflow: hidden; flex-grow: 1; 
}
.short-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.testimonial-author-area {
    display: flex; align-items: center; margin-top: 20px; padding: 0 10px; min-height: 45px; 
}
.author-logo-circle {
    width: 45px; height: 45px; border-radius: 50%; background-color: #f0e6f2; 
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    margin-right: 12px; flex-shrink: 0; border: 1px solid rgba(155, 62, 180, 0.2);
}
.author-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-area p { font-weight: 600; font-size: 0.95rem; color: var(--cor-texto); margin: 0; }
.hidden-author { visibility: hidden; }

/* --- NOVO RODAPÉ PREMIUM CTA --- */
.final-cta {
    padding: 100px 0; position: relative; overflow: hidden; margin-top: 50px; width: 100%;
    background: linear-gradient(135deg, var(--cor-roxo-mais-escuro) 0%, var(--cor-roxo-escuro) 100%); color: #ffffff;
}
.blob-cta { top: 50%; left: 50%; width: 600px; height: 600px; background: rgba(155, 62, 180, 0.4); transform: translate(-50%, -50%); filter: blur(120px); opacity: 0.6; pointer-events: none;}
.cta-content { text-align: center; max-width: 750px; margin: 0 auto; z-index: 10; position: relative;} 
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; font-weight: 800; letter-spacing: -1px; text-shadow: 0 4px 10px rgba(0,0,0,0.2);}
.final-cta p { font-size: 1.15rem; margin-bottom: 20px; opacity: 0.95; font-weight: 400; max-width: 90%; margin-inline: auto;}

/* --- FOOTER --- */
.footer { padding: 40px 0; text-align: center; color: #8c7b8f; font-weight: 600; font-size: 0.9rem; border-top: 1px solid rgba(155, 62, 180, 0.1); background-color: #ffffff; width: 100%;}

/* --- ANIMAÇÕES --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; } .delay-2 { transition-delay: 0.3s; } .delay-3 { transition-delay: 0.45s; }

/* ==============================================================
   REGRAS OBRIGATÓRIAS DE RESPONSIVIDADE
   ============================================================== */

@media (max-width: 992px) {
    .hero { padding: 140px 0 60px 0; }
    
    .hero-features-container { padding: 25px; margin-top: 40px; }
    .btn-success { width: 100%; max-width: 500px; margin: 0 auto; }
    
    .feature-highlight { padding: 0; }
    .highlight-text { padding: 30px; text-align: center; }
    .feature-bullets { display: inline-block; text-align: left; margin: 0 auto;}
}

@media (max-width: 600px) {
    .navbar { padding: 25px 0; }
    .hero { padding: 120px 0 40px 0; }
    .logo-img { height: 80px; } 
    
    .video-main-title { font-size: 1.8rem; margin-bottom: 20px; }
    .new-hero-title { font-size: 1.6rem; margin: 15px 0; }
    
    .benefit-list.horizontal-list { grid-template-columns: 1fr; }
    
    .mockup-frame, .mini-mockup { border-radius: 12px; }
    
    .features { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .highlight-text { padding: 25px 20px; text-align: left; }
    
    .feature-card { padding: 35px 25px; text-align: center; }
    .icon-box { margin: 0 auto 20px auto; }

    .testimonials-grid-standard { grid-template-columns: 1fr; gap: 20px;}
    
    .final-cta { padding: 70px 0; }
    .cta-content p { font-size: 1rem; }
    .btn-large { padding: 16px 20px; width: 100%; font-size: 1rem; }
}