/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Prosegur Alarmas - Premium Refactor)
   ========================================================================== */

:root {
    /* Colors */
    --bg-primary: #F7F5EF;       /* Ivory / Warm light background */
    --bg-secondary: #FFFFFF;     /* White card background */
    --bg-gray-light: #F9FAFB;    /* Light gray for forms / background elements */
    --border-color: #E5E7EB;     /* Soft border gray */
    
    --text-primary: #111111;     /* Graphite/Carbon main text */
    --text-secondary: #4B5563;   /* Muted gray for descriptions */
    --text-muted: #9CA3AF;       /* Placeholder / legal text */
    
    --primary: #F6C700;          /* Prosegur Yellow (Brand Accent) */
    --primary-light: #FFDC33;
    --primary-dark: #C69F00;
    
    --orange-accent: #E27D18;    /* Corporate Orange (Secondary Accent) */
    --whatsapp: #25D366;         /* WhatsApp Green */
    --whatsapp-dark: #1EBE57;
    
    /* JS Hook Compatibility Variables */
    --black: #111111;
    --white: #FFFFFF;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    
    /* Animation & Fonts */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Outfit', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: 18px; /* General text size increased */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section,
.section,
.content-section {
    padding-top: 36px;
    padding-bottom: 36px;
}

@media (min-width: 768px) {
    section,
    .section,
    .content-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

a {
    transition: var(--transition);
}

/* ==========================================================================
   A. HERO SECTION & CAMPAIGN BLOCK
   ========================================================================== */

.hero-section,
.hero-banner-wrap,
.hero-container {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background: #FFD700;
}

.hero-section img,
.hero-banner-wrap img,
.hero-container img,
.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.campaign-section,
.program-section,
.intro-section,
.content-section {
    margin-top: 0;
    padding-top: 36px;
}

.campaign-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(247, 245, 239, 0.5) 100%);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .campaign-section,
    .program-section,
    .intro-section,
    .content-section {
        padding-top: 28px;
    }
}

@media (min-width: 768px) {
    .campaign-section {
        padding-top: 36px;
        padding-bottom: 48px;
    }
}

.campaign-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 24px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.campaign-pretitle,
.program-label,
.badge-program,
.eyebrow {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #1A1A1A;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFD700, #F6C700);
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .campaign-pretitle,
    .program-label,
    .badge-program,
    .eyebrow {
        font-size: 26px;
        padding: 12px 24px;
    }
}

.campaign-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin: 8px 0;
}

@media (max-width: 768px) {
    .campaign-title {
        font-size: 32px;
    }
}

.campaign-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.campaign-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px auto;
    width: 100%;
    max-width: 900px;
}

@media (min-width: 768px) {
    .campaign-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-reward-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.benefit-reward-card.card-hogar {
    border-top: 5px solid var(--primary); /* Prosegur Yellow accent line */
}

.benefit-reward-card.card-negocio {
    border-top: 5px solid var(--orange-accent); /* Orange accent line */
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    transition: var(--transition);
}

.card-hogar .card-icon-wrapper {
    background-color: rgba(246, 199, 0, 0.1);
    color: var(--primary-dark);
}

.card-negocio .card-icon-wrapper {
    background-color: rgba(226, 125, 24, 0.1);
    color: var(--orange-accent);
}

.benefit-reward-card:hover .card-icon-wrapper {
    transform: scale(1.1);
}

.benefit-reward-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-reward-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 8px 0 16px 0;
    letter-spacing: -1px;
}

.benefit-reward-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.campaign-footer-block {
    text-align: center;
    max-width: 800px;
    margin: 32px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.campaign-support-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
}

.campaign-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.btn-campaign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 18px;
    padding: 18px 22px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-sans);
    box-sizing: border-box;
    width: 100%;
    max-width: 380px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.btn-campaign-primary {
    background-color: var(--primary);
    color: var(--black);
    box-shadow: 0 10px 24px rgba(246, 199, 0, 0.25);
}

.btn-campaign-primary:hover {
    background-color: var(--black);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.3);
}

.btn-campaign-whatsapp {
    background-color: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.btn-campaign-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 190, 87, 0.35);
}

/* ==========================================================================
   B. REWARDS / BONOS SECTION
   ========================================================================== */

/* ==========================================================================
   B. REWARDS / BONOS SECTION
   ========================================================================== */

.bonos-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (min-width: 768px) {
    .bonos-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

/* Custom Header for Bonos Section */
.bonos-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonos-pretitle {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary); /* Prosegur Yellow #F6C700 */
    color: #000000;
    border: 2px solid #000000;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px; /* Reduced space */
    box-shadow: 0 4px 12px rgba(246, 199, 0, 0.15);
    text-align: center;
    line-height: 1.2;
}

.bonos-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 4px 0 10px 0; /* Reduced space */
    letter-spacing: -0.5px;
    text-align: center;
}

