* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais da Nova Paleta - Mais Neutras */
    --background-color: #f5f5f7;
    --foreground-color: #1d1d1f;
    --primary-color: hsl(300, 50%, 50%);
    --accent-color: hsl(320, 45%, 55%);
    
    /* Cores de Suporte */
    --card-color: hsl(0, 0%, 100%);
    --secondary-color: #e8e8ed;
    --muted-color: #f2f2f7;
    --border-color: #d2d2d7;
    
    /* Cores mantidas para ações positivas/negativas */
    --success-color: #00C853;
    --success-dark: #00a043;
    --danger-color: #F44336;
    --warning-color: #FFC107;
    
    /* Variações da paleta */
    --primary-dark: hsl(300, 50%, 40%);
    --text-dark: #1d1d1f;
    --text-light: #6e6e73;
    --bg-light: var(--muted-color);
    --bg-white: var(--card-color);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, hsl(300, 50%, 50%) 0%, hsl(320, 45%, 55%) 100%);
    --gradient-success: linear-gradient(135deg, #00C853 0%, #00a043 100%);
    --gradient-hero: linear-gradient(135deg, hsl(300, 50%, 50%) 0%, hsl(320, 45%, 55%) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s ease-out;
}

.urgency-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urgency-text {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse {
    animation: pulse 2s infinite;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    min-width: 60px;
    display: inline-block;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('ASSETS/brecho.jpeg') center center/cover no-repeat;
    opacity: 0.05;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.testimonial-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-icon {
    font-size: 40px;
}

.badge-icon i {
    display: inline-block;
}

.badge-text {
    font-size: 16px;
}

/* Hero Visual - Product Image */
.hero-visual {
    position: relative;
    order: 0;
}

.hero-text {
    order: 0;
}

.hero-cta {
    order: 0;
}

.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: floatProduct 3s ease-in-out infinite;
}

.product-image:hover {
    transform: scale(1.05);
}

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

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-success);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
    animation: pulse 2s infinite;
}

.floating-badge .badge-icon {
    font-size: 24px;
}

.floating-badge .badge-text {
    font-weight: 700;
    font-size: 14px;
}

/* Price Box */
.price-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.old-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.new-price span {
    color: var(--accent-color);
}

.installment {
    font-size: 16px;
    color: var(--text-light);
}

/* CTA Button */
.cta-button {
    display: block;
    background: var(--gradient-success);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.9;
}

.cta-button span {
    display: block;
}

