:root {
    --bg-color: #f9f9f9;
    --primary-pink: #f3675e;
    --primary-orange: #f3675e;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --white: #ffffff;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --border-radius-lg: 28px;
    --border-radius-sm: 16px;
    --container-width: 1100px;

    /* Mobile First Typography Tokens */
    --headline-size: clamp(2.4rem, 8vw, 3.8rem);
    --subtitle-size: clamp(1.2rem, 4vw, 1.6rem);
    --body-size: clamp(1.1rem, 3vw, 1.25rem);
    --small-size: clamp(0.9rem, 2.5vw, 1rem);

    /* Spacing Tokens */
    --section-padding: clamp(60px, 12vh, 120px);
    --element-gap: clamp(20px, 5vh, 40px);
    --title-margin: 20px;
    --subtitle-margin: clamp(40px, 8vh, 60px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    font-size: var(--headline-size);
    margin-bottom: var(--title-margin);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-wrap: balance;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--subtitle-size);
    margin-bottom: var(--subtitle-margin);
    font-weight: 500;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-wrap: balance;
}

/* Urgency Bar */
.urgency-bar {
    background: #ef5d8d;
    color: #000000;
    /* Changed from white */
    text-align: center;
    padding: 15px 0;
    /* Aumentado como pedido */
    font-weight: 700;
    font-size: 1rem;
    /* Aumentado */
    position: relative;
    /* Mudado de sticky para relative para ficar parada no topo */
    z-index: 1000;
    letter-spacing: -0.3px;
}

