:root {
    /* Identidade Feminina, Premium e Clínica - Direct Response */
    --primary-color: #FF4081;
    /* Rosa Pink Vibrante - Conversão */
    --primary-hover: #E0218A;
    --secondary-bg: #FCE4EC;
    /* Rosé Suave / Pink Pastel - Seções Destaque */
    --bg-main: #FFFFFF;
    /* Branco Clean */
    --bg-alt: #F8F9FA;
    /* Cinza Super Claro - Alternância */
    --text-main: #333333;
    /* Chumbo Escuro - Leitura Perfeita */
    --text-light: #666666;
    --accent-gold: #D4AF37;
    /* Dourado para a Garantia */
    --gold: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-solid: #D4AF37;

    --radius-soft: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.08);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Compensa o menu fixo para que não tampe o título */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

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

/* Utilities */
.botao-destaque-pink {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: var(--radius-soft);
    padding: 18px 42px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
    letter-spacing: 0.5px;
    text-align: center;
}

.botao-destaque-pink:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 12px 30px rgba(255, 64, 129, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.botao-pulsante {
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 64, 129, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 64, 129, 0.4);
    }
}

.section-padding {
    padding: 75px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-rose {
    background-color: var(--secondary-bg);
}

/* Navigation */
.main-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #E2E8F0;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF4081;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: none;
    border-radius: 6px;
}

/* Hero Section - Direct Response Layout */
.hero-section {
    background-color: var(--secondary-bg);
    padding: 50px 0 65px;
    position: relative;
    overflow: hidden; /* Garante que a imagem não ultrapasse a base */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hero-text-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.hero-content {
    /* Title and description wrapper */
    margin-bottom: 0;
}

.tagline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 32px;
    color: var(--text-main);
    line-height: 1.5;
    max-width: 600px;
}

/* Mockup 3D no Hero */
.hero-3d-mockup {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 48px;
    perspective: 2000px;
    transform-style: preserve-3d;
    height: 300px;
    /* Espaço para o leque */
    padding-left: 20px;
}

.hero-3d-mockup .document-card {
    width: 140px;
    /* Um pouco maior no Hero */
    aspect-ratio: 1 / 1.414;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
    margin-left: -110px;
    /* Sobreposição densa */
    transform: rotateY(-25deg) rotateX(15deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    background-color: #fff;
}

.hero-3d-mockup .document-card:first-child {
    margin-left: 0;
}

.hero-3d-mockup .document-card:hover {
    transform: translateY(-50px) rotateY(-25deg) rotateX(15deg);
    z-index: 100 !important;
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    /* Keep above if text overlaps */
}

.hero-image img {
    width: 140%;
    max-width: 800px;
    height: auto;
    display: block;
    transform: translateY(100px) scale(1.15);
    /* Pushes image down to touch/overlap the bottom section */
    transform-origin: bottom center;
    margin-right: -40px;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-main);
    line-height: 1.2;
}

/* Pain Section - Agitação da Dor */
.pain-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.pain-content {
    flex: 1;
}

.pain-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
    max-width: 900px; /* Evita que o título fique muito longo em telas ultra-wide */
}

.pain-title span {
    color: var(--primary-color);
}

.pain-items {
    list-style: none;
}

.pain-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.pain-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 4px;
}

.pain-item p {
    font-size: 1.1rem;
    color: var(--text-main);
}

.pain-card-wrapper {
    flex: 0.8;
}

.pain-card {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-float);
    border-left: 6px solid var(--primary-color);
}

.pain-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pain-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
    text-align: justify;
}

/* Solution Grid - Composição assimétrica: card 1 âncora à esquerda,
   cards 2 e 3 empilhados à direita, cards 4 e 5 lado a lado abaixo */
.entregaveis-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    gap: 32px;
}

.entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}
.entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}
.entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}

.entregavel-card-premium {
    background: var(--bg-main);
    border-radius: var(--radius-soft);
    padding: 32px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.entregavel-card-premium:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 60px rgba(255, 64, 129, 0.15);
    border-color: rgba(255, 64, 129, 0.2);
}

.card-header-destaque {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E0218A 100%);
    color: #FFFFFF;
    padding: 20px 24px;
    border-radius: 14px;
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.35);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.entregavel-card-premium:hover .card-header-destaque {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 64, 129, 0.45);
}

.card-header-destaque h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.entregavel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entregavel-list li {
    font-size: 1rem;
    color: var(--text-main);
    padding: 12px 12px 12px 36px;
    position: relative;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
}

