/* --- 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;
    --bg-card: #ffffff;
}

/* --- RESET E ESTILOS GLOBAIS --- */
* { 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 --- */
.mt-20 { margin-top: 20px; display: inline-block; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }

/* --- 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 --- */
.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 E CTA --- */
.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-outline { background: transparent; color: var(--cor-roxo-escuro); border: 2px solid var(--cor-roxo-escuro); }
.btn-outline:hover { background: var(--cor-roxo-escuro); color: white; }
.btn-outline-success { background: transparent; color: var(--cor-verde-escuro); border: 2px solid var(--cor-verde-escuro); }
.btn-outline-success:hover { background: var(--cor-verde-escuro); color: white; }

.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 { 
    /* Ajuste milimétrico para passar a logomarca e não colar no texto */
    padding: 190px 0 80px 0; 
    position: relative; 
    width: 100%;
}
.hero-text-section { text-align: center; max-width: 850px; margin: 0 auto; }
.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; }

/* --- SOCIAL PROOF BUBBLE --- */
.social-proof-bubble { display: inline-flex; align-items: center; justify-content: center; background: rgba(0, 199, 103, 0.1); border: 1px solid rgba(0, 199, 103, 0.2); padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; color: var(--cor-verde-escuro); }

/* --- BALÕES DE BENEFÍCIOS --- */
.balloons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 50px; }
.balloon-card { background: #ffffff; padding: 40px 30px; border-radius: 24px; border: 1px solid rgba(155, 62, 180, 0.15); box-shadow: 0 12px 35px rgba(75, 15, 92, 0.05); text-align: center; transition: transform 0.3s ease; }
.balloon-card:hover { transform: translateY(-8px); border-color: var(--cor-roxo); box-shadow: 0 20px 40px rgba(155, 62, 180, 0.1); }
.balloon-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.balloon-icon svg { width: 42px; height: 42px; color: var(--cor-roxo); }
.balloon-card h3 { color: var(--cor-roxo-escuro); font-size: 1.25rem; margin-bottom: 15px; font-weight: 800; }
.balloon-card p { font-size: 0.95rem; color: #726275; }

/* --- FEATURES & PLANOS GERAIS --- */
.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; }
.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:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(155, 62, 180, 0.1); border-color: rgba(155, 62, 180, 0.4); }
.feature-card p { color: #726275; font-size: 1rem; 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; color: var(--cor-roxo-escuro); }
.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; }

/* --- NOVO GRID DE CATEGORIAS (3 colunas) & TAGS --- */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 100%; }
.flex-title { display: flex; align-items: center; gap: 8px; color: var(--cor-roxo-escuro); font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; }
.cat-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--cor-roxo); }
.tags-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.job-tag { background: var(--cor-roxo-claro); color: var(--cor-roxo-escuro); font-size: 0.8rem; font-weight: 600; padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(155, 62, 180, 0.1); display: inline-flex; align-items: center; }

/* --- DEPOIMENTOS DE VÍDEO E CARROSSEL DE IMAGENS --- */
.testimonials { padding: 40px 0; position: relative; width: 100%; }
.testimonials-single-video { display: flex; justify-content: center; width: 100%; margin-top: 40px; }
.video-testimonial { background: #fff; border-radius: 16px; padding: 10px; border: 1px solid rgba(155, 62, 180, 0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.05); width: 100%; max-width: 500px; }

/* Carrossel Animado CSS */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 40px;
    position: relative;
}
/* Sombreamento lateral para suavizar a entrada/saída das imagens */
.carousel-container::before, .carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--cor-roxo-claro) 0%, transparent 100%);
}
.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--cor-roxo-claro) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
}
/* Pausa a animação quando o usuário passa o mouse para ler */
.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* Movimenta exatos 50% para um loop invisível */
}

