/* =====================================================
   PLAYFUL GEOMETRIC DESIGN SYSTEM
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* =============================================
       WARM EARTHY PALETTE — Bíblia Brasil
       Inspired by: brick red, burnt orange,
       amber gold, warm brown, parchment cream
       ============================================= */

    /* Core tokens */
    --bg: #FAF3E8;
    /* Parchment / warm cream */
    --fg: #2C1810;
    /* Deep espresso brown */
    --muted: #F0E4CC;
    /* Warm off-white */
    --muted-fg: #7A5C40;
    /* Warm sienna-gray */
    --accent: #16a34a;
    /* Vibrant Green — primary brand */
    --accent-fg: #FFFFFF;
    --secondary: #22c55e;
    /* Brighter Green */
    --tertiary: #ffd900;
    /* Amber Gold */
    --quaternary: #8B6B35;
    /* Warm Brown */
    --border: #D4BFA0;
    /* Tan border */
    --card: #FFFDF5;
    /* Near-white card */
    --ring: #B33520;

    /* Legacy aliases */
    --primary-blue: #16a34a;
    --primary-green: #22c55e;
    --dark-blue: #15803d;
    --dark-green: #14532d;
    --light-gray: #F0E4CC;
    --dark-gray: #2C1810;
    --border-color: #D4BFA0;
    --yoga-purple: #16a34a;
    --yoga-sage: #8B6B35;
    --yoga-lavender: #22c55e;
    --yoga-coral: #C4882A;
    --yoga-gold: #C4882A;

    /* Shadows — use deep brown instead of slate */
    --shadow-pop: 4px 4px 0px 0px #2C1810;
    --shadow-pop-lg: 8px 8px 0px 0px #2C1810;
    --shadow-pop-hover: 6px 6px 0px 0px #2C1810;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', system-ui, sans-serif;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Topo com Aviso de Urgência */
@keyframes banner-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.urgency-banner {
    background: #16a34a;
    /* Cherry-red: vibrant but not eye-straining */
    color: #fff;
    padding: 14px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    border-bottom: 3px solid #2C1810;
}

.urgency-text {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgency-text .date-highlight {
    color: var(--tertiary);
    font-weight: 800;
}

/* Hero Section */
.hero {
    background: var(--bg);
    color: var(--fg);
    padding: 80px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot-grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

/* Floating deco circles */
/* .hero::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: var(--tertiary);
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
} */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes purple-glow-pulse {

    0%,
    100% {
        text-shadow:
            0 0 8px rgba(124, 58, 237, 0.3),
            0 0 20px rgba(124, 58, 237, 0.2),
            0 0 40px rgba(168, 85, 247, 0.15);
    }

    50% {
        text-shadow:
            0 0 15px rgba(124, 58, 237, 0.6),
            0 0 35px rgba(168, 85, 247, 0.45),
            0 0 65px rgba(192, 132, 252, 0.3),
            0 0 90px rgba(236, 72, 153, 0.15);
    }
}

.hero-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--fg);
    position: relative;
    z-index: 2;
}

.number-500 {
    color: #DC2626;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.bonus-text {
    color: var(--primary-green);
    font-weight: 800;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow {
    from {
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }

    to {
        filter: brightness(1.2) saturate(1.3);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    /* color: var(--muted-fg); */
    color: rgb(58, 56, 56);
    font-weight: 550;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.video-card {
    max-width: 350px;
    margin: 0 auto 40px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.video-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    background: #000;
}

.video-card iframe {
    border-radius: 12px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
}

/* VSL Player Profissional */
.vsl-player {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Sempre formato portrait para vídeo 1080x1920 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1);
    background: #000;
    transition: all 0.4s ease;
    max-width: 600px;
    /* Limita largura máxima para não ficar muito grande */
    margin: 0 auto;
}

.vsl-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.vsl-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Overlay quando pausado */
.vsl-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 38, 38, 0.95);
    /* Fundo vermelho */
    border-radius: 20px;
    padding: 25px 35px;
    max-width: 350px;
    width: 90%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    /* Centraliza o conteúdo interno */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Fallback - força aparecer após 4s se JS falhar */
    animation: emergencyShow 0.5s ease-out 4s forwards;
}

