/* Vanki Design System - CSS Variables */
:root {
    /* Colors - HSL Values */
    --color-primary: 231 84% 58%;
    --color-primary-glow: 234 100% 70%;
    --color-secondary: 283 89% 74%;
    --color-accent: 38 92% 50%;
    --color-success: 142 76% 36%;
    
    --color-background: 0 0% 100%;
    --color-foreground: 222.2 84% 4.9%;
    --color-muted: 210 40% 96.1%;
    --color-muted-foreground: 215.4 16.3% 46.9%;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(231 84% 58%), hsl(283 89% 74%));
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%), hsl(231 84% 98%));
    --gradient-button: linear-gradient(135deg, hsl(231 84% 58%), hsl(234 100% 70%));
    --gradient-Unique: linear-gradient(135deg, hsl(38 92% 50%), hsl(45 100% 60%));
    --gradient-accent: linear-gradient(135deg, hsl(38 92% 50%), hsl(45 100% 60%));
    --gradient-card-strong: linear-gradient(145deg, hsla(239, 81%, 49%, 0.619), hsl(239, 66%, 48%));
    
    /* Shadows */
    --shadow-card: 0 10px 30px -10px hsl(231 84% 58% / 0.2);
    --shadow-hero: 0 20px 60px -20px hsl(231 84% 58% / 0.3);
    --shadow-glow: 0 0 40px hsl(234 100% 70% / 0.4);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --grid-gap: 2rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-cards > .feature-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(152, 152, 24, 0.801)!important;
    transition: all 0.3s ease;
}

.feature-cards > .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1)!important;
    border-color: rgba(236, 197, 6, 0.854)!important;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: hsl(var(--color-foreground));
    background-color: hsl(var(--color-background));
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-xl); }

p {
    margin-bottom: 1rem;
    color: hsl(var(--color-muted-foreground));
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-hero {
    background: var(--gradient-button);
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    box-shadow: var(--shadow-hero);
    transform: translateY(-2px) scale(1.05);
}

.btn-Unique {
    background: var(--gradient-Unique);
    color: rgb(255, 255, 255);
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-Unique:hover {
    box-shadow: var(--shadow-hero);
    transform: translateY(-2px) scale(1.05);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-card);
}

.btn-success {
    background: hsl(var(--color-success));
    color: white;
    box-shadow: var(--shadow-card);
}

.btn-secondary {
    background: #01139be8;
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1c30c9e8;
    transform: translateY(-2px);
}

.btn-dark {
    background: #000;
    color: white;
}

.btn-dark:hover {
    background: #333;
}

.btn-white {
    background: white;
    color: hsl(var(--color-primary));
    font-weight: 700;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-ghost {
    font-weight: 600;
    color: rgb(73, 132, 240);
}

.btn-ghost:hover {
    background: rgba(14, 13, 13, 0.1);
}

.btn-sm { padding: 0.5rem 0.75rem; font-size: var(--font-size-xs); }
.btn-lg { padding: 0.75rem 2rem; font-size: var(--font-size-base); }
.btn-xl { 
    padding: 0.8rem 2rem; 
    font-size: 1rem; 
    border-radius: 8px;
}
.btn-rounded { border-radius: 9999px; }

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

/* Utility Classes */
.text-white { color: white !important; }
.text-center { text-align: center; }

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

/* Header Section */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--color-muted));
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: hsl(var(--color-primary));
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 0.1rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: hsl(var(--color-muted-foreground));
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: hsl(var(--color-primary));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: hsl(var(--color-primary));
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    background: #1b55c0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
    color: white;
    position: relative;
    overflow: visible;
}

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

/* Mobile-specific styles for hero section */
.hero-content {
    position: relative;
}

.hero-title-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-image-mobile {
    display: none;
    width: 100px;
    margin-left: 1rem;
    animation: float 6s ease-in-out infinite;
}

.hero-image-mobile img {
    width: 142%;
    height: auto;
    display: grid;
    margin-left: -40px !important;
}