.entregavel-list li:last-child {
    border-bottom: none;
}

.entregavel-list li:hover {
    background-color: rgba(255, 64, 129, 0.06);
    color: var(--primary-color);
    padding-left: 44px;
    transform: translateX(4px);
}

.entregavel-list li::before {
    content: '•';
    position: absolute;
    left: 14px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.entregavel-list li:hover::before {
    left: 18px;
    transform: translateY(-50%) scale(1.4);
    color: var(--primary-hover);
}

/* Li com bônus: flex para alinhar texto e selo lado a lado */
.li-com-bonus {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px;
}

.li-bonus-texto {
    flex: 1;
    line-height: 1.5;
}

/* Selo Bônus — mesmo formato estelar do selo vitalício, tamanho compacto */
.selo-bonus {
    flex-shrink: 0;
    position: relative;
    width: 64px;
    height: 64px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 54% 11%, 63% 6%, 66% 16%, 76% 14%, 77% 24%, 87% 24%, 85% 34%, 93% 36%, 89% 46%, 96% 50%, 89% 54%, 93% 64%, 85% 66%, 87% 76%, 77% 76%, 76% 86%, 66% 84%, 63% 94%, 54% 89%, 50% 100%, 46% 89%, 37% 94%, 34% 84%, 24% 86%, 23% 76%, 13% 76%, 15% 66%, 7% 64%, 11% 54%, 4% 50%, 11% 46%, 7% 36%, 15% 34%, 13% 24%, 23% 24%, 24% 14%, 34% 16%, 37% 6%, 46% 11%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4A3B13;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 4px 10px rgba(191, 149, 63, 0.5));
    overflow: hidden;
    z-index: 0;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.5s ease;
}

/* Hover desktop — mesmo comportamento do selo vitalício */
.selo-bonus:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 14px rgba(191, 149, 63, 0.65)) brightness(1.1);
}

/* Toque mobile / tablet */
.selo-bonus:active {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 6px 14px rgba(191, 149, 63, 0.65)) brightness(1.1);
}

/* Shimmer interno do selo */
.selo-bonus-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-200%) skewX(-20deg);
    animation: bonus-shimmer 3.5s infinite;
    pointer-events: none;
    z-index: 1;
}

/* Texto do selo fica acima do shimmer */
.selo-bonus-label {
    position: relative;
    z-index: 2;
}

@keyframes bonus-shimmer {
    0%   { transform: translateX(-200%) skewX(-20deg); }
    30%  { transform: translateX(350%) skewX(-20deg); }
    100% { transform: translateX(350%) skewX(-20deg); }
}


/* Transformação List - Premium Interactive Grid */
.transformacao-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    padding: 0;
}

.transformacao-list li {
    list-style: none;
    position: relative;
    padding: 16px 20px 16px 52px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
    background: transparent;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

/* Hover Effect: Background, Shadow and Slide */
.transformacao-list li:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateX(10px) scale(1.02);
    color: var(--primary-color);
    border-color: rgba(255, 64, 129, 0.1);
}

.transformacao-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    color: #2ECC71;
    /* Verde Sucesso Vibrante */
    font-weight: 800;
    font-size: 1.1rem;
    background: rgba(46, 204, 113, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.transformacao-list li:hover::before {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
}

/* Responsive adjustment for the list */
@media (max-width: 768px) {
    .transformacao-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Vantagens Section */
.vantagens-section {
    text-align: center;
}

.vantagens-box {
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 56px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #E2E8F0;
}

.vantagens-box ul {
    text-align: left;
    display: inline-block;
}

.vantagens-box ul li {
    list-style: none;
    margin-bottom: 16px;
    font-size: 1.1rem;
    padding-left: 28px;
    position: relative;
}

.vantagens-box ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
}

.testimonial-card {
    background: var(--bg-main);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* Redução de espaço solicitada (60%) */
#depoimentos {
    padding-bottom: 48px;
}

/* Oferta Section - Ancoragem de Preço */
.oferta-section {
    padding: 75px 0;
    background-color: var(--secondary-bg);
}

.oferta-card {
    background: var(--bg-main);
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-soft);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-float);
    position: relative;
}

.oferta-card h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.preco-caixa {
    margin: 24px 0;
}

