/* ===================================
   EMBUTIDOS DE ORO - CSS COMPLETO
   Landing Page Responsiva
   =================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da Marca */
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --red: #C41E3A;
    --red-dark: #A01829;
    --dark: #1A1A1A;
    --gray: #2C2C2C;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Espaçamentos */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

.btn-cta {
    animation: pulse 2s infinite;
}

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

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.main-headline {
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--gold);
    display: block;
    margin-top: 0.5rem;
}

.product-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border: 2px solid var(--gold);
}

.product-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-sm);
}

.product-name {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

.product-image {
    margin: var(--spacing-lg) 0;
}

.mockup-img {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero-description {
    font-size: 1.2rem;
    margin: var(--spacing-md) 0;
    line-height: 1.8;
}

.cta-primary {
    margin-top: var(--spacing-md);
}

.guarantee-text {
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.section-title.gold {
    color: var(--gold);
}

.pain-points {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-md);
}

.pain-point {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.pain-point:hover {
    transform: translateY(-5px);
}

.pain-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.pain-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pain-content {
    flex: 1;
}

.emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

/* Opportunity Section */
.opportunity-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    margin: var(--spacing-md) 0;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.benefit-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.benefit-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.benefit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.highlight-text {
    text-align: center;
    font-size: 1.4rem;
    margin: var(--spacing-md) 0;
    color: var(--dark);
}

.bold-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
}

.gold-text {
    color: var(--gold);
    font-size: 1.5em;
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.product-main-box {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.product-main-title {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.module-item.main-product {
    border-left: 5px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--white) 100%);
}

.bonus-section {
    margin-top: var(--spacing-lg);
}

.bonus-title {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.module-item.bonus-item {
    border-left: 3px solid var(--red);
    opacity: 0.95;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.product-main-box {
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 10px;
}

.product-main-title {
    color: var(--dark);
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 3px dashed var(--gold);
}

.bonus-title {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.modules-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-md);
}

.module-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    display: flex;
    gap: var(--spacing-md);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--gold);
    transition: transform 0.3s ease;
}

.module-item:hover {
    transform: translateX(10px);
}

.module-item.main-product {
    border-left-width: 8px;
    border-left-color: var(--gold);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
}

.module-item.bonus-item {
    border-left-color: var(--red);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F3 100%);
}

.module-number {
    font-size: 3rem;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.module-item.bonus-item .module-content h3 {
    color: var(--red);
}

/* Price Section */
.price-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    color: var(--white);
}

.price-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 3px solid var(--gold);
}

.price-title {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.price-container {
    background: var(--gold);
    color: var(--dark);
    padding: var(--spacing-md);
    border-radius: 15px;
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
}

.price-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.guarantee-badge {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--gold);
}

.guarantee-badge p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Order Bump */
.order-bump {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--gold);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        border-color: var(--gold-dark);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.order-bump-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
}

.order-bump-header input[type="checkbox"] {
    width: 25px;
    height: 25px;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.order-bump-header label {
    cursor: pointer;
    flex: 1;
}

.bump-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.order-bump-header h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 0.5rem 0 0;
}

.order-bump-content {
    padding-left: 2.5rem;
}

.bump-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.bump-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: var(--spacing-sm) 0;
}

.bump-price-old {
    font-size: 1.2rem;
    color: var(--gray);
    text-decoration: line-through;
}

.bump-price-new {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.bump-note {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: var(--gray-light);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.testimonial-info {
    flex: 1;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    margin: 0;
}

/* Urgency Section */
.urgency-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: var(--spacing-md) auto;
}

.cta-final {
    margin-top: var(--spacing-lg);
}

.cta-final h3 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.small-text {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

/* Guarantee Section */
.guarantee-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gold);
    color: var(--dark);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.guarantee-box h2 {
    margin-bottom: var(--spacing-sm);
}

.final-message {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.final-message p {
    font-size: 1.2rem;
    margin: var(--spacing-sm) 0;
}

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

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: var(--spacing-sm);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

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

/* Responsividade */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .module-item {
        flex-direction: column;
        text-align: center;
    }
    
    .module-number {
        min-width: auto;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .alert-banner {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .hero {
        padding: var(--spacing-md) 0;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .mockup-img {
        max-width: 100%;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Module Mockups */
.module-mockup {
    min-width: 280px;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-mockup-small {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

/* Responsividade dos mockups */
@media (max-width: 768px) {
    .pain-point {
        flex-direction: column;
    }
    
    .pain-image {
        width: 100%;
        height: 250px;
    }
    
    .module-mockup {
        min-width: 180px;
        max-width: 180px;
        margin: 0 auto 1rem auto;
    }
    
    .module-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Testimonials Mobile */
@media (max-width: 480px) {
    .testimonial-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .stars {
        font-size: 1rem;
    }
}

/* ===================================
   BONUS SURPRESA SECTION
   =================================== */

.bonus-surpresa-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.bonus-surpresa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-surpresa-box {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Badge Surpresa */
.bonus-surprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.surprise-icon {
    font-size: 1.3rem;
    animation: bounce 1s ease-in-out infinite;
}

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

/* Títulos */
.bonus-surpresa-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.bonus-surpresa-intro {
    font-size: 1.2rem;
    color: var(--gray-light);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.highlight-gold {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
}

/* Items do Bônus */
.bonus-surpresa-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-surpresa-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.bonus-surpresa-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Mockup Images */
.bonus-mockup {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(44, 44, 44, 0.8) 100%);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.bonus-surpresa-item:hover .bonus-image {
    transform: scale(1.05);
}

/* Info do Bônus */
.bonus-info {
    flex: 1;
}

.bonus-info h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.bonus-value {
    display: inline-block;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.bonus-value strong {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Divisor */
.bonus-surpresa-divider {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    padding: 0.5rem 0;
}

/* Total */
.bonus-surpresa-total {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0.5rem 0;
}

.total-line.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-light);
    opacity: 0.6;
}

.new-price {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* CTA do Bônus */
.bonus-surpresa-cta {
    text-align: center;
    margin-top: 2rem;
}

.urgency-text {
    color: var(--red);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-text {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

/* Responsivo */
@media (max-width: 768px) {
    .bonus-surpresa-box {
        padding: 2rem 1.5rem;
    }
    
    .bonus-surpresa-title {
        font-size: 1.8rem;
    }
    
    .bonus-surpresa-intro {
        font-size: 1rem;
    }
    
    .bonus-surpresa-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .bonus-mockup {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .bonus-info h3 {
        font-size: 1.2rem;
    }
    
    .total-line {
        font-size: 1rem;
    }
    
    .total-line.highlight {
        font-size: 1.2rem;
    }
    
    .new-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-surpresa-box {
        padding: 1.5rem 1rem;
        border-width: 2px;
    }
    
    .bonus-surpresa-title {
        font-size: 1.5rem;
    }
    
    .bonus-surpresa-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .bonus-mockup {
        width: 150px;
        height: 150px;
    }
    
    .bonus-info h3 {
        font-size: 1.1rem;
    }
    
    .bonus-description {
        font-size: 0.9rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
}