.hero-title {
    font-size: calc(var(--font-size-4xl) + 1vw);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-light { opacity: 0.8; }
.text-secondary { color: #0ce7ffae; }
.text-accent { color: #0928a0; }

.hero-description {
    font-size: var(--font-size-base);
    max-width: 600px;
    margin-bottom: 1.5rem;
    color: rgba(240, 238, 238, 0.95);
    line-height: 1.6;
}

.hero-section .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.hero-section .feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: default;
}

.hero-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.hero-section .feature.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-icon svg {
    stroke: rgb(255, 255, 255);
    fill: none;
}

.hero-section .feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.hero-section .feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.hero-section .feature-card h3 {
    font-size: 0.9rem;
    margin: 0.4rem 0 0.2rem;
    color: white;
    font-weight: 500;
}

.hero-section .feature-card p {
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-info {
    color: rgba(255, 255, 255, 0.861);
    font-size: var(--font-size-sm);
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.image-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-hero);
    position: relative;
}

.image-container img {
    width: 105%;
    height: auto;
    display: block;
}   

/* About Section */
.about-section {
    padding: 3rem 0;
    background: hsl(var(--color-background));
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    color: hsl(var(--color-foreground));
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--font-size-xl);
    max-width: 48rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-title {
    color: hsl(var(--color-foreground));
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0;
}

.stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    background: var(--gradient-card);
}

.stat-primary { background: var(--gradient-button); }
.stat-accent { background: var(--gradient-accent); }
.stat-success { background: hsl(var(--color-success)); }
.stat-secondary { background: hsl(var(--color-secondary)); }

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: rgb(244, 244, 244);
}

.stat-infinite {
    font-size: 6rem;
    line-height: 1;
    display: block;
    margin: -0.5rem 0;
    padding: 0.5rem 0;
}

.stat-label {
    font-size: var(--font-size-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid;
    transition: var(--transition-smooth);
}

.border-primary { border-left-color: hsl(var(--color-primary)); }
.border-secondary { border-left-color: hsl(var(--color-secondary)); }
.border-accent { border-left-color: hsl(var(--color-accent)); }
.border-success { border-left-color: hsl(var(--color-success)); }

.value-card h4 {
    color: hsl(var(--color-foreground));
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    background-color: #f8fafc;
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f0f0f0e4 100%);
}

.benefits-main {
    background: linear-gradient(135deg, #1a3a8f 0%, #3b82f6 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    margin: 1rem auto 2rem;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefits-main::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="%23426BFF" opacity="0.03"/></svg>');
    background-size: cover;
    z-index: 0;
}

.benefits-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0;
    margin-right: 1.5rem;
    max-width: 100%;
}

.benefits-title {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
}

.benefits-text {
    font-size: 1.1rem;
    color: #e1e1e1;
    text-align: left;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 90%;
    margin: 0 auto;
}

.reward-card {
    background: rgba(255, 255, 255, 0.128);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border-left: 1px solid;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100px;
}

.reward-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.reward-icon {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.reward-card:hover .reward-icon {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.15);
}

