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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.main-logo {
    display: inline-flex;
    align-items: center;
    background-color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 8px;
    gap: 8px;
}

.logo-text {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 20px;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 40px 0 60px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 30px;
    object-fit: contain;
}

/* Partner Logo Placeholders */
.partner-logo-placeholder {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-brand {
    font-size: 12px;
    font-weight: 600;
}

.logo-brand.bodega {
    color: #E31837;
}

.logo-brand.walmart {
    color: #0071CE;
}

.logo-brand.bait {
    color: #1a1a2e;
    background-color: #1a1a2e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.logo-brand.walmart-express {
    color: #0071CE;
    font-size: 11px;
}

.logo-brand.cashi {
    color: #0071CE;
    font-weight: 700;
}

.logo-cart {
    margin-left: 5px;
}

.headline {
    font-size: 32px;
    font-weight: 700;
    color: #4A7CC9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.headline .highlight {
    color: #D4A542;
}

.price-section {
    margin-bottom: 25px;
}

.original-price {
    font-size: 16px;
    color: #D4A542;
    margin-bottom: 5px;
}

.strikethrough {
    text-decoration: line-through;
}

.new-price {
    font-size: 48px;
    font-weight: 700;
    color: #D4A542;
}

.info-box {
    background-color: #4A7CC9;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    max-width: 540px;
    margin: 0 auto 25px;
    font-size: 15px;
    line-height: 1.5;
}

.info-box strong {
    color: #FFD700;
}

.trial-section {
    margin-bottom: 25px;
}

.trial-text {
    color: #D4A542;
    font-size: 16px;
    margin-bottom: 5px;
}

.trial-subtext {
    color: #D4A542;
    font-size: 14px;
}

.countdown-section {
    margin-bottom: 30px;
}

.countdown-title {
    color: #4A7CC9;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    background-color: #D4A542;
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.time-label {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
}

.code-section {
    margin-bottom: 25px;
}

.code-input-box {
    border: 2px dashed #4A7CC9;
    border-radius: 8px;
    padding: 15px 30px;
    display: inline-block;
    max-width: 400px;
    margin-bottom: 10px;
}

.code-text {
    color: #4A7CC9;
    font-size: 18px;
    font-weight: 600;
}

.code-note {
    color: #D4A542;
    font-size: 12px;
}

.cta-button {
    display: inline-block;
    padding: 15px 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button-disabled {
    background-color: #D4A542;
    color: #fff;
}

.cta-button-gold {
    background-color: #D4A542;
    color: #fff;
}

.cta-button-gold:hover {
    background-color: #c49935;
    transform: translateY(-2px);
}

.scroll-arrow {
    margin-top: 50px;
}

.scroll-arrow svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Benefits Blue Section */
.benefits-blue {
    background-color: #4A7CC9;
    padding: 60px 0;
    text-align: center;
}

.section-title-white {
    color: #FFD700;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle-white {
    color: #fff;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.benefits-title {
    color: #FFD700;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 450px;
    text-align: left;
}

.phone-mockup {
    flex-shrink: 0;
}

.phone-image {
    width: 140px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Phone Frame Placeholder */
.phone-frame {
    width: 140px;
    height: 280px;
    background-color: #1a1a2e;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-screen.recetas {
    background: linear-gradient(180deg, #2d8b7a 0%, #1a5d4e 100%);
}

.phone-screen.reto {
    background-color: #1a1a2e;
}

.screen-text {
    color: #FFD700;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.screen-label {
    background-color: #4A7CC9;
    color: #fff;
    padding: 8px 15px;
    font-size: 10px;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.screen-list {
    padding: 15px;
    width: 100%;
}

.list-item {
    background-color: #333;
    height: 40px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.feature-content {
    color: #fff;
}

.feature-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-title-dark {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-text-light {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #ccc;
}

.feature-text-light strong {
    color: #fff;
}

.feature-highlight {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
}

.feature-highlight-gold {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
}

/* Welcome Kit Section */
.welcome-kit {
    background-color: #fff;
    padding: 80px 0;
}

.kit-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.kit-text {
    flex: 1;
    max-width: 450px;
}

.kit-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-gold {
    color: #D4A542;
}

.kit-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.kit-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #D4A542;
    margin-bottom: 15px;
}

.kit-list {
    list-style: none;
}

.kit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.check-icon {
    color: #4A7CC9;
    font-weight: 700;
    flex-shrink: 0;
}

.kit-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.kit-image {
    max-width: 100%;
    height: auto;
    transform: rotate(-5deg);
}

/* Infographic Stack Placeholder */
.infographic-stack {
    position: relative;
    width: 350px;
    height: 400px;
}

.infographic-card {
    position: absolute;
    width: 200px;
    height: 280px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.infographic-card.card-1 {
    top: 0;
    right: 0;
    transform: rotate(5deg);
    z-index: 3;
}

.infographic-card.card-2 {
    top: 30px;
    left: 50px;
    transform: rotate(-3deg);
    z-index: 2;
}

.infographic-card.card-3 {
    bottom: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.card-header {
    background-color: #4A7CC9;
    color: #fff;
    padding: 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.card-header-blue {
    background-color: #4A7CC9;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-around;
}

.age-range {
    background-color: #fff;
    color: #4A7CC9;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

.card-content {
    padding: 20px;
}

.card-line {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 12px;
}

.card-line.short {
    width: 70%;
}

/* Loyalty Section */
.loyalty-section {
    background-color: #4A7CC9;
    padding: 60px 0;
    text-align: center;
}

.loyalty-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.loyalty-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 40px;
}

.loyalty-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.discount-cards {
    display: flex;
    gap: 30px;
}

.discount-card {
    background-color: transparent;
    border: 2px dashed #fff;
    border-radius: 12px;
    padding: 30px 40px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discount-value {
    font-size: 48px;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 10px;
}

.discount-text {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
}

.loyalty-cta {
    text-align: left;
}

.loyalty-message {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 250px;
    line-height: 1.5;
}

/* How To Apply Section */
.how-to-apply {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.how-to-title {
    font-size: 28px;
    font-weight: 700;
    color: #4A7CC9;
    margin-bottom: 15px;
}

.how-to-subtitle {
    font-size: 16px;
    color: #D4A542;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.step {
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #D4A542;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-text {
    font-size: 14px;
    color: #D4A542;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.testimonials-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.testimonials-wave svg {
    width: 100%;
    height: 100px;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    color: #4A7CC9;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 320px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background-color: #4A7CC9;
    padding: 60px 0;
}

.faq-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #4A7CC9;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #2d3a4f;
    padding: 40px 0;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Footer Logo Placeholders */
.footer-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.footer-brand {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-brand.beesure {
    color: #FFD700;
}

.footer-brand.zurich {
    color: #fff;
}

.powered-by {
    color: #999;
    font-size: 9px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Scroll to Top Button */
.scroll-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4A7CC9;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(74, 124, 201, 0.4);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-button:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .kit-content {
        flex-direction: column;
        text-align: center;
    }

    .kit-text {
        max-width: 100%;
    }

    .kit-list li {
        justify-content: center;
    }

    .loyalty-content {
        flex-direction: column;
    }

    .loyalty-cta {
        text-align: center;
    }

    .loyalty-message {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 26px;
    }

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

    .info-box {
        padding: 15px 20px;
        font-size: 14px;
    }

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

    .time-box {
        padding: 12px 18px;
        min-width: 75px;
    }

    .time-value {
        font-size: 28px;
    }

    .cta-button {
        padding: 12px 40px;
        font-size: 14px;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .infographic-stack {
        width: 280px;
        height: 320px;
    }

    .infographic-card {
        width: 160px;
        height: 220px;
    }

    .phone-frame {
        width: 120px;
        height: 240px;
    }

    .section-title-white,
    .benefits-title,
    .kit-title,
    .loyalty-title,
    .how-to-title,
    .testimonials-title {
        font-size: 24px;
    }

    .discount-cards {
        flex-direction: column;
    }

    .discount-card {
        padding: 25px 35px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .partner-logos {
        gap: 10px;
    }

    .partner-logo {
        height: 20px;
    }

    .headline {
        font-size: 22px;
    }

    .new-price {
        font-size: 36px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .time-box {
        padding: 10px 15px;
        min-width: 65px;
    }

    .time-value {
        font-size: 24px;
    }

    .time-label {
        font-size: 12px;
    }

    .code-input-box {
        padding: 12px 20px;
    }

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

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }

    .phone-image {
        width: 120px;
    }

    .discount-value {
        font-size: 40px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .scroll-top-button {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .whatsapp-button,
    .scroll-top-button {
        display: none;
    }
}