/* Hero Section */
.hero {
    text-align: center;
    background: var(--bg-color);
    padding-top: 50px;
    /* Restored from 35px */
    padding-bottom: 60px;
    /* Restored from 30px to breathe */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.headline {
    font-size: var(--headline-size);
    line-height: 1.1;
    margin-bottom: var(--title-margin);
    color: var(--text-dark);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-wrap: balance;
}

.highlight-pink {
    color: #f3675e;
    /* User requested color */
    font-weight: 800;
}

.highlight-orange {
    color: var(--primary-orange);
    font-weight: 800;
}

.highlight-eva {
    color: var(--primary-orange);
    font-weight: 800;
}

/* Benefits bar inside hero */
.receive-hero-footer {
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 40px;
}

.receive-benefits {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.benefit-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.highlight-mix {
    color: #f3675e;
    font-weight: 800;
}

.subheadline {
    font-size: var(--subtitle-size);
    color: var(--text-muted);
    margin-bottom: var(--subtitle-margin);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.4;
}

.vsl-container {
    max-width: 420px;
    margin: 0 auto 35px;
    /* Restored from 15px to avoid being too close to the footer */
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.vsl-wrapper {
    aspect-ratio: 2/3;
    /* Mais comprido conforme pedido */
    background: #000;
    position: relative;
    cursor: pointer;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vsl-wrapper.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

.vsl-wrapper.playing:hover .play-button {
    opacity: 0.8 !important;
    pointer-events: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.35);
    /* Increased contrast for black text */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #000000;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.play-button i {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    /* Ajuste para centralizar visualmente o triângulo */
    fill: #000000;
}

.play-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #000000;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-button i {
    width: 32px;
    height: 32px;
    margin-left: 5px;
}

.vsl-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.social-proof-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1rem;
    /* Aumentei um pouco */
}

.live-text {
    font-size: 0.95rem;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border-radius: 50%;
    position: relative;
}

.live-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #ff3b30;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Carousel Styles */
.receive-section {
    background-color: var(--bg-color);
    /* Lavanda suave */
    padding: 80px 0;
    /* Restored from 30px */
}

.carousel-container {
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 280px;
    scroll-snap-align: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Garante que a imagem inteira apareça */
    border-radius: var(--border-radius-sm);
    box-shadow: var(--card-shadow);
}

.carousel-item h3 {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Quick Benefits */
.quick-benefits {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-grid-small {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(243, 103, 94, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #fbf9ff;
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    /* Reduced from 20px */
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    display: block;
    margin: 0 auto;
    max-width: 450px;
    /* Increased from 320px for better visibility */
}

/* Os itens do carrossel de depoimentos herdam o comportamento do track principal */
#whatsapp-carousel .carousel-item {
    padding: 0 15px;
    min-width: 320px;
    /* Increased from default 280px to give images more room */
}

.categories-section {
    padding: var(--section-padding) 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Increased from 20px */
    margin: 60px auto;
    /* Increased from 40px */
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    background: #f8f4f9;
    /* Fundo lavanda suave como na imagem */
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.category-icon i,
.category-icon svg {
    width: 60px !important;
    height: 60px !important;
    stroke-width: 2px !important;
}

/* Cores dos ícones baseadas na imagem */
.icon-pink {
    color: #ef5d8d;
}

.icon-orange {
    color: #f3675e;
}

.icon-purple {
    color: #b19cd9;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #444;
}

.and-more {
    text-align: center;
    margin-top: 35px;
    font-weight: 700;
    font-size: 1rem;
    color: #ef5d8d;
}

/* Detailed Benefits */
/* Kit Content Style (Exatamente igual à PRIMEIRA imagem) */
.benefits-detailed {
    background-color: #fdfafd;
    padding: var(--section-padding) 0;
}

.kit-section-title {
    text-align: center;
    font-size: var(--headline-size);
    margin-bottom: var(--title-margin);
    color: #000000;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    /* Cinza médio suave */
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 400;
}

.kit-content-card {
    background: white;
    max-width: 850px;
    margin: 50px auto 0;
    padding: 70px 90px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

.kit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kit-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--body-size);
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.kit-icon {
    color: #16a249;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .kit-content-card {
        padding: 40px 25px;
        margin: 0 15px;
    }
}


/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    background: white;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
}

.price-card.popular {
    border-color: var(--primary-orange);
    transform: none;
    /* Removida animação e escala */
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f3675e;
    color: #000000;
    /* Changed from white */
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(243, 103, 94, 0.3);
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.social-stat {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    display: block;
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.current-price {
    font-size: 4.5rem;
    /* Mais próximo da imagem */
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.payment-type {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

.savings-text {
    color: #28a745;
    /* Verde da economia */
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
}

.check-green {
    color: #28a745;
    stroke-width: 3px;
}

.gift-icon {
    color: #28a745;
    stroke-width: 3px;
}

.btn-gradient {
    background: linear-gradient(to right, #ef5d8d, #f3675e);
    color: #ffffff;
    width: 100%;
    padding: 24px 32px;
    border-radius: 60px;
    border: none;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(239, 93, 141, 0.35);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gradient:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(239, 93, 141, 0.4);
    filter: brightness(1.1);
}

.plan-list {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 0;
}

/* Banner Upsell Interno no Card */
.upsell-card-banner {
    background: #000;
    margin: 15px -40px 0 -40px;
    padding: 20px 10px;
    text-align: center;
}

.upsell-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.upsell-arrow-icon {
    color: #f3675e;
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
}

.upsell-text-content {
    flex: 1;
}

.upsell-title {
    color: #f3675e;
    font-size: 0.9rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 5px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.upsell-subtitle {
    color: #fff;
    font-size: 0.8rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
}

.text-green {
    color: #28a745;
    font-weight: 800;
}

@media (max-width: 480px) {
    .upsell-title {
        font-size: 0.8rem;
    }

    .upsell-subtitle {
        font-size: 0.7rem;
    }
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: var(--body-size);
    color: var(--text-dark);
    font-weight: 500;
}

.plan-list li i {
    color: #34c759;
    width: 20px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: #000000;
    box-shadow: 0 10px 20px rgba(243, 103, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 103, 94, 0.4);
    background: #d45952;
}

.btn-outline {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: #000000;
}

.btn-large {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.4rem;
    padding: 24px 40px;
}

.btn-orange {
    background: var(--primary-orange);
    color: #000000;
}

/* Pulse animation */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Kit Content */
.content-list-wrapper {
    background: #000000;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.content-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.content-list li i {
    color: var(--primary-orange);
}

/* Guarantee */
/* Guarantee Section (Matching Image) */
/* Guarantee Section - EXACT REPLICA of Reference Image */
.guarantee-section {
    padding: var(--section-padding) 0;
    text-align: center;
    background-color: white;
}

.guarantee-main-headline {
    font-size: var(--headline-size);
    line-height: 1.1;
    color: #28a745;
    font-weight: 900;
    margin-bottom: var(--subtitle-margin);
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.guarantee-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.guarantee-card {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
    background: #f0f5ff;
    /* Azulado sutil da imagem */
    padding: 60px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-card-icon {
    width: 70px;
    height: 70px;
    background-color: #1f5edb;
    /* Azul royal dos ícones */
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.guarantee-card-icon i {
    width: 32px;
    height: 32px;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.guarantee-card p {
    font-size: var(--body-size);
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.btn-round {
    background-color: #16a34a;
    /* Verde da imagem */
    color: #000000;
    border-radius: 100px;
    padding: 24px 60px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
}

.btn-round:hover {
    transform: translateY(-10px) scale(1.06);
    background-color: #148f41;
    box-shadow: 0 20px 45px rgba(22, 163, 74, 0.4);
}

@media (max-width: 768px) {
    .guarantee-main-headline {
        font-size: 2.2rem;
    }

    .guarantee-grid {
        gap: 20px;
        margin-bottom: 40px;
    }

    .guarantee-card {
        padding: 40px 20px;
    }

    .btn-round {
        padding: 20px 24px;
        font-size: 1.2rem;
        width: 100%;
        border-radius: 20px;
    }
}

/* Final CTA Removal */
.final-cta {
    display: none;
}


footer {
    background: #fdfafd;
    /* Light background for black text */
    color: #000000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: clamp(50px, 8vh, 80px) 0;
    }

    .headline {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
        line-height: 1.15;
    }

    .subheadline {
        font-size: 1.125rem;
        padding: 0 5px;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .pricing-grid {
        gap: 40px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .btn-gradient {
        font-size: 1.15rem;
        padding: 20px;
    }
}

/* Purchase Notification (Toast) */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    max-width: 350px;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    font-size: 0.85rem;
    color: #4a3a3a;
}

.purchase-notification.show {
    transform: translateY(0);
}

.pn-icon {
    width: 32px;
    height: 32px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pn-content {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.pn-content b {
    color: var(--text-dark);
    font-weight: 700;
}

.pn-plan-name {
    color: var(--primary-pink);
    font-weight: 700;
}

.pn-time {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Category Pill (Receber Section) */
.pill-badge {
    background: #f3675e;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

/* Benefit Dots */
.quick-benefits {
    background: transparent;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 30px;
}

.benefit-grid-small {
    display: flex;
    justify-content: center;
    gap: 25px;
    /* Mais próximos como na imagem */
    flex-wrap: wrap;
}

.benefit-dot {
    width: 10px;
    height: 10px;
    background: #16a249;
    /* Cor exata pedida */
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    /* Texto suave como na imagem */
    font-weight: 400;
}

/* Red Dot Live */
.live-indicator {
    width: 10px;
    height: 10px;
    background: #ff3b30;
    border-radius: 50%;
    position: relative;
}

.social-proof-live {
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Category highlight adjustments */
.category-card {
    background: #fdfbff;
}

.category-icon {
    border-radius: 15px;
    margin-bottom: 10px;
}

.category-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #f3675e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #f3675e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.carousel-btn:active {
    transform: scale(0.9);
}

.carousel-container,
.testimonial-carousel {
    flex-grow: 1;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scroll-behavior: smooth;
}

.carousel-container::-webkit-scrollbar,
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.carousel-item {
    flex: 0 0 400px;
    /* Cards maiores no Desktop */
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: center;
    background: white;
    padding: 12px;
    /* Reduzido para imagem aparecer mais */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 92%;
        /* No mobile, ocupa quase a tela toda */
        margin: 0 5px;
    }
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Faz a imagem preencher o card */
    border-radius: 12px;
    margin-bottom: 5px;
    background: #fdfdfd;
}

/* Specific adjustment for Testimonial Carousel (Whatsapp Screenshots) */
#whatsapp-carousel .carousel-item {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

#whatsapp-carousel .carousel-item img {
    aspect-ratio: auto !important;
    object-fit: initial !important;
    background: transparent !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    max-height: 600px;
}

.molde-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    /* Remove espaço entre as fotos para parecer uma folha única */
    width: 100%;
    max-width: 420px;
}

.molde-stack img {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
    /* Divisão nítida */
}


/* Molde Digital (Letras geradas por código) */
.molde-digital {
    width: 95%;
    max-width: 420px;
    aspect-ratio: 9/13;
    /* Formato de papel vertical */
    background: #000000;
    border: 1px solid #ddd;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 30px;
    gap: 15px;
    border-radius: 4px;
}

.molde-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 140px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 3px #1d1d1f;
    /* Contorno preto nítido */
    line-height: 1;
}

@media (max-width: 768px) {
    .molde-letter {
        font-size: 100px;
        -webkit-text-stroke: 2px #1d1d1f;
    }
}

/* Discount Popup Styled to Match Image */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.discount-popup {
    background: white;
    width: 100%;
    max-width: 420px;
    /* Diminuído de 480px para caber melhor */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: popupAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    /* Garante que não ultrapasse a altura da tela */
    overflow-y: auto;
    /* Permite scroll interno se necessário */
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    background: linear-gradient(135deg, #ef5d8d 0%, #f3675e 100%);
    color: var(--text-dark);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popup-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-header h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popup-body {
    padding: 35px 30px;
    text-align: center;
}

.popup-intro {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.discount-box {
    border: 3px solid #ef5d8d;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    background: #fff9fb;
    position: relative;
}

.discount-offer-text {
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.discount-old-price {
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.discount-new-price {
    font-size: 5rem;
    font-weight: 800;
    color: #ef5d8d;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    line-height: 1;
}

.discount-new-price span {
    font-size: 1.8rem;
    font-weight: 700;
}

.discount-footer-text {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

.valid-today {
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to right, #ef5d8d, #f3675e);
    color: white;
    text-decoration: none;
    padding: 22px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 12px 25px rgba(239, 93, 141, 0.4);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.popup-cta:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(239, 93, 141, 0.6);
}

.popup-decline {
    display: block;
    background: #fdfdfd;
    color: #888;
    text-decoration: none;
    padding: 18px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #eee;
    transition: background 0.2s;
}

.popup-decline:hover {
    background: #f5f5f5;
}

@media (max-width: 480px) {
    .discount-popup {
        max-width: 100%;
    }

    .discount-new-price {
        font-size: 4rem;
    }

    .popup-header h2 {
        font-size: 1.6rem;
    }
}

/* About Author Section */
.about-author {
    padding: var(--section-padding) 0;
    background-color: #f3675e;
}

.about-author .author-title,
.about-author .author-title span,
.about-author .author-name,
.about-author .author-subtitle,
.about-author .stat-number,
.about-author .stat-text,
.about-author .author-quote {
    color: #000000 !important;
}

.about-author .author-quote-container {
    border-left-color: #000000;
    background: rgba(0, 0, 0, 0.05);
}

.author-title {
    text-align: center;
    font-size: var(--headline-size);
    margin-bottom: var(--subtitle-margin);
    font-weight: 800;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.author-image-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.author-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    text-align: center;
}

.author-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.author-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.stat-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-author h2,
.about-author h3,
.about-author p,
.about-author span {
    color: var(--text-dark) !important;
}

.author-quote-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 40px;
    border-left: 5px solid #000000;
    text-align: left;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0 20px 20px 0;
}

.author-quote {
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.7;
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .about-author {
        padding: 70px 0;
    }

    .author-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .author-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .author-quote {
        font-size: 1.15rem;
    }

    .author-name {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: white;
}

.faq-title {
    text-align: center;
    font-size: var(--headline-size);
    margin-bottom: var(--title-margin);
    font-weight: 800;
    color: var(--text-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.faq-subtitle {
    text-align: center;
    font-size: var(--subtitle-size);
    color: var(--text-muted);
    margin-bottom: var(--subtitle-margin);
    font-weight: 500;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fafcff;
}

.faq-question span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    font-family: 'Outfit', sans-serif;
}

.faq-question i {
    color: #1f5edb;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    padding: 0 30px;
    font-size: var(--body-size);
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 1rem;
        padding-right: 15px;
    }
}

/* Exclusive Benefits Section */
.exclusive-benefits {
    background-color: #f3675e;
    padding: var(--section-padding) 0;
    text-align: center;
}

.exclusive-benefits .exclusive-title,
.exclusive-benefits .exclusive-card h3,
.exclusive-benefits .exclusive-card p {
    color: #000000 !important;
}

.exclusive-benefits .exclusive-card {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.exclusive-benefits .exclusive-icon-wrapper {
    background: #000000;
    color: #f3675e;
}

.exclusive-title {
    font-size: var(--headline-size);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #000000;
    margin-bottom: var(--subtitle-margin);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.exclusive-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 70px 40px;
    /* Alinhado com a imagem (mais alto e largo) */
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* Changed from white edge */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    /* Garante o formato retangular elegante da foto */
    justify-content: center;
    color: #000000;
    /* Force all text to black */
}

.exclusive-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.18);
}

.exclusive-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #00e676;
    color: #000000;
    /* Changed from white for visibility */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3);
}

.exclusive-icon-wrapper i,
.exclusive-icon-wrapper svg {
    width: 38px !important;
    height: 38px !important;
    stroke-width: 2.5px;
}

.exclusive-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000000;
    /* Changed from #ffffff */
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.exclusive-card p {
    font-size: var(--body-size);
    color: #000000;
    line-height: 1.5;
    font-weight: 500;
}

.exclusive-benefits h3,
.exclusive-benefits p,
.exclusive-benefits li,
.exclusive-benefits span {
    color: #000000 !important;
}

@media (max-width: 992px) {
    .exclusive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exclusive-card {
        padding: 50px 25px;
        min-height: auto;
    }

    .exclusive-title {
        font-size: 2.22rem;
        margin-bottom: 40px;
    }

    .exclusive-benefits {
        padding: 60px 0;
    }
}

/* Bonus Exclusivos Section */
.bonus-section {
    padding: var(--section-padding) 0;
    background-color: #ffffff;
}

.bonus-header {
    text-align: center;
    margin-bottom: var(--subtitle-margin);
}

.bonus-title {
    font-size: var(--headline-size);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--title-margin);
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.bonus-subtitle {
    font-size: var(--subtitle-size);
    color: #444;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.val-highlight {
    color: #333;
    background: #fdfafd;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.gratis-highlight {
    color: #22c55e;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-left: 5px;
    text-shadow: 0 4px 10px rgba(34, 197, 94, 0.1);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ef8faf;
    box-shadow: 0 25px 50px rgba(239, 143, 175, 0.15);
}

.bonus-image-container {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
    padding: 20px;
    /* Space to ensure image fits without cropping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures the whole image is visible as requested */
    display: block;
}

.bonus-card-content {
    padding: 30px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bonus-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
}

.bonus-card p {
    font-size: var(--body-size);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.bonus-value-tag {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ff3b30;
    text-decoration: line-through;
    margin-top: auto;
}

.bonus-footer {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: #fdfafd;
    border-radius: 40px;
    border: 2px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bonus-total-text {
    font-size: 2rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.total-price-strike {
    color: #ff3b30;
    text-decoration: line-through;
}

.bonus-urgency-box {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.gratis-final {
    font-size: 4rem;
    color: #22c55e;
    font-weight: 950;
    display: block;
    margin-top: 20px;
    letter-spacing: -2px;
    text-shadow: 0 10px 20px rgba(34, 197, 94, 0.15);
}

@media (max-width: 992px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .bonus-title {
        font-size: 2.2rem;
    }

    .bonus-subtitle {
        font-size: 1.2rem;
    }

    .gratis-final {
        font-size: 3rem;
    }
}

/* Pulse Animation for Premium Button */
@keyframes pulse-premium {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 103, 94, 0.4);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(243, 103, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 103, 94, 0);
    }
}

#btn-premium {
    animation: pulse-premium 2s infinite;
    position: relative;
    z-index: 1;
}

#btn-premium:hover {
    animation: none;
    transform: scale(1.05);
}