.image-testimonial-card {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(155, 62, 180, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.feedback-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 8px;
}

/* --- GRID DE PLANOS (3 colunas) --- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 100%; }
.feature-card.card-premium { border: 2px solid var(--cor-roxo); box-shadow: 0 15px 40px rgba(155, 62, 180, 0.15); }
.relative-card { position: relative; padding-top: 60px; }
.feature-card h3 { color: var(--cor-roxo-escuro); font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; }
.badge-most-chosen { position: absolute; top: 0; left: 0; right: 0; background: var(--cor-laranja); color: white; text-align: center; font-size: 0.85rem; font-weight: 800; padding: 10px; border-radius: 14px 14px 0 0; text-transform: uppercase; }
.badge-safe, .badge-premium { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; border-radius: 20px; padding: 6px 12px; }
.badge-safe { background: rgba(0, 199, 103, 0.1); color: var(--cor-verde-escuro); border: 1px solid rgba(0, 199, 103, 0.2); }
.badge-premium { background: rgba(155, 62, 180, 0.08); color: var(--cor-roxo-escuro); border: 1px solid rgba(155, 62, 180, 0.15); }
.safe-payment-disclaimer { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; max-width: 800px; margin-inline: auto; background: rgba(0, 199, 103, 0.05); border: 1px solid rgba(0, 199, 103, 0.2); padding: 15px 25px; border-radius: 12px; color: #5f4c63; font-size: 0.9rem; font-weight: 600; }
.safe-payment-disclaimer svg { width: 24px; height: 24px; color: var(--cor-verde-escuro); flex-shrink: 0; }

/* --- FAQ ACCORDION --- */
.faq-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #fff; border: 1px solid rgba(155, 62, 180, 0.2); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.faq-item[open] { border-color: var(--cor-roxo); box-shadow: 0 5px 15px rgba(155, 62, 180, 0.1); }
.faq-item summary { padding: 20px 25px; font-weight: 700; font-size: 1.1rem; color: var(--cor-roxo-escuro); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--cor-roxo); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-content { padding: 0 25px 20px 25px; color: #726275; font-size: 1rem; line-height: 1.6; border-top: 1px solid transparent; }
.faq-item[open] .faq-content { border-top: 1px solid rgba(155, 62, 180, 0.1); padding-top: 20px; }

/* =========================================================
   BLOCO UNIFICADO CTA + FOOTER PREMIUM 
   (A mesma cor roxa para não haver "divisão" na tela)
========================================================= */

.final-cta { 
    padding: 100px 0 40px 0; 
    position: relative; 
    margin-top: 50px; 
    width: 100%; 
    background-color: var(--cor-roxo-mais-escuro); 
    color: #ffffff; 
}
.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-premium { 
    background-color: var(--cor-roxo-mais-escuro); 
    color: #ffffff; 
    padding: 20px 0 40px 0; 
    width: 100%; 
    position: relative; 
    z-index: 20; 
}
.footer-title { font-size: 1.5rem; text-align: center; margin-top: 2rem; margin-bottom: 1rem; font-weight: 600; }

.partners-grid, .awards-grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 40px; margin-bottom: 4rem; padding: 0 16px; }
.partner-img { height: 5rem; width: auto; margin: 0 auto; object-fit: contain; }
.award-item { display: flex; flex-direction: column; align-items: center; max-width: 180px; }
.award-img { height: 7rem; width: auto; margin: 0 auto; object-fit: contain; }
.award-text { font-size: 0.75rem; text-align: center; margin-top: 8px; font-weight: 400; line-height: 1.4; }
.footer-contact-area { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 24px; }
.social-icons { display: flex; justify-content: center; gap: 24px; }
.social-icons a { color: #ffffff; font-size: 1.5rem; transition: transform 0.3s ease; text-decoration: none; }
.social-icons a:hover { transform: scale(1.1); }
.footer-address { text-align: center; font-size: 1rem; font-weight: 400; line-height: 1.6; padding: 0 24px; }
.footer-phone { margin-top: 8px; font-size: 1.05rem; font-weight: 600; }
.footer-phone i { margin-right: 8px; }
.inpi-text { text-align: center; font-size: 0.85rem; font-weight: 300; opacity: 0.8; margin-top: 40px; margin-bottom: 8px; padding: 0 16px; }

/* --- 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; }

/* --- 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-bullets { display: inline-block; text-align: left; margin: 0 auto;}
    .categories-grid, .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .video-testimonial iframe { height: 400px; }
}

@media (max-width: 768px) {
    .categories-grid, .plans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .navbar { padding: 25px 0; }
    /* Ajuste para mobile também para não engolir o texto na versão de celular */
    .hero { padding: 140px 0 40px 0; }
    .logo-img { height: 80px; } 
    .new-hero-title { font-size: 1.6rem; margin: 15px 0; }
    .features { padding: 60px 0; }
    .feature-card { padding: 35px 25px; text-align: center; }
    .flex-title { justify-content: center; }
    .tags-group { justify-content: center; }
    .final-cta { padding: 70px 0 40px 0; }
    .cta-content p { font-size: 1rem; }
    .btn-large { padding: 16px 20px; width: 100%; font-size: 1rem; }
    
    .partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 3rem; }
    .partner-img { height: 3rem; }
    .awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 2rem; }
    .award-item { max-width: 100%; }
    .award-img { height: 5rem; }
    .award-text { font-size: 0.65rem; }
    .footer-address { font-size: 0.9rem; }
}