.preco-de {
    font-size: 1.4rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.preco-por {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

/* Novos Estilos para Oferta Features */
.oferta-features {
    margin: 32px auto;
    max-width: 500px;
    text-align: left;
}

.oferta-features ul {
    list-style: none;
    padding: 0;
}

.oferta-features li {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.oferta-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Staggered entrance for list items inside cards when card becomes visible */
.entregavel-list li {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s ease;
}

.reveal.visible .entregavel-list li {
    opacity: 1;
    transform: translateX(0);
}

.entregavel-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.entregavel-list li:nth-child(2) {
    transition-delay: 0.15s;
}

.entregavel-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.entregavel-list li:nth-child(4) {
    transition-delay: 0.25s;
}

.entregavel-list li:nth-child(5) {
    transition-delay: 0.3s;
}

.entregavel-list li:nth-child(6) {
    transition-delay: 0.35s;
}

.entregavel-list li:nth-child(7) {
    transition-delay: 0.4s;
}

.entregavel-list li:nth-child(8) {
    transition-delay: 0.45s;
}

.entregavel-list li:nth-child(9) {
    transition-delay: 0.5s;
}

.entregavel-list li:nth-child(10) {
    transition-delay: 0.55s;
}

.oferta-info {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Animações de Revelação (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay staggered for cards */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Garantia Blindada */
.garantia-faixa {
    background: var(--gold);
    padding: 60px 0;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.3);
}

.garantia-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.garantia-item i {
    font-size: 4rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.garantia-text h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 4px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.garantia-text p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.garantia-divider {
    width: 2px;
    height: 70px;
    background: rgba(255, 255, 255, 0.3);
}

/* Selo Dourado Moderno de Acesso Vitalício */
.modern-gold-seal-wrapper {
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    margin: 20px 0;
}

.modern-gold-seal {
    width: 170px;
    height: 170px;
    background: var(--gold);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 20-Point Starburst Shape */
    clip-path: polygon(50% 0%, 54% 11%, 63% 6%, 66% 16%, 76% 14%, 77% 24%, 87% 24%, 85% 34%, 93% 36%, 89% 46%, 96% 50%, 89% 54%, 93% 64%, 85% 66%, 87% 76%, 77% 76%, 76% 86%, 66% 84%, 63% 94%, 54% 89%, 50% 100%, 46% 89%, 37% 94%, 34% 84%, 24% 86%, 23% 76%, 13% 76%, 15% 66%, 7% 64%, 11% 54%, 4% 50%, 11% 46%, 7% 36%, 15% 34%, 13% 24%, 23% 24%, 24% 14%, 34% 16%, 37% 6%, 46% 11%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-gold-seal-wrapper:hover .modern-gold-seal {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.1);
}

.seal-inner-border {
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: seal-shimmer 5s infinite linear;
}

@keyframes seal-shimmer {
    0% { left: -150%; }
    25% { left: 250%; } /* Sweep rápido */
    100% { left: 250%; } /* Espera */
}

.seal-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4A3B13; /* Marrom escuro para contraste com ouro */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.seal-content i {
    font-size: 3rem !important;
    margin-bottom: -5px;
    color: #4A3B13 !important;
    text-shadow: none !important;
}

.seal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-align: center;
}

.seal-main {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.seal-sub {
    font-size: 0.55rem;
    font-weight: 800;
    margin-top: 4px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    padding: 75px 0;
    background-color: var(--bg-alt);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    border-radius: var(--radius-soft);
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fbfbfb;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Redução de espaço solicitada (60%) */
#autoridade {
    padding-top: 48px;
}

/* Autoridade Section - Circular & Gold Design */
.autoridade-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-main);
    border-radius: var(--radius-soft);
    padding: 80px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.autoridade-image-wrapper {
    position: relative;
    flex: 0 0 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autoridade-photo-circular {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 70%;
    /* Subindo a foto para aparecer a base (livros) */
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: transform 0.5s ease;
}

.gold-ring {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: var(--gold);
    z-index: 1;
    animation: rotateGold 10s linear infinite;
    padding: 3px;
}

.gold-ring::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--bg-main);
    border-radius: 50%;
    z-index: -1;
}

@keyframes rotateGold {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.autoridade-container:hover .autoridade-photo-circular {
    transform: scale(1.05);
}

.autoridade-text {
    flex: 1;
}

.autoridade-text p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--bg-alt);
    border-top: 1px solid #E2E8F0;
    padding: 40px 0;
    text-align: center;
}

.footer-copy {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section {
        padding: 75px 0 50px; /* Reduzi mais 15% (era 90px / 60px) */
        overflow: hidden;
    }

    .hero-container,
    .pain-grid,
    .autoridade-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text-side {
        display: contents; /* Allows direct children to be ordered by the container */
    }

    .hero-content {
        order: 1; /* Title and Subtitle first */
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image {
        order: 2; /* Photo second */
    }

    .hero-image img {
        max-width: 400px;
        transform: translateX(-18px) translateY(50px) scale(1.15); /* Ajustado 7px para a direita (total -18px) */
    }

    .cta-wrapper {
        order: 3; /* Button last (below photo) */
        position: relative;
        z-index: 10;
        margin-top: -50px; /* Cria a sobreposição com a imagem */
    }

    .hero-content p {
        text-align: justify;
    }

    .pain-item p,
    .autoridade-text p,
    .testimonial-text,
    .faq-answer p {
        text-align: justify;
    }

    .pain-items {
        text-align: left;
    }

    .autoridade-image-wrapper {
        flex: 0 0 auto;
        width: 300px;
        height: 300px;
    }

    .autoridade-photo-circular {
        width: 260px;
        height: 260px;
    }

    .gold-ring {
        width: 290px;
        height: 290px;
    }

    .hide-mobile {
        display: none;
    }

    /* Scroll Highlight Focus effect for Mobile */
    .transformacao-list li,
    .pain-item {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.5;
        transform: scale(0.96);
        border-radius: 30px;
        margin-bottom: 12px;
        border: 1px solid transparent;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .transformacao-list li.highlight-focus,
    .pain-item.highlight-focus {
        opacity: 1;
        transform: scale(1.02);
        color: var(--primary-color);
        background: rgba(255, 64, 129, 0.05); /* Fundo rosa suave */
        border: 1px solid rgba(255, 64, 129, 0.15);
        box-shadow: 0 5px 20px rgba(255, 64, 129, 0.05);
    }

    /* Ajuste do Ícone de Check no Foco */
    .transformacao-list li.highlight-focus::before {
        background: var(--primary-color) !important; /* Rosa sólido */
        color: #FFFFFF !important; /* Check branco */
        box-shadow: 0 0 12px rgba(255, 64, 129, 0.4); /* Glow rosa */
        border: none;
    }
}

@media (max-width: 576px) {
    .autoridade-container {
        padding: 40px 20px;
    }

    .autoridade-image-wrapper {
        width: 250px;
        height: 250px;
    }

    .autoridade-photo-circular {
        width: 200px;
        height: 200px;
    }

    .gold-ring {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .entregaveis-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .entregaveis-grid-2x2 > .entregavel-card-premium:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .preco-por {
        font-size: 3.5rem;
    }

    .oferta-card {
        padding: 40px 20px;
    }

    .garantia-container {
        flex-direction: column;
        gap: 15px;
    }

    /* Redução de espaço mobile (60%) */
    #depoimentos {
        padding-bottom: 32px;
    }
    #autoridade {
        padding-top: 32px;
    }
}

/* ==========================================================================
   VITRINE DE DOCUMENTOS POR CATEGORIA + MODAL DE ZOOM
   ========================================================================== */

.documents-section {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.documents-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

/* Coluna de categorias */
.documents-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-main);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    padding: 16px;
    position: sticky;
    top: 100px;
}

.doc-category {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.doc-category__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.25;
}

.doc-category__desc {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-light);
    transition: color 0.25s ease;
}

.doc-category:hover {
    background: rgba(255, 64, 129, 0.06);
    border-color: rgba(255, 64, 129, 0.15);
    transform: translateX(3px);
}

.doc-category.is-active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.25);
    transform: translateX(0);
    border-color: transparent;
}