@keyframes emergencyShow {
    to {
        opacity: 1;
        pointer-events: all;
        visibility: visible;
    }
}

.vsl-overlay.show {
    opacity: 1;
    pointer-events: all;
    animation: popIn 0.5s ease-out;
    visibility: visible;
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Aviso VSL Profissional */
.vsl-sound-notice {
    text-align: center;
    color: white;
}


.sound-icon-pulse {
    margin-bottom: 15px;
}

.sound-icon-pulse i {
    font-size: 40px;
    color: white;
    animation: pulseBig 1.5s infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes pulseBig {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.sound-alert h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.sound-alert p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 500;
}

.click-instruction {
    display: none;
    /* Remove a instrução de clique para ficar igual às imagens */
}

/* Botão de Play Customizado */
.play-button {
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Controles customizados */
.vsl-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.vsl-player:hover .vsl-controls {
    opacity: 1;
}

.vsl-play-pause {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.vsl-play-pause:hover {
    color: #DC2626;
    transform: scale(1.1);
}

.vsl-volume {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.vsl-volume:hover {
    color: #DC2626;
    transform: scale(1.1);
}

.vsl-volume.muted {
    color: #DC2626;
}

.vsl-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.vsl-progress-bar {
    height: 100%;
    background: #DC2626;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.vsl-time {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsivo */
@media (max-width: 768px) {
    .vsl-player {
        border-radius: 12px;
        max-width: 100%;
        /* Em mobile usa toda largura disponível */
        max-height: 70vh;
        /* Limita altura para não ocupar tela inteira */
    }

    .vsl-controls {
        padding: 15px;
        gap: 10px;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .video-wrapper {
        margin-bottom: 30px;
    }

    .sound-alert h2 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }

    .sound-alert p {
        font-size: 0.9rem;
    }

    .sound-icon-pulse i {
        font-size: 35px;
    }

    .vsl-overlay {
        max-width: 280px;
        padding: 20px 25px;
    }

    /* Desativa animações pesadas no mobile */
    .hero-title {
        animation: none;
        /* text-shadow:
            0 0 8px rgba(124, 58, 237, 0.25),
            0 0 18px rgba(124, 58, 237, 0.12); */
    }

    .hero-cta {
        animation: none;
    }

    .cta-button {
        animation: none;
    }

    .urgency-banner {
        animation: none;
        background: #D63031;
        background-size: 100% 100%;
    }
}


.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-card-inner:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.play-icon i {
    color: #1a1a2e;
    font-size: 24px;
    margin-left: 4px;
}

.video-card-inner:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.play-overlay.hidden {
    display: none;
}

.video-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* ===== PLAYFUL GEOMETRIC CTA BUTTON ===== */
.cta-button {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--fg);
    padding: 18px 42px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-pop);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-pop-hover);
    background: var(--accent);
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--fg);
}

.hero-cta {
    margin-bottom: 40px;
    animation: pulseSoft 2.5s ease-in-out infinite;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Seções Gerais */
.about-author {
    padding: 50px 0;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Outfit', system-ui, sans-serif;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--fg);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    width: 64px;
    height: 6px;
    background: var(--tertiary);
    border: 2px solid var(--fg);
    border-radius: var(--r-full);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* O Que Você Vai Receber */
.what-you-get {
    background: var(--muted);
    padding: 96px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card);
    padding: 40px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-pop);
    border: 2px solid var(--fg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.benefit-card:hover {
    transform: rotate(-1deg) scale(1.03);
    box-shadow: var(--shadow-pop-hover);
}

.benefit-icon {
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    background: var(--accent);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--fg);
    line-height: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: var(--secondary);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: var(--tertiary);
    color: var(--fg);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: var(--quaternary);
    color: var(--fg);
}

.benefit-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(8deg) scale(1.1);
}

.benefit-card h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--fg);
}

.benefit-card:hover h3 {
    color: var(--accent);
}