.reward-card h4 {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.reward-card p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    padding: 0 0.25rem;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.reward-card.border-primary { border-left: 3px solid #60a5fa; }
.reward-card.border-secondary { border-left: 3px solid #a78bfa; }
.reward-card.border-accent { border-left: 3px solid #f59e0b; }
.reward-card.border-success { border-left: 3px solid #34d399; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    justify-content: center;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.benefits-grid .benefit-card:nth-child(1) .benefit-icon svg {
    color: #4A6CF7;
    stroke: #4A6CF7;
}

.benefits-grid .benefit-card:nth-child(2) .benefit-icon svg {
    color: #10B981;
    stroke: #10B981;
}

.benefits-grid .benefit-card:nth-child(3) .benefit-icon svg {
    color: #F59E0B;
    stroke: #F59E0B;
}

.benefits-grid .benefit-card:nth-child(4) .benefit-icon svg {
    color: #EC4899;
    stroke: #EC4899;
}

.benefits-grid .benefit-card:nth-child(5) .benefit-icon svg {
    color: #8B5CF6;
    stroke: #8B5CF6;
}

.benefits-grid .benefit-card:nth-child(6) .benefit-icon svg {
    color: #3B82F6;
    stroke: #3B82F6;
}

.benefits-grid .benefit-card:nth-child(7) .benefit-icon svg {
    color: #10A5D6;
    stroke: #10A5D6;
}

.benefits-grid .benefit-card:nth-child(8) .benefit-icon svg {
    color: #06B6D4;
    stroke: #06B6D4;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.benefit-card h4 {
    color: hsl(var(--color-foreground));
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: var(--font-size-sm);
}

.progress-highlight {
    text-align: center;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: inline-block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.benefits-image {
    display: none;
}

/* Casa Bonita Section */
.casa-bonita-section {
    padding: 3rem 0 4rem;
    background: hsl(var(--color-background));
    position: relative;
    overflow: hidden;
}

.casa-bonita-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1rem;
}

.casa-bonita-content {
    padding: 1rem;
}

.casa-bonita-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(var(--color-primary));
}

.casa-bonita-text {
    margin-bottom: 0.75rem;
    font-size: var(--font-size-base);
    color: hsl(var(--color-text));
    line-height: 1.4;
}

.casa-bonita-features {
    display: grid;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.casa-bonita-cta {
    background: hsl(var(--color-background));
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    margin-top: 1rem;
}

.casa-bonita-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    min-height: 350px;
}

.casa-bonita-image img {
    width: 167%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    margin-top: -1%;
}

.image-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.badge-success {
    background: hsl(var(--color-success));
}

.image-info {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--gradient-Unique);
    color: white !important;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: var(--font-size-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casa-bonita-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.casa-bonita-features .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    background-color: rgba(243, 244, 246, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.casa-bonita-features .feature-card {
    border-left: 2px solid;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: -2px 0 0 0 currentColor;
}

.casa-bonita-features .feature-card > * {
    position: relative;
    z-index: 1;
}

.casa-bonita-features .feature-card:hover {
    transform: translateY(-2px) scale(1.02) !important;
    background-color: rgba(231, 232, 233, 0.509);
}

.casa-bonita-features .feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-primary .feature-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.bg-accent .feature-icon {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.bg-success .feature-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.bg-secondary .feature-icon {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.casa-bonita-features .feature-text {
    flex: 1;
}

.casa-bonita-features .feature-card h4 {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.casa-bonita-features .feature-card p {
    color: #4a5568;
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.4;
}

.bg-primary { 
    background: rgba(243, 244, 246, 0.9);
    color: #3b82f6;
}
.bg-accent { 
    background: rgba(243, 244, 246, 0.9);
    color: #f59e0b;
}
.bg-success { 
    background: rgba(243, 244, 246, 0.9);
    color: #10b981;
}
.bg-secondary { 
    background: rgba(243, 244, 246, 0.9);
    color: #8b5cf6;
}

/* CTA Section */
.cta-section {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(to bottom, hsl(var(--color-background)) 0%, hsl(var(--color-background)) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section .section-title,
.cta-section .section-description {
    color: #000;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-card {
    background: var(--gradient-card-strong);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
}

.cta-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 1rem 0 0.75rem;
    color: white;
    line-height: 1.3;
}

.cta-card p {
    font-size: var(--font-size-base);
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cta-card small {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 0.5rem;
}

.cta-card i {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 1.5rem 0 0.5rem;
    background-color: hsl(var(--color-background));
    text-align: center;
}

.contact-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 2rem;
    color: hsl(var(--color-foreground));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid hsl(var(--color-muted));
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px hsl(231 84% 58% / 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-button);
    border-radius: 50%;
    color: white;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--color-foreground));
}

.contact-card p {
    color: hsl(var(--color-muted-foreground));
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
}

/* Dark text for emphasis */
.dark-text {
    color: hsl(0, 0%, 20%);
    font-weight: 500;
}

.contact-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-button);
    color: white !important;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -5px hsl(231 84% 58% / 0.5);
    text-decoration: none !important;
}

.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

/* Footer Section */
footer {
    background: #030530f7;
    color: white;
    padding: 0;
    margin-top: -1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 3rem 1rem 0 1rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-column:first-child {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 1rem !important;
    width: 100%;
}

.footer-logo-container {
    display: none;
}

.footer-logo {
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
}

.footer-text {
    opacity: 0.9;
    line-height: 1.4;
    margin-top: 0rem;
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link,
.footer-contact a {
    color: white;
    opacity: 0.9;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover,
.footer-contact a:hover {
    color: white;
    opacity: 1;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-contact .whatsapp-link {
    color: #4ade80;
    text-decoration: none;
}

.footer-contact .whatsapp-link:hover {
    color: #86efac;
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.footer-description {
    margin-bottom: 0rem;
    max-width: 300px;
    opacity: 0.9;
    line-height: 2;
    color: hsl(215.4deg 2.69% 89.37%);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 1rem 0;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom > * {
    flex: 1;
    min-width: fit-content;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: left;
    margin-bottom: 0;
}

.footer-made-with {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-program {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-program-link {
    color: #c7d7ec;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-program-link:hover {
    color: #3b82f6; /* Color azul para el hover */
    text-decoration: underline;
}

.footer-heart {
    width: 1rem;
    height: 1rem;
    color: #f87171;
    fill: currentColor;
}

/* Responsive Design */
@media (min-width: 768px) {
    .benefits-main {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .benefits-content {
        flex: 1;
        padding-right: 2rem;
    }
    
    .benefits-image {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        margin-right: -1%;
    }
}

@media (min-width: 1024px) {
    .benefits-image {
        display: flex;
        flex: 0 0 35%;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .benefits-image img {
        width: 114%;
        height: auto;
        border-radius: 0.75rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 8px solid white;
        transform: scale(1.1);
        transform-origin: right center;
        object-fit: cover;
        margin-top: 6%!important;
    }
}

@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
    
    .contact-card {
        min-width: 160px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .benefits-main,
    .casa-bonita-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casa-bonita-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .casa-bonita-features .feature-card {
        min-height: 100px;
        padding: 1.6rem 1rem 1rem 0.5rem;
    }
    
    .casa-bonita-features .feature-card h4 {
        font-size: 1rem;
    }
    
    .casa-bonita-features .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title-container {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-title {
        flex: 1;
        margin: 0;
        white-space: nowrap; /* Mantiene el texto en una línea */
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-image-mobile {
        display: block;
        flex-shrink: 0;
        width: 120px; /* Tamaño base aumentado */
    }
    
    /* Ajustes para pantallas medianas (375px - 413px) */
    @media (min-width: 375px) and (max-width: 413px) {
        .hero-image-mobile {
            width: 150px;
        }
    }
    
    /* Ajustes para pantallas grandes (414px - 480px) */
    @media (min-width: 414px) and (max-width: 480px) {
        .hero-image-mobile {
            width: 170px;
        }
    }
    
    /* Ajustes para tablets pequeñas (481px - 600px) */
    @media (min-width: 481px) and (max-width: 600px) {
        .hero-image-mobile {
            width: 190px;
        }
    }
    
    /* Ajustes para tablets medianas (601px - 768px) */
    @media (min-width: 601px) and (max-width: 768px) {
        .hero-image-mobile {
            width: 220px;
        }
    }
    
    /* iPhone SE y teléfonos pequeños (menos de 375px) */
    @media (max-width: 374px) {
        .hero-title {
            font-size: 1.5rem;
        }
        .hero-image-mobile {
            width: 85px;
        }
    }
    
    /* iPhone 12 Pro, Galaxy S20, etc. (375px - 413px) */
    @media (min-width: 375px) and (max-width: 413px) {
        .hero-title {
            font-size: 1.65rem;
        }
        .hero-image-mobile {
            width: 95px;
        }
    }
    
    /* Teléfonos grandes y pequeños tablets (414px - 480px) */
    @media (min-width: 414px) and (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }
        .hero-image-mobile {
            width: 110px;
        }
    }
    
    .hero-image {
        display: none;
    }
    
    .nav-wrapper > a.btn-hero {
        display: none !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-section .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }
    
    .footer-column:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        height: 40px;
        margin: 0 0.5rem 0 0;
        display: inline-block;
        vertical-align: middle;
    }
    
    .footer-column:first-child {
        margin-bottom: 2rem;
    }
    
    .footer-description {
        margin: 0 auto 2rem;
        max-width: 100%;
    }
    
    .footer-links,
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: space-evenly;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 0;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem !important;
        padding-bottom: 0 !important;
    }
    
    .footer-columns-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 0.5rem !important;
        width: 100%;
    }
    
    .footer-column {
        text-align: center;
        padding: 3 1rem;
    }
    
    .footer-links,
    .footer-contact {
        padding: 4px;
        margin: 24px;
        list-style: none;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 0.5rem;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0rem!important;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: var(--color-primary-glow);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-copyright,
    .footer-legal {
        font-size: 0.8rem;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal-link {
        font-size: 0.8rem;
    }
    
    .casa-bonita-features {
        grid-template-columns: 1fr;
    }
    
    .casa-bonita-features .feature-card {
        padding: 1rem;
    }
    
    .casa-bonita-features .feature-card h4 {
        font-size: 1rem;
        text-align: left;
    }
    
    .casa-bonita-features .feature-card p {
        font-size: 0.8125rem;
        text-align: left;
    }
    
    .benefits-main {
        flex-direction: column;
    }
    
    .benefits-content {
        order: 1;
        width: 100%;
    }
    
    .benefits-image {
        order: 2;
        padding: 0 2rem;
        width: 103%;
        margin-left: 7.5%;
    }

    .rewards-grid {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .reward-card {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 0.95rem;
        gap: 0.2rem;
    }
    
    .reward-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
}


/* Ajustes para móvil */
@media (max-width: 768px) {
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-card {
        padding: 1.5rem 1rem;
        min-height: auto;
        border-radius: 0.75rem;
        margin: 0;
        width: 100%;
    }
    
    .cta-card h3 {
        font-size: 1.25rem;
        margin: 0.75rem 0 0.5rem;
    }
    
    .cta-card p {
        font-size: 0.9375rem;
        margin: 0 0 1.25rem;
    }
    
    .cta-card i {
        font-size: 2rem;
        width: 56px;
        height: 56px;
    }
    
    .cta-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    html {
        font-size: 16px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
}