.doc-category.is-active .doc-category__desc {
    color: rgba(255, 255, 255, 0.88);
}

/* Painel da direita */
.documents-panel {
    background: var(--bg-main);
    border-radius: 20px;
    box-shadow: var(--shadow-float);
    padding: 36px;
    transition: opacity 0.18s ease;
}

.documents-panel.is-fading {
    opacity: 0;
}

.documents-panel__header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.documents-panel__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px;
}

.documents-panel__description {
    color: var(--text-light);
    font-size: 0.98rem;
    margin: 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 22px;
}

/* Card de documento */
.doc-card {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-soft);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--bg-main);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    font-family: inherit;
    color: inherit;
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
}

.doc-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.doc-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.doc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Marca d'água permanente nos cards com imagem — ocupa ~45% da área */
.doc-card:not(.doc-card--placeholder)::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Logo/logo-borboleta-eb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 101.25%;
    opacity: 0.32;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
}

.doc-card__label {
    z-index: 3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 14px 12px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    line-height: 1.25;
}

/* Placeholder elegante */
.doc-card--placeholder {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7F8 100%);
    border: 1px dashed rgba(255, 64, 129, 0.35);
    cursor: zoom-in;
}

.doc-card--placeholder .doc-card__label {
    color: var(--text-main);
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0) 100%);
}