.benefit-card p {
    color: var(--muted-fg);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefícios Exclusivos */
.exclusive-benefits {
    padding: 96px 0;
    background: var(--bg);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.exclusive-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--r-lg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--card);
    box-shadow: var(--shadow-pop);
    border: 2px solid var(--fg);
    position: relative;
}

.exclusive-card:hover {
    transform: rotate(1deg) scale(1.03);
    box-shadow: var(--shadow-pop-hover);
}

.exclusive-icon {
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    background: var(--quaternary);
    color: var(--fg);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--fg);
    line-height: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exclusive-card:nth-child(2) .exclusive-icon {
    background: var(--accent);
    color: #fff;
}

.exclusive-card:nth-child(3) .exclusive-icon {
    background: var(--secondary);
    color: #fff;
}

.exclusive-card:nth-child(4) .exclusive-icon {
    background: var(--tertiary);
    color: var(--fg);
}

.exclusive-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.exclusive-card:hover .exclusive-icon {
    transform: rotate(-8deg) scale(1.1);
}

.exclusive-card h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--fg);
}

.exclusive-card:hover h3 {
    color: var(--quaternary);
}

.exclusive-card p {
    color: var(--muted-fg);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Bônus Section */
.bonus-section {
    background: var(--muted);
    padding: 96px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.bonus-card {
    background: var(--card);
    padding: 36px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-pop);
    border: 2px solid var(--fg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
}

.bonus-card:hover {
    transform: rotate(-1deg) translateY(-6px);
    box-shadow: var(--shadow-pop-hover);
}

.bonus-value {
    color: #EF4444;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin: 10px 0;
    display: block;
}

.bonus-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.bonus-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    max-width: 100%;
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bonus-image img:hover {
    transform: scale(1.05);
}

.bonus-card h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 18px;
    color: var(--fg);
}

.bonus-subheadline {
    font-size: 0.88rem !important;
    font-style: italic;
    color: var(--accent) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.2px;
}

.bonus-card p {
    color: var(--muted-fg);
    line-height: 1.6;
}

.total-bonus {
    text-align: center;
    padding: 18px 28px;
    background: var(--fg);
    color: #fff;
    border-radius: var(--r-md);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
}

.total-bonus h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1rem;
}

.free {
    font-weight: 700;
    font-size: 1.2rem;
    color: #FBBF24;
    margin-left: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Cronômetro dos Planos */
.plans-timer {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 28px;
    background: var(--fg);
    color: #fff;
    border-radius: var(--r-md);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
}

.plans-timer .timer-text {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
}

.countdown-plans .time-unit {
    background: var(--card);
    padding: 14px 12px;
    border-radius: var(--r-sm);
    min-width: 72px;
    box-shadow: 2px 2px 0px var(--tertiary);
    border: 2px solid var(--tertiary);
    transition: transform 0.2s ease;
}

.countdown-plans .time-unit:hover {
    transform: translateY(-2px);
}

.countdown-plans .time-number {
    display: block;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-plans .time-label {
    font-size: 0.7rem;
    color: var(--muted-fg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Planos de Preços */
.pricing-plans {
    background: var(--bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 820px;
    margin: 0 auto;
}

.plan-card {
    background: var(--card);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    text-align: left;
    position: relative;
    /* box-shadow: var(--shadow-pop); */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid var(--fg);
}

.plan-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-pop-hover);
}

@keyframes premium-glow {

    0%,
    100% {
        box-shadow:
            0 0 0 3px rgba(168, 85, 247, 0.4),
            0 8px 30px rgba(124, 58, 237, 0.2),
            0 0 60px rgba(168, 85, 247, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 3px rgba(192, 132, 252, 0.6),
            0 12px 45px rgba(124, 58, 237, 0.35),
            0 0 80px rgba(168, 85, 247, 0.18);
    }
}

@keyframes badge-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes border-glow-vibrant {

    0%,
    100% {
        border-color: #22c55e;
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
    }

    50% {
        border-color: #4ade80;
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.9);
    }
}

.plan-card.popular {
    border: 3px solid #22c55e;
    background: var(--card);
    position: relative;
    animation: border-glow-vibrant 2s ease-in-out infinite;
}

.plan-card.popular:hover {
    transform: translate(-3px, -3px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: #16a34a;
    color: #fff;
    padding: 8px 22px;
    border-radius: var(--r-full);
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: 2px solid var(--fg);
    box-shadow: 3px 3px 0px var(--fg);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}

.popular-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 20%,
            rgba(255, 255, 255, 0.6) 48%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.6) 52%,
            transparent 80%);
    animation: badge-shine 2.4s ease-in-out infinite;
    pointer-events: none;
    border-radius: var(--r-full);
}

@keyframes badge-shine {
    0% {
        left: -75%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    55% {
        left: 130%;
        opacity: 1;
    }

    65% {
        opacity: 0;
        left: 130%;
    }

    100% {
        opacity: 0;
        left: 130%;
    }
}

.plan-card h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--fg);
    text-align: center;
    letter-spacing: -0.5px;
}

