/* ==========================================================================
   1. IMPORTAÇÃO DE FONTES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&family=Ubuntu:ital,wght@0,400;0,700;1,700&display=swap');

/* ==========================================================================
   2. VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
    --color-primary: #E4F64A;
    --color-secondary: #24293E;
    --color-tertiary: #616574;
    --bg-white: #ffffff;
    --bg-light-1: #f8f8f9;
    --font-main: 'Ubuntu', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* ==========================================================================
   3. RESET CSS E GLOBAIS
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-secondary);
    color: var(--color-tertiary);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6, .nav-menu a, .btn {
    font-family: var(--font-main);
    color: var(--color-secondary);
    font-weight: 700;
}
a { text-decoration: none; transition: all 0.3s ease; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   4. HEADER (DESKTOP)
   ========================================================================== */
.main-header {
    width: 100%; height: 90px; position: sticky; top: 0; left: 0; z-index: 1000;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.header-container { max-width: 1440px; height: 100%; display: flex; flex-direction: row; justify-content: space-between; align-items: center; }
.logo-link { display: inline-block; z-index: 1100; flex-shrink: 0; }
.logo-img { width: auto; height: 21px; display: block; }
.nav-menu { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 15px; }
.menu-item { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--color-secondary); height: 45px; padding: 0 30px; display: flex; align-items: center; background-color: transparent; border: none; cursor: pointer; }
.header-actions { display: flex; flex-direction: row; justify-content: flex-end; align-items: center; gap: 15px; flex-shrink: 0; }
.mobile-actions { display: none; }
.btn-menu-outline { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--color-secondary); height: 45px; padding: 0 30px; display: flex; align-items: center; background-color: transparent; border: 1px solid var(--color-secondary); border-radius: 100px; cursor: pointer; }
.btn-menu-outline:hover { background-color: var(--color-secondary); color: #ffffff; }
.btn-menu-solid { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: #ffffff; height: 45px; padding: 0 30px; display: flex; align-items: center; background-color: var(--color-secondary); border: 1px solid transparent; border-radius: 100px; cursor: pointer; }
.btn-menu-solid:hover { background-color: var(--color-primary); color: var(--color-secondary); }
.menu-toggle { display: none; flex-direction: column; justify-content: space-between; align-items: flex-end; width: 30px; height: 14px; background: transparent; border: none; cursor: pointer; z-index: 1100; padding: 0; }
.menu-toggle .line { display: block; height: 2px; background-color: var(--color-secondary); transition: all 0.3s ease-in-out; }
.menu-toggle .line-top { width: 30px; }
.menu-toggle .line-bottom { width: 22px; }

/* ==========================================================================
   5. HEADER RESPONSIVO (< 991px)
   ========================================================================== */
@media (max-width: 991px) {
    .menu-toggle { display: flex; }
    .menu-toggle.active { height: 20px; justify-content: center; }
    .menu-toggle.active .line-top { width: 28px; transform: rotate(45deg) translate(1px, 1px); }
    .menu-toggle.active .line-bottom { width: 28px; transform: rotate(-45deg) translate(0px, 0px); }
    .header-actions { display: none; }
    .nav-menu { position: fixed; top: 0; right: 0; width: 100vw; height: 100vh; background-color: var(--color-primary); padding: 160px 40px 60px 40px; flex-direction: column; justify-content: center; align-items: center; gap: 20px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1050; }
    .nav-menu.active { transform: translateX(0); }
    .menu-item { font-size: 24px; height: auto; padding: 10px 0; justify-content: center; width: 100%; color: var(--color-secondary); }
    .mobile-actions { display: flex; flex-direction: column; width: 100%; gap: 15px; margin-top: 20px; }
    .mobile-actions .btn-menu-outline, .mobile-actions .btn-menu-solid { width: 100%; justify-content: center; height: 50px; }
    .mobile-actions .btn-menu-outline { border: 1px solid var(--color-secondary); color: var(--color-secondary); }
    .mobile-actions .btn-menu-outline:hover { background-color: var(--color-secondary); color: #ffffff !important; }
    .mobile-actions .btn-menu-solid { background-color: var(--color-secondary); color: #ffffff !important; }
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section { width: 100vw; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding-bottom: 60px; }
.hero-container { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; gap: 60px; width: 100%; max-width: 1280px; padding: 0 20px; }
.hero-badge, .hero-title, .hero-subtitle, .hero-form { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-badge { animation-delay: 0.1s; } .hero-title { animation-delay: 0.3s; } .hero-subtitle { animation-delay: 0.5s; } .hero-form { animation-delay: 0.7s; }
.hero-badge { height: 45px; padding: 0 30px; background-color: var(--color-primary); border-radius: 100px; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 10px; }
.hero-badge span { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--color-secondary); }
.hero-badge-logo { height: 15px; width: auto; }
.hero-title { font-size: 107px; font-family: var(--font-main); font-weight: 700; color: var(--color-secondary); text-align: center; line-height: 1.1; letter-spacing: -2px; }
.hero-title em { font-style: italic; font-weight: 400; }
.hero-subtitle { width: 100%; max-width: 737px; font-family: var(--font-secondary); font-size: 18px; font-weight: 400; color: var(--color-tertiary); text-align: center; line-height: 1.6; }
.hero-form { width: 100%; max-width: 450px; height: 60px; display: flex; flex-direction: row; align-items: center; background-color: var(--bg-light-1); border-radius: 100px; padding-left: 20px; padding-right: 7px; border: 1px solid #e0e0e0; }
.hero-input { flex-grow: 1; height: 100%; background: transparent; border: none; outline: none; font-family: var(--font-secondary); font-size: 15px; color: var(--color-secondary); }
.hero-input::placeholder { color: var(--color-secondary); opacity: 0.6; }
.hero-btn { height: 46px; padding: 0 30px; background-color: var(--color-primary); color: var(--color-secondary); font-family: var(--font-main); font-size: 15px; font-weight: 700; border: none; border-radius: 100px; cursor: pointer; transition: all 0.3s ease; }
.hero-btn:hover { background-color: var(--color-secondary); color: var(--color-primary); }

@media (max-width: 991px) { .hero-title { font-size: 60px; } }
@media (max-width: 768px) {
    .main-header { height: 60px; }
    .hero-section { margin-top: -60px; padding-top: 60px; }
    .hero-container { gap: 28px; }
}

@media (max-width: 640px) {
    .hero-title br { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 38px; letter-spacing: -1px; padding: 0 4px; }
    .hero-form { flex-direction: column; height: auto; border-radius: 20px; padding: 10px; background-color: transparent; border: none; gap: 15px; }
    .hero-input { width: 100%; height: 50px; background-color: var(--bg-light-1); border-radius: 100px; padding: 0 20px; border: 1px solid #e0e0e0; }
    .hero-btn { width: 100%; height: 50px; }
}

/* ==========================================================================
   8. SHOWCASE SECTION (DESKTOP CORREÇÃO PROPORÇÃO E ACHATAMENTO)
   ========================================================================== */
.showcase-section {
    width: 100%;
    padding: 120px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.showcase-heading { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 110px; }
.showcase-heading .section-tag { margin-bottom: 20px; }
.showcase-heading .section-title { margin-bottom: 0; font-size: 58px; max-width: 900px; }

.showcase-texto-wrap { width: 100%; display: flex; justify-content: center; padding: 0 20px; margin-top: 40px; }

.showcase-texto {
    width: 100%;
    max-width: 768px;
    font-family: var(--font-secondary);
    font-size: 27px;
    line-height: 1.7;
    text-align: center;
}

/* ── EFEITO DE REVELAÇÃO NO SCROLL (palavra por palavra, estilo Apple) ── */
.scroll-reveal-texto .palavra {
    color: #d8d8dc;
    transition: color 0.15s linear;
}

.scroll-reveal-texto .palavra.ativa {
    color: var(--color-secondary);
}

.showcase-container {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-link {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
}

.showcase-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.card-center { width: 640px; height: 800px; z-index: 3; transform: translate(-50%, -50%) rotate(0deg); }
.card-left { width: 480px; height: 600px; z-index: 1; transform: translate(-50%, -50%) rotate(0deg); }
.card-right { width: 480px; height: 600px; z-index: 2; transform: translate(-50%, -50%) rotate(0deg); }

.showcase-container.is-visible .card-left {
    transform: translate(calc(-50% - 320px), -50%) rotate(-3deg);
}
.showcase-container.is-visible .card-right {
    transform: translate(calc(-50% + 320px), -50%) rotate(3deg);
}

/* ==========================================================================
   9. SHOWCASE RESPONSIVO
   ========================================================================== */
@media (max-width: 1024px) {
    .showcase-container { height: 550px; }
    
    .card-center { width: 440px; height: 550px; }
    .card-left { width: 320px; height: 400px; }
    .card-right { width: 320px; height: 400px; }
    
    .showcase-container.is-visible .card-left { transform: translate(calc(-50% - 220px), -50%) rotate(-3deg); }
    .showcase-container.is-visible .card-right { transform: translate(calc(-50% + 220px), -50%) rotate(3deg); }
}

@media (max-width: 767px) {
    .showcase-section { padding: 60px 0; }
    .showcase-heading { margin-bottom: 60px; }
    .showcase-heading .section-title { font-size: 34px; }
    .showcase-texto { font-size: 19px; }
    .showcase-container { height: 380px; }

    .card-center { width: 280px; height: 350px; }
    .card-left { width: 220px; height: 275px; }
    .card-right { width: 220px; height: 275px; }

    .card-center { transform: translate(-50%, -50%) rotate(0deg); }
    .card-left   { transform: translate(-50%, -50%) rotate(0deg); }
    .card-right  { transform: translate(-50%, -50%) rotate(0deg); }

    .showcase-container.is-visible .card-left { 
        transform: translate(calc(-50% - 85px), -50%) rotate(-4deg); 
    }
    .showcase-container.is-visible .card-right { 
        transform: translate(calc(-50% + 85px), -50%) rotate(4deg); 
    }
}

/* ==========================================================================
   9B. TAG E TÍTULO DE SEÇÃO (padrão reutilizado)
   ========================================================================== */
.section-tag {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
    background-color: var(--color-primary);
    display: inline-flex;
    height: 36px;
    padding: 0 20px;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .section-title { font-size: 30px; margin-bottom: 40px; }
}

/* ==========================================================================
   9C. COMO FUNCIONA
   ========================================================================== */
.como-funciona-section { width: 100%; padding: 30px 0 100px; background-color: var(--bg-white); }

/* badge e título centralizados na página */
.como-funciona-section .container { display: flex; flex-direction: column; align-items: center; }
.como-funciona-section .section-title { text-align: center; }
.como-funciona-section .etapas-grid { width: 100%; }

.etapas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.etapa-card { background-color: var(--bg-light-1); border-radius: 24px; padding: 40px 30px; }

.etapa-numero { font-family: var(--font-main); font-size: 15px; font-weight: 700; color: var(--color-primary); background-color: var(--color-secondary); display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 24px; }

.etapa-titulo { font-size: 20px; margin-bottom: 10px; }

.etapa-texto { font-family: var(--font-secondary); font-size: 15px; color: var(--color-tertiary); line-height: 1.6; }

@media (max-width: 991px) {
    .como-funciona-section { padding: 20px 0 70px; }
    .etapas-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   9D. FUNCIONALIDADES
   ========================================================================== */
.funcionalidades-section { width: 100%; padding: 100px 0; background-color: var(--bg-white); overflow: hidden; }

.funcionalidades-heading { margin-bottom: 50px; }

.feature-carousel-wrap { position: relative; width: 100%; }

.feature-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1281px) {
    .feature-carousel {
        padding-left: calc((100vw - 1280px) / 2 + 20px);
        padding-right: calc((100vw - 1280px) / 2 + 20px);
    }
}

.feature-carousel::-webkit-scrollbar { display: none; }

.feature-slide {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.feature-slide-visual {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-slide-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-slide-icon img { display: block; }

.feature-slide-texto {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-tertiary);
    line-height: 1.6;
}

.feature-slide-texto strong { font-family: var(--font-secondary); font-weight: 700; color: var(--color-secondary); }

.feature-carousel-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    max-width: 1280px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.feature-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light-1);
    color: var(--color-secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.feature-nav-btn:hover { background-color: var(--color-primary); }
.feature-nav-btn:disabled { color: #c7c9d1; cursor: default; }
.feature-nav-btn:disabled:hover { background-color: var(--bg-light-1); }

@media (max-width: 991px) {
    .funcionalidades-section { padding: 70px 0; }
    .feature-slide { flex-basis: 260px; }
}

@media (max-width: 600px) {
    .feature-slide { flex-basis: 220px; }
    .feature-carousel { gap: 16px; }
}

/* ==========================================================================
   9E. BENEFÍCIOS E DIFERENCIAIS
   ========================================================================== */
.beneficios-section { width: 100%; padding: 100px 0; background-color: var(--bg-white); }

.beneficios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 40px; }

.beneficio-item { display: flex; align-items: flex-start; gap: 16px; }

.beneficio-icone { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background-color: var(--color-primary); color: var(--color-secondary); display: flex; align-items: center; justify-content: center; }

.beneficio-titulo { font-size: 17px; margin-bottom: 6px; }

.beneficio-texto { font-family: var(--font-secondary); font-size: 14px; color: var(--color-tertiary); line-height: 1.6; }

@media (max-width: 767px) {
    .beneficios-section { padding: 70px 0; }
    .beneficios-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   9F. PREÇOS
   ========================================================================== */
.precos-section { width: 100%; padding: 100px 0; background-color: var(--bg-white); }

.precos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.preco-card { border: 1.5px solid #ececec; border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column; gap: 20px; position: relative; }

.preco-card-destaque { border-color: var(--color-secondary); background-color: var(--color-secondary); }

.preco-tag-destaque { position: absolute; top: -14px; left: 30px; background-color: var(--color-primary); color: var(--color-secondary); font-family: var(--font-main); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 100px; }

.preco-nome { font-size: 18px; }
.preco-card-destaque .preco-nome { color: #ffffff; }

.preco-valor { font-family: var(--font-main); font-size: 32px; font-weight: 700; color: var(--color-secondary); }
.preco-valor span { font-family: var(--font-secondary); font-size: 14px; font-weight: 400; color: var(--color-tertiary); }
.preco-card-destaque .preco-valor { color: #ffffff; }
.preco-card-destaque .preco-valor span { color: #a9adbb; }

.preco-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; font-family: var(--font-secondary); font-size: 14px; color: var(--color-tertiary); }
.preco-feats li { padding-left: 22px; position: relative; }
.preco-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--color-secondary); font-weight: 700; }
.preco-card-destaque .preco-feats { color: #d5d7de; }
.preco-card-destaque .preco-feats li::before { color: var(--color-primary); }

.preco-btn { height: 48px; border-radius: 100px; display: flex; align-items: center; justify-content: center; font-family: var(--font-main); font-size: 15px; font-weight: 700; transition: all 0.3s ease; }
.preco-btn-outline { background-color: transparent; color: var(--color-secondary); border: 1.5px solid var(--color-secondary); }
.preco-btn-outline:hover { background-color: var(--color-secondary); color: #ffffff; }
.preco-btn-solid { background-color: var(--color-primary); color: var(--color-secondary); border: 1.5px solid var(--color-primary); }
.preco-btn-solid:hover { background-color: #ffffff; color: var(--color-secondary); }

@media (max-width: 991px) {
    .precos-section { padding: 70px 0; }
    .precos-grid { grid-template-columns: 1fr; gap: 20px; }
    .preco-card-destaque { order: -1; }
}

/* ==========================================================================
   9G. AJUDA / FAQ
   ========================================================================== */
.ajuda-section { width: 100%; padding: 100px 0; background-color: var(--bg-white); }

.ajuda-section .container { display: flex; flex-direction: column; align-items: center; }
.ajuda-section .section-title { text-align: center; }

.faq-lista { max-width: 800px; width: 100%; display: flex; flex-direction: column; gap: 12px; }

.faq-item { background-color: #f6f6f6; border-radius: 16px; padding: 6px 26px; }

.faq-pergunta { font-family: var(--font-main); font-size: 16px; font-weight: 700; color: var(--color-secondary); padding: 20px 0; list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-pergunta::-webkit-details-marker { display: none; }

.faq-icone { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background-color: var(--bg-light-1); color: var(--color-secondary); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 400; transition: transform 0.3s ease; }
.faq-item[open] .faq-icone { transform: rotate(45deg); background-color: var(--color-primary); }

.faq-resposta { font-family: var(--font-secondary); font-size: 15px; color: var(--color-tertiary); line-height: 1.6; padding: 0 0 22px; }

@media (max-width: 767px) {
    .ajuda-section { padding: 70px 0; }
    .faq-item { padding: 4px 20px; }
}

/* ==========================================================================
   9H. CTA FINAL
   ========================================================================== */
.cta-final-section { width: 100%; padding: 40px 20px 50px; background-color: var(--bg-white); }

.cta-final-painel {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(160deg, #2A3050, #171b2e);
    border-radius: 36px;
    padding: 80px 70px;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.cta-final-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #E4F64A;
    filter: blur(120px);
    opacity: 0.22;
    top: -160px;
    right: -100px;
    pointer-events: none;
}

.cta-final-conteudo { position: relative; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }

.cta-final-titulo { font-family: var(--font-main); font-size: 44px; font-weight: 700; color: #ffffff; letter-spacing: -1px; max-width: 560px; margin-bottom: 16px; }

.cta-final-subtitulo { font-family: var(--font-secondary); font-size: 16px; color: #c7cad4; margin-bottom: 36px; }

.cta-final-form { max-width: 450px; width: 100%; }

.cta-final-nota { font-family: var(--font-secondary); font-size: 13px; color: #9aa0b4; margin-top: 14px; }
.cta-final-nota span { color: #E4F64A; font-weight: 700; margin-right: 4px; }

/* mini celular onde o perfil se monta em loop */
.cta-final-visual { position: relative; flex: 0 0 280px; display: flex; justify-content: center; }

.cta-phone {
    width: 250px;
    height: 430px;
    background: #ffffff;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 22px;
    gap: 14px;
    overflow: hidden;
}

.ctap-avatar {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(160deg, #E4F64A, #c9d838);
    animation: ctapPop 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.ctap-nome {
    flex-shrink: 0;
    width: 92px;
    height: 10px;
    border-radius: 6px;
    background: #e2e2e6;
    animation: ctapNome 9s ease-out infinite;
}

.ctap-cards {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    width: max-content;
    flex-shrink: 0;
}

.ctap-cards i {
    width: 100px;
    height: 128px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(36, 41, 62, 0.22);
    flex-shrink: 0;
}

.ctap-cards i:nth-child(2) { width: 116px; height: 148px; }

.ctap-cards i:nth-child(1) { transform: rotate(-4deg); animation: ctapCard1 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.ctap-cards i:nth-child(2) { animation: ctapCard2 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.ctap-cards i:nth-child(3) { transform: rotate(4deg); animation: ctapCard3 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }

.ctap-dots { display: flex; gap: 5px; margin-top: 4px; flex-shrink: 0; animation: ctapDots 9s ease-out infinite; }

.ctap-dots b {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d5d5da;
}

.ctap-dots b:first-child { width: 14px; border-radius: 3px; background: #E4F64A; }

.ctap-btn {
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
    height: 38px;
    border-radius: 100px;
    background: #24293E;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ctapBtn 9s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes ctapPop {
    0%, 3%   { opacity: 0; transform: scale(0.3); }
    9%, 92%  { opacity: 1; transform: scale(1); }
    98%, 100% { opacity: 0; }
}

@keyframes ctapNome {
    0%, 12%  { opacity: 0; transform: translateY(6px); }
    18%, 92% { opacity: 1; transform: translateY(0); }
    98%, 100% { opacity: 0; }
}

@keyframes ctapCard1 {
    0%, 22%  { opacity: 0; transform: rotate(-4deg) translateY(30px); }
    30%, 92% { opacity: 1; transform: rotate(-4deg) translateY(0); }
    98%, 100% { opacity: 0; }
}

@keyframes ctapCard2 {
    0%, 30%  { opacity: 0; transform: translateY(26px); }
    38%, 92% { opacity: 1; transform: translateY(0); }
    98%, 100% { opacity: 0; }
}

@keyframes ctapCard3 {
    0%, 38%  { opacity: 0; transform: rotate(4deg) translateY(30px); }
    46%, 92% { opacity: 1; transform: rotate(4deg) translateY(0); }
    98%, 100% { opacity: 0; }
}

@keyframes ctapDots {
    0%, 48%  { opacity: 0; }
    54%, 92% { opacity: 1; }
    98%, 100% { opacity: 0; }
}

@keyframes ctapBtn {
    0%, 56%  { opacity: 0; transform: translateY(12px) scale(0.9); }
    64%, 92% { opacity: 1; transform: translateY(0) scale(1); }
    98%, 100% { opacity: 0; }
}

@media (max-width: 900px) {
    .cta-final-painel { flex-direction: column; padding: 50px 28px; gap: 40px; text-align: center; }
    .cta-final-conteudo { align-items: center; }
    .cta-final-titulo { font-size: 30px; }
    .cta-phone { width: 230px; height: 410px; }
    .ctap-cards { gap: 10px; }
    .ctap-cards i { width: 82px; height: 106px; }
    .ctap-cards i:nth-child(2) { width: 96px; height: 124px; }
}

@media (prefers-reduced-motion: reduce) {
    .ctap-avatar, .ctap-nome, .ctap-cards i, .ctap-dots, .ctap-btn { animation: none; }
}

@media (max-width: 767px) {
    .cta-final-section { padding: 70px 0 90px; }
    .cta-final-titulo { font-size: 28px; }
}

/* ==========================================================================
   10. FOOTER (ESTILO HUBY ADAPTADO)
   ========================================================================== */
.main-footer {
    width: 100%;
    padding: 50px 0 60px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

/* Linha Superior: Título + Links */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0;
}

.text-primary {
    color: var(--color-primary);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-link {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

/* Imagem Gigante Central */
.footer-giant-logo {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 60px;
    margin-bottom: 20px;
}

/* Linha Inferior: Direitos Autorais */
.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-copy {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-secondary);
    margin: 0;
}

.footer-bottom-grid .footer-copy:last-child {
    text-align: right;
}

.footer-bottom-grid a {
    font-weight: 700;
}

/* --- FOOTER RESPONSIVO --- */
@media (max-width: 991px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 80px 0 40px 0;
    }
    
    .footer-heading {
        font-size: 32px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-bottom-grid .footer-copy:last-child {
        text-align: left;
    }
}
/* ══════════════════════════════════════════
   INTERAÇÕES DE SCROLL (reveal + parallax)
   ══════════════════════════════════════════ */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].visivel {
    opacity: 1;
    transform: none;
}

/* ── COMO FUNCIONA: números fantasma + lift ── */

.etapa-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.etapa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(36, 41, 62, 0.1);
}

.etapa-ghost {
    position: absolute;
    top: -34px;
    right: -8px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 170px;
    line-height: 1;
    color: rgba(228, 246, 74, 0.55);
    pointer-events: none;
    user-select: none;
    will-change: transform;
}

/* ── BENEFÍCIOS: bento grid ── */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bento-card {
    background: #f6f6f6;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(36, 41, 62, 0.12);
}

.bento-grande {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card .beneficio-titulo { font-size: 19px; margin-bottom: 8px; }
.bento-grande .beneficio-titulo { font-size: 24px; }

/* mini carrossel animado (card grande) */
.bento-carrossel {
    position: relative;
    flex: 1;
    min-height: 220px;
    background: linear-gradient(160deg, #24293E, #3A415C);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.bento-carrossel-track {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    gap: 16px;
    animation: bentoSlide 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    will-change: transform;
}

.bento-mini-card {
    width: 104px;
    height: 132px;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bento-mini-card:nth-child(odd)  { transform: rotate(-2.5deg); }
.bento-mini-card:nth-child(even) { transform: rotate(2.5deg); }

@keyframes bentoSlide {
    0%, 14%   { transform: translate(-52px, -50%); }
    25%, 39%  { transform: translate(-172px, -50%); }
    50%, 64%  { transform: translate(-292px, -50%); }
    75%, 89%  { transform: translate(-412px, -50%); }
    100%      { transform: translate(-52px, -50%); }
}

/* raio + número (velocidade) */
.bento-veloz {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.bento-veloz svg { color: #c9a70a; animation: bentoPulso 2.2s ease-in-out infinite; }

.bento-veloz-num {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 44px;
    letter-spacing: -1px;
}

@keyframes bentoPulso {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50%      { transform: scale(1.18); opacity: 1; }
}

/* roda de cores (personalização) */
.bento-roda {
    flex-shrink: 0;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    margin: 14px auto 24px;
    background: conic-gradient(#E4F64A, #FF8FAB, #74C0FC, #74C69D, #B197FC, #FFD93D, #E4F64A);
    animation: bentoGirar 16s linear infinite;
    position: relative;
}

.bento-roda::after {
    content: '';
    position: absolute;
    inset: 30px;
    background: #f6f6f6;
    border-radius: 50%;
}

@keyframes bentoGirar { to { transform: rotate(360deg); } }

/* gráfico de barras (métricas) — cresce quando o card entra na tela */
.bento-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 130px;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 0 6px;
}

.bento-chart span {
    flex: 1;
    height: var(--h, 50%);
    background: linear-gradient(to top, #c9d838, var(--color-primary));
    border-radius: 6px 6px 3px 3px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card.visivel .bento-chart span { transform: scaleY(1); }
.bento-chart span:nth-child(2) { transition-delay: 0.08s; }
.bento-chart span:nth-child(3) { transition-delay: 0.16s; }
.bento-chart span:nth-child(4) { transition-delay: 0.24s; }
.bento-chart span:nth-child(5) { transition-delay: 0.32s; }
.bento-chart span:nth-child(6) { transition-delay: 0.4s; }
.bento-chart span:nth-child(7) { transition-delay: 0.48s; }

/* R$ 0 gigante */
.bento-zero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 58px;
    letter-spacing: -2px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

/* emojis flutuando */
.bento-emojis {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 34px;
    margin-bottom: 20px;
}

.bento-emojis span { animation: bentoFlutuar 3.4s ease-in-out infinite; display: inline-block; }
.bento-emojis span:nth-child(2) { animation-delay: 0.5s; }
.bento-emojis span:nth-child(3) { animation-delay: 1s; }
.bento-emojis span:nth-child(4) { animation-delay: 1.5s; }

@keyframes bentoFlutuar {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-grande { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 620px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-grande { grid-column: span 1; }
    .etapa-ghost { font-size: 130px; }
}

/* movimento reduzido: tudo estático e visível */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .bento-carrossel-track, .bento-veloz svg, .bento-roda, .bento-emojis span { animation: none; }
    .bento-chart span { transform: scaleY(1); transition: none; }
    .etapa-ghost { transform: none !important; }
}

/* ══════════════════════════════════════════
   FUNCIONALIDADES: MINI-CENAS ANIMADAS
   ══════════════════════════════════════════ */

.fs-cena {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* fundos temáticos por slide */
.fsv-banner    { background: linear-gradient(160deg, #5B6CFF, #3c48b8); }
.fsv-pix       { background: linear-gradient(160deg, #00C9A7, #00897a); }
.fsv-zap       { background: linear-gradient(160deg, #25D366, #178f3e); }
.fsv-shop      { background: linear-gradient(160deg, #FFB25E, #E07C0F); }
.fsv-design    { background: linear-gradient(160deg, #2A3050, #171b2e); }
.fsv-analytics { background: linear-gradient(160deg, #2A3050, #171b2e); }
.fsv-seo       { background: linear-gradient(160deg, #8B6CFF, #5b3fd4); }

/* card branco base das cenas */
.fs-mini-card {
    position: relative;
    width: 152px;
    height: 196px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

/* ── 1. BANNER: foto entra, máscara sobe, botão pousa ── */
.fs-banner-foto {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #8fd9ff 0%, #d9f2ff 70%);
    animation: fsBannerFoto 6s ease-in-out infinite;
}

.fs-banner-sol {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FFD93D;
}

.fs-banner-montanha {
    position: absolute;
    inset: 0;
    background: #4CAF7D;
    clip-path: polygon(0 100%, 0 68%, 34% 42%, 58% 64%, 78% 48%, 100% 66%, 100% 100%);
}

.fs-banner-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 55%);
    animation: fsBannerMask 6s ease-in-out infinite;
}

.fs-banner-btn {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 13px;
    height: 30px;
    border-radius: 100px;
    background: #E4F64A;
    color: #24293E;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fsBannerBtn 6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes fsBannerFoto {
    0%       { opacity: 0; transform: scale(1.08); }
    10%, 94% { opacity: 1; transform: scale(1); }
    100%     { opacity: 0; transform: scale(1.02); }
}

@keyframes fsBannerMask {
    0%, 20%  { opacity: 0; }
    32%, 94% { opacity: 1; }
    100%     { opacity: 0; }
}

@keyframes fsBannerBtn {
    0%, 38%  { opacity: 0; transform: translateY(16px) scale(0.85); }
    50%, 94% { opacity: 1; transform: translateY(0) scale(1); }
    100%     { opacity: 0; transform: translateY(4px); }
}

/* ── 2. PIX: botão é "clicado" e confirma a cópia ── */
.fs-pix-logo { animation: fsPixLogo 6s ease-in-out infinite; }

.fs-pix-btn {
    position: relative;
    min-width: 150px;
    height: 40px;
    padding: 0 18px;
    border-radius: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    animation: fsPixPress 6s ease-in-out infinite;
}

.fs-pix-t1, .fs-pix-t2 { position: absolute; white-space: nowrap; }
.fs-pix-t1 { color: #00897a; animation: fsPixT1 6s ease-in-out infinite; }
.fs-pix-t2 { color: #1a9b52; animation: fsPixT2 6s ease-in-out infinite; }

.fs-pix-ring {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    animation: fsPixRing 6s ease-out infinite;
}

@keyframes fsPixLogo {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    40%      { transform: scale(1.08); opacity: 1; }
}

@keyframes fsPixPress {
    0%, 38%, 46%, 100% { transform: scale(1); }
    42%                { transform: scale(0.92); }
}

@keyframes fsPixT1 {
    0%, 40%   { opacity: 1; transform: translateY(0); }
    46%, 88%  { opacity: 0; transform: translateY(-8px); }
    94%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes fsPixT2 {
    0%, 42%   { opacity: 0; transform: translateY(8px); }
    50%, 86%  { opacity: 1; transform: translateY(0); }
    92%, 100% { opacity: 0; }
}

@keyframes fsPixRing {
    0%, 40%   { opacity: 0; transform: scale(1); }
    44%       { opacity: 0.9; transform: scale(1); }
    62%, 100% { opacity: 0; transform: scale(1.5); }
}

/* ── 3. ZAP: conversa acontecendo ── */
.fs-zap {
    align-items: stretch;
    justify-content: center;
    padding: 0 30px;
    gap: 12px;
}

.fs-zap-bolha {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 16px;
    font-family: var(--font-secondary);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.fs-zap-b1 {
    align-self: flex-start;
    background: #fff;
    color: #24293E;
    border-bottom-left-radius: 4px;
    transform-origin: bottom left;
    animation: fsZapB1 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.fs-zap-b2 {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.35);
    border-bottom-right-radius: 4px;
    display: flex;
    gap: 4px;
    align-items: center;
    height: 34px;
    transform-origin: bottom right;
    animation: fsZapB2 7s ease-in-out infinite;
}

.fs-zap-b2 span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: fsZapDot 1s ease-in-out infinite;
}

.fs-zap-b2 span:nth-child(2) { animation-delay: 0.16s; }
.fs-zap-b2 span:nth-child(3) { animation-delay: 0.32s; }

.fs-zap-b3 {
    align-self: flex-end;
    background: #E4F64A;
    color: #24293E;
    border-bottom-right-radius: 4px;
    transform-origin: bottom right;
    animation: fsZapB3 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes fsZapB1 {
    0%, 6%    { opacity: 0; transform: scale(0.6) translateY(8px); }
    14%, 92%  { opacity: 1; transform: scale(1) translateY(0); }
    100%      { opacity: 0; }
}

@keyframes fsZapB2 {
    0%, 26%   { opacity: 0; transform: scale(0.6); }
    32%, 52%  { opacity: 1; transform: scale(1); }
    58%, 100% { opacity: 0; transform: scale(0.8); }
}

@keyframes fsZapDot {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(-4px); opacity: 1; }
}

@keyframes fsZapB3 {
    0%, 56%   { opacity: 0; transform: scale(0.6) translateY(8px); }
    66%, 92%  { opacity: 1; transform: scale(1) translateY(0); }
    100%      { opacity: 0; }
}

/* ── 4. SHOP: produto com selo e botão brilhando ── */
.fs-shop-card { display: flex; flex-direction: column; }

.fs-shop-foto {
    flex: 1;
    background: #f4f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    animation: fsShopFoto 5s ease-in-out infinite;
}

.fs-shop-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #24293E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: fsShopBadge 5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.fs-shop-btn {
    position: relative;
    margin: 12px;
    height: 32px;
    border-radius: 100px;
    background: #E4F64A;
    color: #24293E;
    font-family: var(--font-main);
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fs-shop-btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 46px;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    animation: fsShopShine 5s ease-in-out infinite;
}

@keyframes fsShopFoto {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

@keyframes fsShopBadge {
    0%, 30%, 46%, 100% { transform: scale(1); }
    36%                { transform: scale(1.35) rotate(-8deg); }
    41%                { transform: scale(0.95); }
}

@keyframes fsShopShine {
    0%, 55%   { left: -60px; }
    75%, 100% { left: 170px; }
}

/* ── 5. DESIGN: card trocando de cor e formato ── */
.fs-design { gap: 22px; }

.fs-design-card {
    width: 140px;
    height: 168px;
    background: linear-gradient(270deg, #E4F64A, #FF8FAB, #74C0FC, #74C69D, #E4F64A);
    background-size: 500% 100%;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    animation: fsDesignCor 8s ease-in-out infinite, fsDesignForma 8s ease-in-out infinite;
}

.fs-design-dots {
    position: relative;
    display: flex;
    gap: 12px;
}

.fs-design-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.fs-design-sel {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: fsDesignSel 8s ease-in-out infinite;
}

@keyframes fsDesignCor {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes fsDesignForma {
    0%, 100% { border-radius: 18px; }
    25%      { border-radius: 34px; }
    50%      { border-radius: 50px 18px 50px 18px; }
    75%      { border-radius: 10px; }
}

@keyframes fsDesignSel {
    0%, 20%   { transform: translateX(0); }
    25%, 45%  { transform: translateX(26px); }
    50%, 70%  { transform: translateX(52px); }
    75%, 95%  { transform: translateX(78px); }
    100%      { transform: translateX(0); }
}

/* ── 6. ANALYTICS: barras crescendo + selo de alta ── */
.fs-analytics { gap: 20px; }

.fs-an-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
}

.fs-an-chart span {
    width: 22px;
    height: var(--h, 50%);
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(to top, #c9d838, #E4F64A);
    transform-origin: bottom;
    animation: fsAnBar 6s ease-in-out infinite;
}

.fs-an-chart span:nth-child(2) { animation-delay: 0.12s; }
.fs-an-chart span:nth-child(3) { animation-delay: 0.24s; }
.fs-an-chart span:nth-child(4) { animation-delay: 0.36s; }
.fs-an-chart span:nth-child(5) { animation-delay: 0.48s; }

.fs-an-badge {
    background: #E4F64A;
    color: #24293E;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 100px;
    animation: fsAnBadge 6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes fsAnBar {
    0%, 4%    { transform: scaleY(0.08); }
    18%, 88%  { transform: scaleY(1); }
    100%      { transform: scaleY(0.08); }
}

@keyframes fsAnBadge {
    0%, 30%  { opacity: 0; transform: scale(0.6) translateY(10px); }
    42%, 86% { opacity: 1; transform: scale(1) translateY(0); }
    96%, 100% { opacity: 0; }
}

/* ── 7. SEO: lupa varrendo o conteúdo ── */
.fs-seo-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 16px;
    overflow: visible;
}

.fs-seo-linha {
    height: 10px;
    border-radius: 6px;
    background: #e8e8ec;
}

.fs-seo-destaque { animation: fsSeoDestaque 6s ease-in-out infinite; }

.fs-seo-lupa {
    position: absolute;
    top: 34px;
    left: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid #24293E;
    background: rgba(255, 255, 255, 0.35);
    animation: fsSeoLupa 6s ease-in-out infinite;
}

.fs-seo-lupa::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -6px;
    width: 14px;
    height: 5px;
    border-radius: 3px;
    background: #24293E;
    transform: rotate(45deg);
}

@keyframes fsSeoLupa {
    0%, 8%   { transform: translate(0, 0); }
    30%      { transform: translate(78px, 12px); }
    55%      { transform: translate(10px, 38px); }
    80%      { transform: translate(70px, 64px); }
    100%     { transform: translate(0, 0); }
}

@keyframes fsSeoDestaque {
    0%, 22%, 70%, 100% { background: #e8e8ec; }
    34%, 58%           { background: #E4F64A; }
}

/* movimento reduzido: cenas congelam no estado final */
@media (prefers-reduced-motion: reduce) {
    .fs-cena, .fs-cena *, .fs-cena *::after { animation: none !important; }
}

/* ══════════════════════════════════════════
   HERO VIVO: blobs, mini swips e gradiente
   ══════════════════════════════════════════ */

.hero-section { position: relative; overflow: hidden; margin-top: -90px; padding-top: 90px; }

.hero-container { position: relative; z-index: 3; }

/* blobs de gradiente desfocados ao fundo */
.hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    will-change: transform;
}

.hb1 {
    width: 480px; height: 480px;
    background: #E4F64A;
    top: -140px; left: -120px;
    animation: heroBlob1 22s ease-in-out infinite alternate;
}

.hb2 {
    width: 420px; height: 420px;
    background: #B197FC;
    top: -70px; right: -160px;
    opacity: 0.38;
    animation: heroBlob2 26s ease-in-out infinite alternate;
}

.hb3 {
    width: 380px; height: 380px;
    background: #74C0FC;
    bottom: -240px; left: 22%;
    opacity: 0.24;
    animation: heroBlob3 24s ease-in-out infinite alternate;
}

@keyframes heroBlob1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(90px, 60px) scale(1.15); }
}

@keyframes heroBlob2 {
    from { transform: translate(0, 0) scale(1.1); }
    to   { transform: translate(-70px, 80px) scale(0.95); }
}

@keyframes heroBlob3 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, -70px) scale(1.2); }
}

/* mini swips flutuando nas bordas (parallax de mouse via JS no wrapper) */
.hero-cards { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-mini {
    position: absolute;
    display: block;
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.hero-mini i {
    display: block;
    width: 70px;
    height: 88px;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(36, 41, 62, 0.22);
    animation: heroMiniFloat 7s ease-in-out infinite;
}

.hm1 { left: 6%;  top: 24%; }
.hm2 { left: 11%; bottom: 17%; }
.hm3 { right: 7%; top: 19%; }
.hm4 { right: 13%; bottom: 22%; }
.hm5 { right: 27%; top: 9%; }

.hm1 i { transform: rotate(-8deg); }
.hm2 i { transform: rotate(6deg);  width: 58px; height: 74px; animation-delay: 1.2s; }
.hm3 i { transform: rotate(7deg); animation-delay: 0.6s; }
.hm4 i { transform: rotate(-6deg); width: 62px; height: 78px; animation-delay: 1.8s; }
.hm5 i { transform: rotate(4deg);  width: 48px; height: 60px; animation-delay: 2.4s; }

@keyframes heroMiniFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -14px; }
}

/* a palavra-promessa com gradiente vivo */
.hero-grad {
    background: linear-gradient(90deg, #E07C0F, #FF4D8D, #7C4DFF, #00B5A0, #E07C0F);
    background-size: 320% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGrad 7s ease-in-out infinite;
}

@keyframes heroGrad {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* form + nota de fricção zero */
.hero-form-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

.hero-form-wrap .hero-form { opacity: 1; animation: none; }

.hero-form-nota {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--color-tertiary);
}

.hero-form-nota span { color: #1a9b52; font-weight: 700; margin-right: 4px; }

@media (max-width: 991px) {
    .hero-mini i { width: 52px; height: 66px; }
    .hm5 { display: none; }
    .hero-blob { filter: blur(70px); }
}

@media (max-width: 640px) {
    .hm2, .hm4 { display: none; }
    .hm1 { left: 3%; top: 12%; }
    .hm3 { right: 4%; top: 10%; }
    .hero-mini i { width: 44px; height: 56px; opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-blob, .hero-mini i, .hero-grad { animation: none; }
}


/* ══════════════════════════════════════════
   PÁGINAS LEGAIS (termos e privacidade)
   ══════════════════════════════════════════ */

.legal-section { width: 100%; padding: 60px 20px 90px; background: var(--bg-white); }

.legal-conteudo { max-width: 800px; margin: 0 auto; }

.legal-conteudo h1 {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.legal-atualizacao { font-family: var(--font-secondary); font-size: 13px; color: #9aa0b4; margin-bottom: 40px; }

.legal-conteudo h2 {
    font-family: var(--font-main);
    font-size: 21px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 36px 0 12px;
}

.legal-conteudo h3 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 24px 0 8px;
}

.legal-conteudo p, .legal-conteudo li {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-tertiary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-conteudo ul { padding-left: 22px; margin-bottom: 12px; }

@media (max-width: 640px) {
    .legal-conteudo h1 { font-size: 30px; }
}

/* ===================== BLOG V2 (hero criativa + carrossel de posts) ===================== */

.bcontainer { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 24px; }

/* sem padding do template: a hero começa no topo, atrás do header translúcido */
.blog-lista.blog-v2 { padding: 0 0 70px; }

/* ── Hero ── */
.bhero {
    position: relative; overflow: hidden;
    background: #E4F64A; color: #24293E;
    margin-top: -90px;
    min-height: 92vh;
    display: flex; align-items: center;
    padding: 150px 0 90px;
}
@media (max-width: 768px) {
    .bhero { margin-top: -60px; min-height: 78vh; padding: 110px 0 70px; }
}
.bhero-inner { position: relative; z-index: 2; }
.bhero-kicker {
    font-family: var(--font-secondary); font-size: 13px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px;
    animation: bheroSobe .6s cubic-bezier(.22,1,.36,1) both;
}
.bhero-titulo {
    font-family: var(--font-main); font-weight: 800;
    font-size: clamp(46px, 7.6vw, 104px); line-height: 1.02;
    letter-spacing: -2px; margin: 0 0 24px;
}
.bhero-linha { display: block; animation: bheroSobe .7s cubic-bezier(.22,1,.36,1) both; }
.bhero-linha:nth-child(2) { animation-delay: .08s; }
.bhero-linha:nth-child(3) { animation-delay: .16s; }
@keyframes bheroSobe {
    from { opacity: 0; transform: translateY(34px); }
    to   { opacity: 1; transform: translateY(0); }
}
.bhero-pill {
    display: inline-block; background: #24293E; color: #E4F64A;
    padding: 0 .35em .06em; border-radius: 999px; line-height: 1.15;
    transform: rotate(-1.5deg);
}
#bheroWord { display: inline-block; transition: opacity .22s, transform .22s; }
#bheroWord.trocando { opacity: 0; transform: translateY(12px); }
.bhero-seta {
    display: inline-flex; align-items: center; justify-content: center;
    width: .9em; height: .9em; margin-left: .18em; vertical-align: -0.08em;
    background: #32BCAD; color: #fff; border-radius: 50%;
    font-size: .55em; animation: bheroPulsa 2.4s ease-in-out infinite;
}
@keyframes bheroPulsa { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.bhero-sub {
    font-family: var(--font-secondary); font-size: 18px; line-height: 1.6;
    max-width: 540px; opacity: .82;
    animation: bheroSobe .7s .24s cubic-bezier(.22,1,.36,1) both;
}

/* elementos flutuantes (parallax) */
.bhero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bhero-flut { position: absolute; will-change: transform; font-family: var(--font-secondary); }
.bf-estrela { top: 16%; right: 12%; font-size: 54px; color: #24293E; opacity: .9; }
.bf-pill1 {
    top: 60%; right: 18%; background: #7C5CFF; color: #fff;
    font-size: 15px; font-weight: 700; padding: 9px 18px; border-radius: 999px;
    transform: rotate(6deg); box-shadow: 0 10px 24px rgba(36,41,62,.18);
}
.bf-pill2 {
    top: 30%; right: 28%; background: #fff; color: #24293E;
    font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 999px;
    transform: rotate(-7deg); box-shadow: 0 10px 24px rgba(36,41,62,.14);
}
.bf-bola { bottom: 14%; right: 6%; width: 88px; height: 88px; border-radius: 50%; border: 3px solid #24293E; opacity: .25; }
@media (max-width: 760px) {
    .bf-pill2 { display: none; }
    .bf-estrela { font-size: 36px; right: 8%; }
    .bf-bola { width: 56px; height: 56px; }
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Seção de posts (título + carrossel) ── */
.bposts {
    display: flex; flex-direction: column; align-items: center;
    padding-top: 72px; width: 100%;
}
.bposts-head {
    display: flex; flex-direction: column; align-items: flex-start;
    position: relative; margin-bottom: 34px;
}
.bposts-kicker {
    font-family: var(--font-secondary); font-size: 21px; font-weight: 500;
    color: #6a7305; margin-bottom: 10px;
}
.bposts-titulo {
    font-family: var(--font-main); font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 800; color: #24293E; line-height: 1.08;
    letter-spacing: -1.2px; margin: 0 0 22px;
}
.bcarrossel-nav { position: absolute; right: 24px; bottom: 4px; display: flex; gap: 10px; }
.bcarrossel-btn {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid #24293E; background: transparent; color: #24293E;
    font-size: 18px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, transform .15s;
}
.bcarrossel-btn:hover { background: #24293E; color: #E4F64A; }
.bcarrossel-btn:active { transform: scale(.94); }
@media (max-width: 640px) { .bcarrossel-nav { position: static; margin-bottom: 4px; } }

/* ── Carrossel ── */
.bcarrossel-wrap { width: 100%; }
.bcarrossel {
    display: flex; gap: 26px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    /* começa alinhado à borda esquerda do container de 1280px; o scroll-padding
       faz o snap respeitar esse recuo (sem ele, o snap cola o card na borda) */
    padding-left: calc(max((100vw - 1280px) / 2, 0px) + 24px);
    scroll-padding-left: calc(max((100vw - 1280px) / 2, 0px) + 24px);
    padding-right: 24px; padding-bottom: 26px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.bcarrossel::-webkit-scrollbar { display: none; }

.bcard {
    flex: 0 0 340px; scroll-snap-align: start;
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #ececec; border-radius: 18px; overflow: hidden;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s;
}
@media (max-width: 480px) { .bcard { flex-basis: 82vw; } }
.bcard:hover { transform: translateY(-7px) rotate(-0.4deg); box-shadow: 0 20px 40px rgba(36,41,62,.13); border-color: #dfe6a8; }
.bcard-capa { aspect-ratio: 16/9; overflow: hidden; background: #f2f2f2; }
.bcard-capa img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.bcard:hover .bcard-capa img { transform: scale(1.06); }
.bcard-capa.sem-capa { background: linear-gradient(135deg, #E4F64A, #d3ea1f); }
.bcard-corpo { padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bcard-cat {
    align-self: flex-start; font-family: var(--font-secondary); font-size: 11px; font-weight: 700;
    color: #6a7305; background: #f4fbce; padding: 4px 12px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: .5px;
}
.bcard-titulo { font-family: var(--font-main); font-size: 19px; font-weight: 700; color: #24293E; line-height: 1.3; margin: 0; letter-spacing: -0.3px; }
.bcard-resumo {
    font-family: var(--font-secondary); font-size: 14px; color: #777; line-height: 1.55; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bcard-rodape { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.bcard-data { font-family: var(--font-secondary); font-size: 12px; color: #aaa; }
.bcard-seta {
    width: 30px; height: 30px; border-radius: 50%; background: #f4f4f4; color: #24293E;
    display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
    transition: background .2s, color .2s, transform .2s;
}
.bcard:hover .bcard-seta { background: #E4F64A; transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
    .bhero-kicker, .bhero-linha, .bhero-sub, .bhero-seta { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .bcarrossel { scroll-behavior: auto; }
}

/* ===================== BLOG ===================== */
.blog-lista, .blog-post { padding: 120px 0 60px; background: #fff; }
.blog-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.blog-hero { text-align: center; margin-bottom: 48px; }
.blog-hero h1 { font-size: 42px; font-weight: 700; color: #24293E; margin-bottom: 14px; letter-spacing: -0.02em; }
.blog-hero p { font-size: 18px; color: #666; max-width: 560px; margin: 0 auto; line-height: 1.6; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } .blog-hero h1 { font-size: 32px; } }

.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #eee; border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.blog-card-capa { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: #f2f2f2; }
.blog-card-capa.sem-capa { background: linear-gradient(135deg, #E4F64A, #c8e020); }
.blog-card-corpo { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-titulo { font-size: 19px; font-weight: 600; line-height: 1.3; color: #24293E; }
.blog-card-resumo { font-size: 14px; color: #666; line-height: 1.55; flex: 1; }
.blog-card-data { font-size: 12px; color: #aaa; margin-top: 4px; }

.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.blog-cat-chip {
    font-family: var(--font-secondary); font-size: 13px; color: #555;
    padding: 7px 16px; border-radius: 999px; border: 1px solid #e2e2e2;
    text-decoration: none; transition: all .15s;
}
.blog-cat-chip:hover { border-color: #24293E; color: #24293E; }
.blog-cat-chip.ativa { background: #24293E; border-color: #24293E; color: #fff; }

.blog-card-cat {
    display: inline-block; font-family: var(--font-secondary); font-size: 11px;
    font-weight: 500; color: #6a7305; background: #f4fbce;
    padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}

.blog-post-cat {
    display: inline-block; font-family: var(--font-secondary); font-size: 12px;
    font-weight: 500; color: #6a7305; background: #f4fbce;
    padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; text-decoration: none;
}
.blog-post-cat:hover { background: #ecf6b3; }

.blog-vazio { text-align: center; color: #999; padding: 60px 0; font-size: 16px; }

.blog-voltar { display: inline-block; font-size: 14px; color: #888; text-decoration: none; margin-bottom: 20px; }
.blog-voltar:hover { color: #24293E; }
.blog-post-titulo { font-size: 40px; font-weight: 700; line-height: 1.2; color: #24293E; letter-spacing: -0.02em; margin-bottom: 12px; }
@media (max-width: 700px) { .blog-post-titulo { font-size: 30px; } }
.blog-post-meta { font-size: 14px; color: #aaa; margin-bottom: 28px; }
.blog-post-capa { width: 100%; border-radius: 16px; margin-bottom: 32px; }
.blog-post-corpo { font-size: 18px; line-height: 1.75; color: #333; }
.blog-post-corpo h2 { font-size: 28px; font-weight: 700; margin: 40px 0 14px; color: #24293E; }
.blog-post-corpo h3 { font-size: 22px; font-weight: 600; margin: 30px 0 12px; color: #24293E; }
.blog-post-corpo h4 { font-size: 19px; font-weight: 600; margin: 24px 0 10px; color: #24293E; }
.blog-post-corpo p { margin: 0 0 20px; }
.blog-post-corpo ul, .blog-post-corpo ol { margin: 0 0 20px 24px; }
.blog-post-corpo li { margin-bottom: 8px; }
.blog-post-corpo a { color: #2563eb; text-decoration: underline; }
.blog-post-corpo img { max-width: 100%; border-radius: 12px; margin: 10px 0; }
.blog-post-corpo blockquote { border-left: 4px solid #E4F64A; padding: 6px 0 6px 20px; margin: 0 0 20px; color: #555; font-style: italic; }
.blog-post-corpo code { background: #f2f2f2; padding: 2px 7px; border-radius: 5px; font-size: 15px; }
.blog-post-corpo pre { background: #24293E; color: #f2f2f2; padding: 18px; border-radius: 12px; overflow-x: auto; margin: 0 0 20px; }
.blog-post-corpo pre code { background: none; color: inherit; padding: 0; }
.blog-post-corpo hr { border: none; border-top: 1px solid #eee; margin: 32px 0; }

.blog-cta { margin-top: 56px; padding: 40px; background: #24293E; border-radius: 20px; text-align: center; }
.blog-cta h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.blog-cta p { font-size: 15px; color: #b8bcc9; margin-bottom: 22px; }
.blog-cta-btn { display: inline-block; background: #E4F64A; color: #24293E; padding: 14px 32px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.blog-cta-btn:hover { opacity: .9; }

/* Tabelas do blog */
.blog-post-corpo .tabela-wrap { overflow-x: auto; margin: 0 0 22px; -webkit-overflow-scrolling: touch; border-radius: 10px; }
.blog-post-corpo table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 15px; }
.blog-post-corpo thead th { background: #24293E; color: #fff; font-weight: 600; text-align: left; padding: 13px 16px; white-space: nowrap; }
.blog-post-corpo thead th:first-child { border-top-left-radius: 10px; }
.blog-post-corpo thead th:last-child { border-top-right-radius: 10px; }
.blog-post-corpo tbody td { padding: 12px 16px; border-bottom: 1px solid #eee; }
.blog-post-corpo tbody tr:nth-child(even) { background: #f7f7f8; }
.blog-post-corpo tbody tr.destaque { background: #f8fdd2; }
.blog-post-corpo tbody tr.destaque td { font-weight: 600; color: #24293E; }
.blog-post-corpo tbody tr.destaque td:first-child { box-shadow: inset 4px 0 0 #E4F64A; }
.blog-post-corpo .al-c { text-align: center; }
.blog-post-corpo .al-r { text-align: right; }
.blog-post-corpo .al-l { text-align: left; }

/* Compartilhamento do post */
.blog-share { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 26px; border-top: 1px solid #eee; }
.blog-share-label { font-size: 14px; color: #888; font-weight: 500; margin-right: 4px; }
.blog-share-btn { width: 42px; height: 42px; border-radius: 50%; border: none; background: #24293E; color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: transform .15s, background .15s, color .15s; }
.blog-share-btn:hover { transform: translateY(-2px); background: #E4F64A; color: #24293E; }
.blog-share-btn svg { width: 19px; height: 19px; }
.blog-share-copiado { font-size: 13px; color: #1a9b46; font-weight: 500; }