.bonos-paragraph {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 12px auto; /* Reduced space */
    text-align: center;
}

.bonos-footer-block {
    text-align: center;
    margin-top: 20px; /* Reduced space */
}

.bonos-support-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bonos-header {
        margin-bottom: 28px;
    }
    .bonos-pretitle {
        font-size: 17px;
        padding: 10px 26px;
    }
    .bonos-title {
        font-size: 38px;
        letter-spacing: -0.8px;
        margin-top: 6px;
        margin-bottom: 12px;
    }
    .bonos-paragraph {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .bonos-footer-block {
        margin-top: 28px;
    }
    .bonos-support-text {
        font-size: 16px;
    }
}

.section-title,
h2,
h3 {
    margin-bottom: 14px;
}

.section-title {
    text-align: center;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #111111;
}

p,
.section-description {
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}

.bonos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bono-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    transition: var(--transition);
    overflow: hidden;
}

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

.card-hogar {
    border-left: 6px solid var(--primary);
}

.card-hogar:hover {
    border-color: var(--primary);
}

.card-negocio {
    border-left: 6px solid var(--orange-accent);
}

.card-negocio:hover {
    border-color: var(--orange-accent);
}

.bono-card-content {
    flex: 1 1 58%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.bono-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.badge-yellow {
    background-color: rgba(246, 199, 0, 0.12);
    color: #8C6F00;
}

.badge-orange {
    background-color: rgba(226, 125, 24, 0.12);
    color: #A35100;
}

.bono-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.bono-amount {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1;
}

.card-hogar .bono-amount {
    color: #C69F00;
}

.card-negocio .bono-amount {
    color: var(--orange-accent);
}

.bono-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.reward-card img,
.bonus-card img,
.bono-img-file {
    width: 42%;
    max-width: 220px;
    min-width: 130px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bono-card:hover .bono-img-file {
    transform: scale(1.04);
}

/* ==========================================================================
   C. BENEFITS SECTION
   ========================================================================== */

/* Section C (Benefits) deleted as requested */

/* ==========================================================================
   D. FORM / REGISTRATION SECTION
   ========================================================================== */

.form-section {
    padding: 36px 18px;
    background-color: var(--bg-primary);
}

.form-main-title {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 26px auto;
    padding: 14px 24px;
    background: #FFD700;
    color: #111111;
    border-radius: 999px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .form-main-title {
        font-size: 38px;
        padding: 16px 32px;
    }
}

.referrer-card h3,
.form-card h3 {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 14px;
}

.form-card,
.referrer-card,
.referral-card,
.bonus-card,
.reward-card,
.bono-card {
    margin-bottom: 18px;
}

.form-card,
.referrer-card,
.referral-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.referral-card {
    background: #FCFCF8;
    border: 1.5px solid #E5E7EB;
}

.referral-card-title {
    font-size: 22px;
    font-weight: 900;
    color: #111111;
    margin-bottom: 14px;
    text-align: center;
}

label {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 64px;
    font-size: 19px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1.5px solid #D1D5DB;
    background: #FFFFFF;
    color: #111111;
    box-sizing: border-box;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #F6C700;
    box-shadow: 0 0 0 4px rgba(246, 199, 0, 0.18);
    background: #FFFFFF;
}

/* Custom select dropdown styling */
select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    padding-right: 48px;
    appearance: none;
    -webkit-appearance: none;
}

.form-group {
    margin-bottom: 14px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.btn-remove-referral {
    background: none;
    border: none;
    color: #EF4444;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-remove-referral:hover {
    background-color: rgba(239, 68, 68, 0.08);
}

@media (max-width: 480px) {
    .btn-remove-referral .btn-remove-text {
        display: none;
    }
}

.add-referral-btn,
.submit-referrals-btn {
    width: 100%;
    min-height: 64px;
    font-size: 19px;
    font-weight: 900;
    border-radius: 20px;
    padding: 18px 22px;
    margin-top: 14px;
    text-align: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.add-referral-btn {
    background: #1A1A1A;
    color: #FFFFFF;
}

.add-referral-btn:hover {
    background: #333333;
}

.submit-referrals-btn {
    background: #FFD700;
    color: #111111;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.submit-referrals-btn:hover:not(:disabled) {
    background: #E5B600;
    box-shadow: 0 12px 28px rgba(229, 182, 0, 0.45);
}

.submit-referrals-btn:disabled {
    background-color: #E5E7EB;
    color: #9CA3AF;
    box-shadow: none;
    cursor: not-allowed;
    border: 1px solid #D1D5DB;
}

.status-message {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.5;
    animation: msgSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes msgSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-message.success {
    background-color: #DEF7EC;
    border: 1px solid #BCF0DA;
    color: #03543F;
}

.status-message.error {
    background-color: #FDE8E8;
    border: 1px solid #FBD5D5;
    color: #9B1C1C;
}

@media (max-width: 600px) {
    .form-card {
        padding: 20px 16px;
        border-radius: 20px;
    }
    .referral-item {
        padding: 16px 12px;
    }
}

/* ==========================================================================
   F. TRUST BANNER
   ========================================================================== */

.trust-banner {
    background: linear-gradient(135deg, #F7F5EF 0%, #FFFFFF 100%);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.trust-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.trust-icon {
    font-size: 36px;
    color: #8C6F00;
    background-color: rgba(246, 199, 0, 0.12);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-message {
    font-size: 20px;
    font-weight: 500;
    color: #4B5563;
    line-height: 1.55;
    max-width: 600px;
}

/* Elegant descriptions */
.form-intro,
.form-description,
.section-description {
    font-size: 18px;
    line-height: 1.45;
    color: #4B5563;
    font-weight: 500;
}

.trust-visual-side {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.trust-illustration {
    width: 120px;
    height: auto;
}

/* ==========================================================================
   G. FINAL CONTACT LINKS (Clear / Premium)
   ========================================================================== */

.contact-links-final {
    margin-top: 32px;
    padding: 24px 18px 10px;
    text-align: center;
    border-top: 1px solid #E5E7EB;
}

.contact-links-final a {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
    margin: 10px auto;
    line-height: 1.4;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-links-final a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.contact-links-final .contact-label {
    font-size: 15px;
    font-weight: 700;
    color: #6B7280;
    margin-top: 14px;
}

.contact-links-final .whatsapp-link {
    color: #128C7E;
    transition: color 0.2s ease;
}

.contact-links-final .whatsapp-link:hover {
    color: #0d6b5e;
}

.contact-links-final .email-link {
    color: #1A1A1A;
    transition: color 0.2s ease;
}

.contact-links-final .email-link:hover {
    color: #4b5563;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablets & Smaller Desktops */
@media (min-width: 768px) {
    .section-title,
    .form-title,
    .referral-title,
    .step-title {
        font-size: 40px;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 40px;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .btn-hero {
        width: auto;
    }
    
    /* Bonos Cards */
    .bonos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
        margin: 0 auto;
    }
    

    
    /* Form */
    .form-grid-inputs {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group.full-width-input {
        grid-column: span 2;
    }
    
    .step-buttons-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .btn-primary-form {
        flex: 1;
    }
    
    .btn-secondary-form {
        flex-shrink: 0;
    }
    
    /* Referred List */
    .referidos-header {
        flex-direction: row;
        align-items: center;
    }
    
    .referidos-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Trust Banner */
    .trust-container {
        flex-direction: row;
        text-align: left;
    }
    
    .trust-text-side {
        flex-direction: row;
        text-align: left;
    }
    

}

/* Desktop and Large screens */
@media (min-width: 992px) {
    .campaign-title {
        font-size: 52px;
    }
    

    
    .form-wrapper-card {
        padding: 56px 64px;
    }
}

/* Mobile Adjustments (Double Check) */
@media (max-width: 576px) {
    .campaign-title {
        font-size: 32px;
    }
    
    .campaign-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .step-title {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .step-desc {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .reward-card,
    .bonus-card {
        display: flex;
        flex-direction: row; /* keep side-by-side */
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 24px 16px;
    }
    
    .bono-card-content {
        flex: 1 1 58%;
        align-items: flex-start;
        text-align: left;
    }
    
    .reward-card img,
    .bonus-card img,
    .bono-img-file {
        width: 42%;
        max-width: 170px;
        min-width: 100px;
        height: auto;
        object-fit: contain;
    }
}

/* Extra Small Mobile (Vertical stack option) */
@media (max-width: 440px) {
    .reward-card,
    .bonus-card {
        flex-direction: column-reverse; /* stack vertically */
        text-align: center;
        gap: 20px;
        padding: 24px 16px;
    }
    
    .bono-card-content {
        flex: 1 1 100%;
        align-items: center;
        text-align: center;
    }
    
    .reward-card img,
    .bonus-card img,
    .bono-img-file {
        width: 80%; /* large image when stacked */
        max-width: 220px;
        min-width: 130px;
        margin: 0 auto;
    }
}

/* Mobile Button Stacking and CTA Button spacing */
@media (max-width: 480px) {
    .button-group,
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .button-group a,
    .cta-buttons a,
    .button-group button,
    .cta-buttons button {
        width: 100%;
    }
}

/* FINAL OBLIGATORIO */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  overflow-x: hidden !important;
}

main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-section,
.hero,
.hero-container,
.hero-banner-wrap,
.hero-image-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  line-height: 0 !important;
  background: #FFD700 !important;
  overflow: hidden !important;
}

.hero-section img,
.hero img,
.hero-container img,
.hero-banner-wrap img,
.hero-image-wrapper img,
img[src="Hero.png"],
.hero-banner {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
}

.program-section,
.intro-section,
.content-section,
section:nth-of-type(2) {
  margin-top: 0 !important;
  padding-top: 24px !important;
}