.price {
    margin-bottom: 10px;
    text-align: center;
}

.savings-amount {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.new-price {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--fg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.plan-features i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.plan-features .fa-star {
    color: #FBBF24;
}

.plan-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulseSoft 2s ease-in-out infinite;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.basic-button {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--primary-green);
    color: #fff;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
    border-radius: var(--r-full);
    font-weight: 700;
    letter-spacing: 1px;
}

.basic-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-pop-hover);
    animation: none;
}

.premium-button {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--primary-green);
    color: #fff;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
    border-radius: var(--r-full);
    font-weight: 700;
    letter-spacing: 1px;
}

.premium-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-pop-hover);
    animation: none;
}

/* Premium Social Proof */
.premium-social-proof {
    background: #f8f9fa;
    color: #6c757d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.purchase-count {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #6c757d;
}

/* Bonus Items */
.bonus-item {
    color: #A855F7 !important;
}

.bonus-item i {
    color: #A855F7 !important;
}

/* No Benefit Item */
.no-benefit {
    color: #DC2626 !important;
}

.no-benefit i {
    color: #DC2626 !important;
}

/* Gold Item */
.gold-item {
    color: #D4A000 !important;
    font-weight: 600;
}

.gold-item i {
    color: #D4A000 !important;
}

.testimonials {
    background: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--card);
    padding: 32px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-pop);
    border: 2px solid var(--fg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
    transform: rotate(-1deg) translateY(-4px);
    box-shadow: var(--shadow-pop-hover);
}

.stars {
    color: var(--tertiary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--muted-fg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--fg);
    box-shadow: 2px 2px 0px var(--fg);
    transition: transform 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.1);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Sobre o Autor */
.about-author {
    background: var(--bg);
    color: var(--fg);
    padding: 80px 0;
}

.author-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding: 32px;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-pop-lg);
    background: var(--card);
    border: 2px solid var(--fg);
}

.author-info {
    flex: 2;
    order: 1;
}

.author-image {
    flex: 1;
    text-align: center;
    order: 2;
}

.author-info h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 700;
}

.author-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
    font-weight: 600;
}

.author-title {
    font-size: 1.1rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.author-stats {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 8px 6px;
    background: var(--light-gray);
    border-radius: 8px;
    min-width: 70px;
    flex: 1;
    max-width: 110px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary-green);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


.author-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--r-md);
    border: 3px solid black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.05);
}

.author-info p {
    color: #555;
    line-height: 1.4;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 12px;
}

/* FAQ */
.faq {
    background: var(--muted);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    margin-bottom: 16px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-pop);
    border: 2px solid var(--fg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fg);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

/* Garantia */
.guarantee {
    background: var(--bg);
    color: var(--fg);
    text-align: center;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-pop-lg);
    background: var(--card);
    border: 2px solid var(--fg);
}

.guarantee-badge {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.guarantee-badge i {
    font-size: 180px;
    color: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(3px 3px 0px var(--fg));
}

.badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    margin-top: -5px;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.guarantee-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.guarantee h2 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--fg);
    font-weight: 800;
}

.guarantee p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    color: var(--muted-fg);
    line-height: 1.6;
}

.guarantee-cta {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
    animation: pulseSoft 2.5s ease-in-out infinite;
}