.doc-card__placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 64, 129, 0.55);
    padding: 20px 16px 52px;
}

.doc-card__placeholder-inner svg {
    width: 42px;
    height: auto;
}

.doc-card__placeholder-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* Modal */
.doc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 10, 20, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    padding: 40px;
}

.doc-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.doc-modal__content {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 92vw;
    max-height: 92vh;
}

.doc-modal__image-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.doc-modal__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Logo/logo-borboleta-eb.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 101.25%;
    opacity: 0.32;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.doc-modal__image {
    max-width: 90vw;
    max-height: 78vh;
    display: block;
    background: #fff;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.doc-modal__placeholder {
    width: min(420px, 85vw);
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7F8 100%);
    border: 1px dashed rgba(255, 64, 129, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 64, 129, 0.6);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.doc-modal__placeholder svg {
    width: 64px;
    height: auto;
}

.doc-modal__placeholder span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
}

.doc-modal__caption {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-align: center;
    max-width: 80vw;
    padding: 10px 24px 12px;
    background: rgba(30, 10, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-top: 16px;
}

.doc-modal__close,
.doc-modal__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    border: 1px solid rgba(255, 64, 129, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
    font-family: var(--font-heading);
    line-height: 1;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.doc-modal__close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
}

.doc-modal__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
}

.doc-modal__nav--prev { left: 24px; }
.doc-modal__nav--next { right: 24px; }

.doc-modal__close:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(255, 64, 129, 0.35);
}

.doc-modal__nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(255, 64, 129, 0.35);
}

/* Responsivo: tablet */
@media (max-width: 1024px) {
    .documents-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .documents-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 12px;
        gap: 10px;
        position: static;
        scrollbar-width: thin;
    }

    .doc-category {
        flex: 0 0 auto;
        min-width: 220px;
        padding: 12px 14px;
    }

    .doc-category:hover {
        transform: none;
    }

    .documents-panel {
        padding: 28px 24px;
    }
}

/* Responsivo: mobile */
@media (max-width: 640px) {
    .documents-nav {
        padding: 10px;
        gap: 8px;
    }

    .doc-category {
        min-width: 180px;
        padding: 10px 12px;
    }

    .doc-category__title { font-size: 0.9rem; }
    .doc-category__desc { font-size: 0.72rem; }

    .documents-panel {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .documents-panel__title { font-size: 1.4rem; }
    .documents-panel__description { font-size: 0.9rem; }

    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .doc-card__label {
        font-size: 0.72rem;
        padding: 20px 10px 10px;
    }

    .doc-modal {
        padding: 16px;
    }

    .doc-modal__image {
        max-height: 70vh;
    }

    .doc-modal__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .doc-modal__nav {
        top: auto;
        bottom: 20px;
        transform: none;
        width: 44px;
        height: 44px;
    }

    .doc-modal__nav--prev {
        left: calc(50% - 54px);
    }

    .doc-modal__nav--next {
        right: calc(50% - 54px);
    }

    .doc-modal__nav:hover {
        transform: scale(1.06);
    }

    .doc-modal__caption {
        font-size: 0.88rem;
        margin-bottom: 70px;
    }
}

/* Rodapé Principal */
.main-footer {
    background-color: var(--bg-alt);
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.social-icon {
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.instagram {
    color: var(--primary-color);
}

.social-icon.tiktok {
    color: var(--text-main);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.instagram:hover {
    color: #E1306C;
}

.social-icon.tiktok:hover {
    color: #000000;
}

.footer-copy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 16px;
    opacity: 0.8;
    font-size: 0.85rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.footer-legal .footer-cookie-link {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .footer-copy {
        flex-direction: column;
        gap: 6px;
    }
    .footer-legal {
        flex-direction: column;
        gap: 4px;
        margin-top: 2px;
    }
}

.footer-logo {
    height: 24px;
    width: auto;
}

/* Sub-Footer (Assinatura) */
.sub-footer {
  height: 50px;
  background-color: var(--text-main);
  color: var(--bg-main) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.sub-footer:hover {
  background-color: #222;
  opacity: 0.95;
}
.sub-footer p {
  color: var(--bg-main);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}
.sub-logo-light, .sub-logo-dark {
  display: none;
  height: 24px;
  width: auto;
  transform: translateY(-3px);
}
.sub-logo-light {
  display: block;
}