.guarantee-badge {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: white;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.pulse-animation {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(0, 200, 83, 0.7);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Pain Points Section */
.pain-points {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    font-style: italic;
}

.pain-intro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pain-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 4px solid var(--danger-color);
}

.pain-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.pain-icon i {
    display: inline-block;
    color: var(--danger-color);
}

.pain-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.pain-consequence {
    background: var(--danger-color);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.solution-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.product-name h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.highlight-300 {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.product-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    font-size: 18px;
}

.check-icon {
    font-size: 24px;
}

.check-icon i {
    display: inline-block;
    color: var(--success-color);
}

.price-show {
    margin-top: 30px;
}

.price-old {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: white;
}

.bonuses .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.free-badge {
    background: var(--gradient-success);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 24px;
    font-weight: 800;
    animation: pulse 2s infinite;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bonus-icon {
    font-size: 40px;
}

.bonus-icon i {
    display: inline-block;
}

.bonus-value {
    background: transparent;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: line-through;
}

.bonus-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bonus-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.bonus-total {
    text-align: center;
    margin-top: 50px;
    background: var(--gradient-success);
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.bonus-total p {
    font-size: 24px;
    margin-bottom: 10px;
}

.bonus-total span {
    font-weight: 800;
    font-size: 32px;
}

.free-badge-large {
    background: white;
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 900;
}

.bonus-yours-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bonus-br-mobile {
    display: none;
}

/* Bonus Destaque - Bônus 4 com Vídeo */
.bonus-destaque {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 4px solid var(--success-color);
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.bonus-destaque:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 200, 83, 0.3);
}

.bonus-badge-destaque {
    background: var(--gradient-success);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
    animation: pulse 2s infinite;
}

.bonus-badge-destaque i {
    margin-right: 8px;
}

.bonus-header-destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.bonus-destaque .bonus-icon {
    font-size: 50px;
    color: var(--success-color);
}

.bonus-destaque .bonus-value {
    background: var(--success-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.bonus-destaque h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bonus-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.bonus-video {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bonus-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Price Anchor Section */
.price-anchor {
    padding: 80px 0;
    background: var(--bg-light);
}

.price-breakdown {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-total {
    border-top: 3px solid var(--accent-color);
    margin-top: 20px;
    padding-top: 30px;
}

.price-label {
    font-size: 18px;
    color: var(--text-dark);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-total .price-value {
    font-size: 28px;
    color: var(--accent-color);
}

.price-offer {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.offer-intro {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.offer-main {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.offer-price {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.offer-amount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.offer-amount span {
    background: white;
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: 8px;
}

.offer-installment {
    font-size: 18px;
    opacity: 0.9;
}

.offer-compare {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Payment Methods */
.payment-methods {
    margin-top: 30px;
    text-align: center;
}

.payment-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 32px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(30%);
    display: inline-block;
}

.payment-icon i {
    display: inline-block;
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.2);
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: white;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Warning Section */
.warning {
    padding: 60px 0;
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
}

.warning-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: shake 0.5s infinite;
}

.warning-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.warning-icon i {
    display: inline-block;
    color: var(--warning-color);
}

.warning-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.warning-box p {
    font-size: 18px;
    color: var(--text-light);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--bg-light);
}

.guarantee-badge-title {
    background: var(--gradient-success);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 24px;
}

.guarantee-content {
    max-width: 800px;
    margin: 50px auto 0;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.guarantee-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.guarantee-icon i {
    display: inline-block;
    color: var(--primary-color);
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
    display: grid;
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-style: italic;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.final-cta .section-title {
    color: white;
    font-size: 48px;
}

.final-cta-content {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.imagine-text, .possible-text, .final-warning {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.imagine-text {
    font-style: italic;
}

.final-price {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.price-old-final {
    font-size: 28px;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new-final {
    font-size: 56px;
    font-weight: 900;
    background: white;
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

.guarantee-badge-final {
    margin-top: 20px;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Pop-up Notifications */
#notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.notification {
    background: var(--gradient-success);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    animation: slideInLeft 0.5s ease-out;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification::before {
    content: '';
    font-size: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification::after {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    position: absolute;
    left: 25px;
}

.notification-content {
    flex: 1;
}

.notification-header {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.notification-text {
    font-size: 14px;
    opacity: 0.9;
}

.notification-time {
    font-size: 12px;
    opacity: 0.8;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-500px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-500px);
        opacity: 0;
    }
}

/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content, .hero-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-visual {
        order: 2;
    }

    .hero-cta {
        order: 3;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .product-image {
        max-width: 500px;
    }

    .product-name h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .pain-cards,
    .benefits-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

    .notification {
        min-width: 280px;
        max-width: 320px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .product-image {
        max-width: 350px;
    }

    .floating-badge {
        padding: 8px 16px;
        font-size: 12px;
    }

    .floating-badge .badge-icon {
        font-size: 20px;
    }

    .cta-button {
        font-size: 16px;
        padding: 18px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-name h1 {
        font-size: 32px;
    }

    .price-new-final {
        font-size: 40px;
    }

    .bonus-yours-line {
        flex-direction: column;
        gap: 5px;
    }

    .bonus-br-mobile {
        display: block;
    }
}

/* Exit Intent Popup Styles */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    animation: fadeIn 0.3s ease-out;
}

.exit-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    text-align: left;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exit-popup-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.exit-popup-main {
    display: flex;
    flex-direction: column;
}

.exit-popup-icon {
    font-size: 80px;
    animation: bounce 1s infinite;
    margin-bottom: 15px;
}

.exit-popup-icon i {
    display: inline-block;
    color: var(--accent-color);
}

.exit-popup-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.exit-popup-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--danger-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.exit-popup-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.exit-popup-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exit-popup-price {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.exit-old-price {
    display: block;
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 10px;
}

.exit-new-price {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: white;
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.exit-popup-button {
    display: block;
    background: var(--gradient-success);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.exit-popup-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.exit-popup-button i {
    margin-right: 10px;
}

.exit-popup-guarantee {
    font-size: 14px;
    color: var(--text-light);
}

.exit-popup-guarantee i {
    color: var(--success-color);
    margin-right: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Exit Popup */
@media (max-width: 768px) {
    .exit-popup-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 500px;
    }
    
    .exit-popup-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 640px) {
    .exit-popup-content {
        padding: 30px 20px;
    }

    .exit-popup-icon {
        font-size: 60px;
    }

    .exit-popup-title {
        font-size: 24px;
    }

    .exit-popup-subtitle {
        font-size: 14px;
    }

    .exit-new-price {
        font-size: 32px;
        padding: 12px 20px;
    }

    .exit-popup-button {
        font-size: 16px;
        padding: 18px 20px;
    }
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
    background: var(--success-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 200, 83, 0.45);
    z-index: 99990;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.whatsapp-widget i {
    font-size: 30px;
    display: inline-block;
}

.whatsapp-hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.whatsapp-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hint bubble above WhatsApp widget */
.whatsapp-hint {
    position: fixed;
    right: 96px; /* afastado do botão */
    bottom: 36px;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    z-index: 99989;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-hint::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 14px;
    width: 0;
    height: 0;
    border-left: 8px solid #ffffff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

@media (max-width: 640px) {
    .whatsapp-hint {
        right: 80px;
        bottom: 28px;
        font-size: 13px;
        padding: 8px 12px;
    }
}

.whatsapp-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 36px rgba(0, 200, 83, 0.55);
}

.whatsapp-widget:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.25), 0 12px 30px rgba(0, 200, 83, 0.45);
}

.whatsapp-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5);
    animation: whatsapp-ripple 2s infinite;
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5);
    }
    70% {
        transform: scale(1.75);
        opacity: 0;
        box-shadow: 0 0 0 18px rgba(0, 200, 83, 0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

@media (max-width: 640px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-widget i {
        font-size: 26px;
    }
}