.guarantee-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-pop-hover);
    animation: none;
}

/* Seção Final de Urgência */
.final-urgency {
    background: white;
    color: var(--dark-gray);
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.final-urgency h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FB7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-urgency p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #555;
    font-weight: 500;
}

.urgency-timer {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timer-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
}

.time-unit {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    min-width: 90px;
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.15);
    border: 2px solid #F97316;
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.2);
}

.time-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #EF4444;
    background: linear-gradient(135deg, #EF4444 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta {
    background: linear-gradient(135deg, #EF4444 0%, #F97316 50%, #FBBF24 100%);
    color: white;
    font-size: 1.4rem;
    padding: 22px 60px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    animation: pulseSoft 2s ease-in-out infinite;
}

.final-cta:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(239, 68, 68, 0.55);
}

/* Footer */
.footer {
    background: var(--fg);
    color: #fff;
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid var(--fg);
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.75;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }

    .what-you-get,
    .exclusive-benefits {
        padding: 70px 0;
    }

    .benefits-grid,
    .exclusive-grid {
        gap: 25px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
    }

    .benefit-icon,
    .exclusive-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin: 0 auto 20px;
    }

    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.15rem;
    }

    .benefit-card p,
    .exclusive-card p {
        font-size: 0.9rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }

    .author-content {
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
        text-align: center;
    }

    .author-info {
        order: 1;
        flex: none;
    }

    .author-image {
        order: 2;
        flex: none;
    }

    .author-info h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .author-info h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .author-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .author-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 15px 0;
    }

    .stat {
        min-width: 100px;
        max-width: 140px;
        padding: 10px 8px;
    }

    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }

    .author-info p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-top: 12px;
    }

    .author-image img {
        width: 180px;
        height: 180px;
        border-width: 2px;
    }

    .hero-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .time-unit {
        min-width: 70px;
        padding: 15px;
    }

    .time-number {
        font-size: 2rem;
    }

    .plans-timer {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .plans-timer .timer-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .countdown-plans {
        gap: 12px;
    }

    .countdown-plans .time-unit {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-plans .time-number {
        font-size: 1.5rem;
    }

    .countdown-plans .time-label {
        font-size: 0.7rem;
    }

    .testimonial-photo {
        width: 50px;
        height: 50px;
    }

    .urgency-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .final-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .what-you-get,
    .exclusive-benefits {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.85rem;
        margin-bottom: 35px;
    }

    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .exclusive-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .benefit-icon,
    .exclusive-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin: 0 auto 18px;
    }

    .benefit-card h3,
    .exclusive-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-card p,
    .exclusive-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .bonus-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .author-image img {
        width: 150px;
        height: 150px;
        border-width: 2px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .bonus-card h3 {
        font-size: 1.1rem;
    }

    .bonus-card p {
        font-size: 0.9rem;
    }

    .bonus-image img {
        width: 240px;
        height: 180px;
    }

    .plan-card h3 {
        font-size: 1.3rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .old-price {
        font-size: 1rem;
    }

    .author-info h2 {
        font-size: 1.9rem;
    }

    .author-info h3 {
        font-size: 1.5rem;
    }

    .author-title {
        font-size: 1rem;
    }

    .stat {
        min-width: 100px;
        max-width: 140px;
    }

    .stat strong {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

    .stat span {
        font-size: 0.7rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
    }

    .testimonial-photo {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos visuais adicionais */
.benefit-card:nth-child(even) {
    animation-delay: 0.2s;
}

.exclusive-card:nth-child(even) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(even) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Animação de entrada para elementos visíveis */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sistema de Notificações */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 180px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    pointer-events: all;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 4.6s;
    border: 2px solid var(--primary-green);
    position: relative;
}



@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}


.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.notification-product {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.2;
}

.notification-location {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.2;
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-right: 10px;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: auto;
        max-width: 280px;
    }

    .notification {
        padding: 8px 12px;
        border-radius: 10px;
        border-width: 1px;
    }

    .notification-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 8px;
        box-shadow: 0 1px 4px rgba(34, 197, 94, 0.25);
    }

    .notification-name {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .notification-product {
        font-size: 0.75rem;
    }

    .notification-location {
        font-size: 0.7rem;
    }

    .notification-content {
        gap: 1px;
    }
}

/* Pop-up de Upgrade Premium */
/* ===== POPUP — PLAYFUL GEOMETRIC UPGRADE ===== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.popup-overlay.active {
    display: flex;
}

.popup-card {
    background: var(--bg);
    border: 3px solid var(--fg);
    border-radius: var(--r-lg);
    padding: 36px 28px 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-pop-lg);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    margin: auto 0;
}

/* Sticker de urgência */
.popup-sticker {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--r-full);
    border: 2px solid var(--fg);
    box-shadow: 3px 3px 0px var(--fg);
    white-space: nowrap;
}

.popup-card .popup-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 8px;
    margin-top: 8px;
    line-height: 1.2;
}

