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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
    min-height: 100vh;
}

/* Force all sections to display properly */
section {
    display: block;
    visibility: visible;
    min-height: 50px;
    position: relative;
    opacity: 1;
}

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

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

.floating-image {
    animation: float 3s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

/* Animation classes for card entrance effects */
.fade-in-up {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(45deg, #ffde59, #ff9800);
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.urgency-text {
    font-weight: 700;
    font-size: 16px;
    color: #073355;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.urgency-btn {
    background: #073355;
    color: #ffde59;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.urgency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(7, 51, 85, 0.3);
}

/* Mockup Top Section */
.mockup-top {
    background: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.mockup-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: #073355;
    color: #FFFFFF;
    padding: 80px 0;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffde59;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    height: auto;
}

/* CTA Buttons */
.cta-button, .buy-button {
    background: linear-gradient(45deg, #ffde59, #ffc107);
    color: #073355;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover, .buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 222, 89, 0.4);
    background: linear-gradient(45deg, #ffc107, #ffde59);
}

.buy-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    font-size: 1.3rem;
    padding: 20px 40px;
}

.buy-button:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.buy-button.large {
    font-size: 1.4rem;
    padding: 25px 50px;
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #FFFFFF;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Deliverables Section */
.deliverables {
    background: #FFFFFF;
    padding: 80px 0;
    color: #073355;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #073355;
}

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

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border-left: 4px solid #ffde59;
}

.deliverable-item:hover {
    transform: translateY(-5px);
}

.deliverable-item .icon {
    font-size: 2rem;
    min-width: 40px;
}

.deliverable-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #073355;
}

/* Benefits Section */
.benefits {
    background: #073355;
    padding: 80px 0;
    color: #FFFFFF;
}

.benefits .section-title {
    color: #ffde59;
}

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

.benefit-card {
    background: rgba(255, 222, 89, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 222, 89, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 222, 89, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffde59;
}

.benefit-card p {
    color: #e0e0e0;
}

/* Testimonials Section */
.testimonials {
    background: #FFFFFF;
    padding: 80px 0;
    color: #073355;
    text-align: center;
}

.testimonials .section-title {
    color: #073355;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    justify-items: center;
}

.video-testimonial {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.video-testimonial iframe {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    margin-top: 15px;
    font-style: italic;
    font-weight: 500;
    color: #073355;
    font-size: 1.1rem;
}

/* Authority Section */
.authority {
    background: #073355;
    padding: 80px 0;
    color: #FFFFFF;
}

.authority .section-title {
    color: #ffde59;
}

.authority-content {
    text-align: center;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 222, 89, 0.2);
    color: #ffde59;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 222, 89, 0.3);
}

.authority-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Bonus Section */
.bonus {
    background: #FFFFFF;
    padding: 80px 0;
    color: #073355;
}

.bonus .section-title {
    color: #073355;
}

.bonus-image {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Offer Card */
.offer-card {
    background: #FFFFFF;
    padding: 80px 0;
    color: #073355;
}

.offer-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid #ffde59;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-header img {
    max-width: 300px;
    margin-bottom: 20px;
}

.offer-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #073355;
}

.offer-list {
    list-style: none;
    margin-bottom: 30px;
}

.offer-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #073355;
}

.pricing {
    text-align: center;
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 10px;
}

.final-price {
    margin-bottom: 10px;
}

.installments {
    font-size: 2rem;
    font-weight: 800;
    color: #073355;
    margin-bottom: 5px;
}

.cash-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4CAF50;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #4CAF50;
    font-weight: 600;
}

.guarantee-badge {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    background: #073355;
    padding: 80px 0;
    color: #FFFFFF;
}

.faq .section-title {
    color: #ffde59;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: rgba(255, 222, 89, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 222, 89, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffde59;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 222, 89, 0.15);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    background: #073355;
    padding: 80px 0;
    color: #FFFFFF;
    text-align: center;
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-badge-large {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffde59;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffde59;
}

.guarantee-section p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Final CTA */
.final-cta {
    background: #FFFFFF;
    padding: 80px 0;
    color: #073355;
    text-align: center;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #073355;
}

.final-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.final-mockup {
    max-width: 300px;
}

/* Footer */
.footer {
    background: #073355;
    padding: 30px 0;
    text-align: center;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .video-testimonial iframe {
        height: 200px;
    }
    
    .offer-wrapper {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .installments {
        font-size: 1.6rem;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    .urgency-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .urgency-text {
        font-size: 14px;
    }
    
    .badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-button, .buy-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .offer-wrapper {
        padding: 20px 15px;
    }
    
    .installments {
        font-size: 1.4rem;
    }
    
    .cash-price {
        font-size: 1.1rem;
    }
    
    .final-title {
        font-size: 1.6rem;
    }
}