.popup-card .popup-subtitle {
    font-size: 0.95rem;
    color: var(--muted-fg);
    margin-bottom: 20px;
    line-height: 1.5;
}

.popup-card .popup-subtitle strong {
    color: var(--accent);
}

/* Bloco de preço */
.popup-price-block {
    background: var(--tertiary);
    border: 2px solid var(--fg);
    border-radius: var(--r-md);
    box-shadow: 4px 4px 0px var(--fg);
    padding: 14px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.popup-old-price {
    font-size: 0.9rem;
    color: rgba(44, 24, 16, 0.55);
    text-decoration: line-through;
    font-weight: 500;
}

.popup-new-price {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--fg);
    line-height: 1;
}

.popup-period {
    font-size: 1.2rem;
    font-weight: 700;
}

.popup-save-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--fg);
    background: #fff;
    border: 1.5px solid var(--fg);
    border-radius: var(--r-full);
    padding: 3px 12px;
    margin-top: 4px;
}

/* Lista de benefícios */
.popup-card .popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-card .popup-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--fg);
    font-size: 0.9rem;
    font-weight: 500;
}

.popup-card .popup-benefits li i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.popup-card .popup-benefits li strong {
    color: var(--accent);
}

/* Botões */
.popup-card .popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-btn {
    font-family: 'Outfit', system-ui, sans-serif;
    padding: 14px 24px;
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.popup-btn-accept {
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--fg);
    box-shadow: var(--shadow-pop);
    text-transform: uppercase;
}

.popup-btn-accept:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-pop-hover);
}

.popup-btn-accept:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--fg);
}

.popup-btn-decline {
    background: transparent;
    color: var(--muted-fg);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    letter-spacing: 0;
}

.popup-btn-decline:hover {
    color: var(--fg);
    background: var(--muted);
    border-color: var(--fg);
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 16px;
    }

    .popup-card {
        padding: 28px 16px 18px;
    }

    .popup-card .popup-title {
        font-size: 1.2rem;
    }

    .popup-card .popup-subtitle {
        font-size: 0.88rem;
        margin-bottom: 14px;
    }

    .popup-new-price {
        font-size: 1.9rem;
    }

    .popup-price-block {
        padding: 10px 16px;
        margin-bottom: 14px;
    }

    .popup-card .popup-benefits {
        margin-bottom: 16px;
        gap: 6px;
    }

    .popup-card .popup-benefits li {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

/* ===== PLAYFUL GEOMETRIC — EXTRA ANIMATIONS ===== */
@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(4deg);
    }

    75% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.benefit-icon:hover,
.exclusive-icon:hover {
    animation: wiggle 0.4s ease;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .cta-button,
    .plan-button,
    .hero-cta,
    .guarantee-cta {
        animation: none !important;
    }
}

/* Mobile shadow reduction */
@media (max-width: 480px) {

    .benefit-card,
    .exclusive-card,
    .bonus-card,
    .testimonial-card,
    .plan-card,
    .faq-item {
        /* box-shadow: 2px 2px 0px 0px var(--fg); */
    }

    .cta-button,
    .plan-button {
        box-shadow: 2px 2px 0px 0px var(--fg);
        min-height: 48px;
    }
}