/*--------------------------------------------------------------
# 1. VARIABLES
--------------------------------------------------------------*/
:root {
    /* Colors */
    --color-primary: #02305C; /* Navy */
    --color-secondary: #d4af37; /* Gold */
    --color-accent: #f39c12; /* Accent gold */
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-gray: #6c757d;
    --color-light-gray: #e9ecef;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-secondary) 0%, #f5d76e 100%);
    --gradient-premium: linear-gradient(135deg, var(--color-secondary) 0%, #e6c34a 50%, #d4af37 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-premium: 0 10px 30px rgba(212, 175, 55, 0.15);
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.7s ease;
    --transition-premium: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/*--------------------------------------------------------------
# 2. RESET & BASE STYLES
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    /* Priority List mobile styles */
    .priority-list {
        padding: 60px 0;
    }
    
    .priority-list .shopper-content {
        gap: 30px;
    }
    
    .priority-list .shopper-text h2 {
        font-size: 1.8rem;
    }
    
    .priority-list .shopper-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .priority-list .shopper-image img {
        max-width: 90%;
        box-shadow: var(--shadow-md);
    }
    
    .priority-list .benefits-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .priority-list .cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }

    /* Urgency text mobile styles */
    .urgency-text {
        font-size: 1rem;
        line-height: 1.4;
        padding: 12px 15px;
        margin: 15px auto;
        max-width: 100%;
        background: var(--color-light);
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-sm);
        border-left: 4px solid var(--color-secondary);
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
    }

    .urgency-text i {
        color: var(--color-secondary);
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .urgency-text .highlight {
        display: inline;
        white-space: normal;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 50px;
    }
    
    /* Priority List small mobile styles */
    .priority-list {
        padding: 50px 0;
    }
    
    .priority-list .shopper-text h2 {
        font-size: 1.6rem;
    }
    
    .priority-list .shopper-image img {
        max-width: 100%;
        border-radius: var(--border-radius-md);
    }
    
    .priority-list .benefits-list {
        width: 100%;
        padding: 0 10px;
    }
    
    .priority-list .benefits-list li {
        font-size: 0.9rem;
    }
    
    .priority-list .cta-btn {
        font-size: 0.95rem;
        max-width: 250px;
    }

    /* Urgency text small mobile styles */
    .urgency-text {
        font-size: 1rem;
        padding: 12px;
        margin: 15px auto;
        border-left-width: 3px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

/*--------------------------------------------------------------
# 3. LAYOUT
--------------------------------------------------------------*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1; /* Allow container to fill the section height */
}

.section {
    min-height: 100vh; /* Make sections match full desktop height */
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.urgency-text {
    text-align: center;
    line-height: 1.6;
}

/* Exception for Telegram VIP section */
.exclusive-community.section {
    min-height: auto; /* Allow natural height */
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# 4. COMPONENTS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 4.1 Buttons
--------------------------------------------------------------*/
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-premium);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
}

.primary-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.primary-btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.gradient-btn {
    background: var(--gradient-primary);
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
}

.gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    background: var(--gradient-premium);
}

.gradient-btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Button loading state */
.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Button ripple effect */
.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/*--------------------------------------------------------------
# 5. PAGE SECTIONS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 5.1 Header
--------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-fast);
    padding: 20px 0;
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.scrolled .logo {
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
}

.scrolled .main-nav ul li a {
    color: var(--color-dark);
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-fast);
}

.main-nav ul li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: var(--color-white);
    padding: 10px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.scrolled .menu-toggle span {
    background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# 5.2 Hero Section
--------------------------------------------------------------*/
.hero {
    height: 100vh; /* Altura completa de la pantalla */
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px; /* Espacio para los hero-features */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #02305C; /* Navy overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    max-width: 800px;
    padding-top: 80px; /* Add padding to account for header */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
}

.hero-content h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero-content h1.active:after {
    width: 150px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: var(--transition-fast);
}

.whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Priority List Section */
.priority-list {
    background-color: var(--color-light);
    padding: 120px 0;
}

.priority-list .shopper-content {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.priority-list .shopper-text {
    flex: 1;
    max-width: 55%;
}

.priority-list .shopper-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.priority-list .shopper-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-premium);
    transform: translateY(0);
}

.priority-list .shopper-image img:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.priority-list .cta-container {
    margin-top: 40px;
}

.priority-list .benefits-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

.priority-list .benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    line-height: 1.4;
}

.priority-list .benefits-list li i {
    color: var(--color-secondary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.priority-list .cta-btn {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-premium);
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
}

.priority-list .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    background-color: var(--color-accent);
}

/* Exclusive Community Section */
.exclusive-community {
    background-color: var(--color-white);
}

.community-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.community-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 61, 98, 0) 100%);
    z-index: 0;
}

.card-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.community-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.community-card p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Personal Shopper Section */
.personal-shopper {
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Add decorative elements */
.shopper-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.shopper-text {
    flex: 1;
    padding: 0 20px;
}

.shopper-text h2 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.shopper-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
}

.shopper-text h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.shopper-text p {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.shopper-image {
    flex: 1;
    position: relative;
}

.shopper-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-premium);
    transform: perspective(1000px) rotateY(-5deg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shopper-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Add premium frame effect */
.shopper-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: var(--border-radius-lg);
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-premium);
}

.shopper-image:hover::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-white);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 35px;
    position: relative;
    transition: var(--transition-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid var(--color-secondary);
    transform: translateY(0);
    overflow: hidden;
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background: var(--gradient-premium);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

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

.testimonial-quote {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-size: 24px;
    color: var(--color-secondary);
    opacity: 0.7;
    margin-bottom: 15px;
}

.testimonial-quote i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.testimonial-rating {
    margin: 0 0 20px 0;
    color: var(--color-secondary);
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 25px;
    flex-grow: 1;
    padding-left: 28px;
    position: relative;
}

.testimonial-text i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-secondary);
    font-size: 18px;
    opacity: 0.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-gray);
    display: block;
}

.testimonial-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--color-secondary);
    width: 25px;
    border-radius: 10px;
}

.testimonial-arrows {
    display: flex;
    gap: 15px;
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-arrow:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-premium);
    position: relative;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--color-secondary);
    box-shadow: var(--shadow-premium);
}

.social-tooltip {
    position: absolute;
    left: 55px;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.social-tooltip:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent var(--color-dark) transparent transparent;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pulse-once {
    animation: pulseOnce 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pulseOnce {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Form success message */
.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 30px;
}

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

.footer-logo .logo {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: 1.8rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social .social-links a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-on-scroll-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-on-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.reveal-on-scroll-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.stagger-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.stagger-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Nav ripple effect */
.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: navRipple 0.6s ease-out;
}

@keyframes navRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Priority List Section Styles */
.priority-list {
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-image: linear-gradient(to bottom, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 1)), url('../assets/images/pattern-bg.png');
    background-size: 400px;
}

.priority-list::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(100px, -150px);
}

.priority-card {
    display: flex;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-premium);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

/* Add premium corner accent */
.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    opacity: 0.1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

.priority-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    padding: 30px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

/* Add animated background effect */
.priority-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    animation: rotate-bg 15s linear infinite;
    pointer-events: none;
}

.priority-icon i {
    font-size: 3rem;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.priority-text {
    padding: 35px;
    flex: 1;
}

.priority-text h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.priority-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-secondary);
}

.priority-text p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-list {
    margin: 30px 0;
    position: relative;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: transform 0.3s ease;
    padding-left: 5px;
}

.benefits-list li:hover {
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--color-secondary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-container {
    margin-top: 35px;
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    background: var(--gradient-premium);
    color: var(--color-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition-premium);
    position: relative;
    overflow: hidden;
}

/* Add shine effect on hover */
.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.cta-btn:hover::after {
    left: 100%;
    opacity: 1;
    transition: all 0.8s ease;
}

.cta-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

.urgency-text {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.urgency-text i {
    color: #e74c3c;
    margin-right: 8px;
}

.highlight {
    color: var(--color-secondary);
    font-weight: 600;
    margin-left: 0.4em;
}

/* Enhanced Hero Section Styles */

/* Premium Label */
.premium-label {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Value Propositions */
.value-propositions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: nowrap;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
}

.value-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 5px;
}

.value-item i {
    color: var(--color-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

/* Outline Button */
.outline-btn {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
    box-shadow: none;
}

.outline-btn:hover {
    background-color: var(--color-secondary);
    color: #f5c518;
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.client-count {
    font-size: 0.95rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.rating span {
    font-weight: 600;
    margin-left: 5px;
}

.limited-offer {
    position: absolute;
    top: 100px;
    right: 0;
    background: var(--gradient-primary);
    color: var(--color-dark);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: pulse-offer 2s infinite;
}

.limited-offer i {
    color: var(--color-primary);
}

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

/* Mejoras profesionales para el hero */

/* Badge premium con corona */
.premium-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5c518, #e2a100);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-badge i {
    margin-right: 10px;
    color: #fff;
}

.premium-label {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mejoras en el título */
.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    color: #f5c518;
    position: relative;
}

.hero h1 .highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
}

/* Mejoras en las propuestas de valor */
.value-propositions {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 30px 0;
}

.value-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
}

.value-item i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    display: block;
}

.value-item span {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    line-height: 1.4;
}

/* Descripción del hero */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

/* Mejoras en los botones CTA */
.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.primary-btn, .outline-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.primary-btn {
    background: linear-gradient(135deg, #f5c518, #e2a100);
    color: #fff;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.outline-btn {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Prueba social mejorada */
.social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-count i {
    color: #f5c518;
    font-size: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #f5c518;
}

/* Estadísticas de mercado */
.market-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #f5c518;
    display: block;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Características mejoradas */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .hero-features-wrapper {
        position: relative;
        margin-top: 30px;
        width: 100%;
        margin-left: 0;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
        animation: fadeInUp 1s ease-out forwards;
    }
    
    .feature-item {
        width: calc(50% - 10px);
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding-bottom: 0; /* Ya no necesitamos espacio extra */
    }
    
    .hero-features-wrapper {
        position: relative;
        margin-top: 20px;
        width: 100%;
        margin-left: 0;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 1s ease-out forwards;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        animation: fadeIn 0.5s ease-out forwards;
        animation-delay: calc(var(--item-index, 0) * 0.2s);
    }
    
    .feature-item:nth-child(1) {
        --item-index: 1;
    }
    
    .feature-item:nth-child(2) {
        --item-index: 2;
    }
    
    .feature-item:nth-child(3) {
        --item-index: 3;
    }
    
    /* Usando la animación fadeIn global */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
    opacity: 0;
}

.feature-item:nth-child(1) {
    --item-index: 1;
}

.feature-item:nth-child(2) {
    --item-index: 2;
}

.feature-item:nth-child(3) {
    --item-index: 3;
}

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

.feature-item i {
    font-size: 24px;
    color: #f5c518;
}

/* Botón de WhatsApp mejorado */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 24px;
}

/* Oferta limitada mejorada */
.limited-offer {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee0979);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(238, 9, 121, 0.3);
    z-index: 100;
    max-width: 300px;
}

.limited-offer i {
    font-size: 24px;
    color: #fff;
}

.limited-offer span {
    text-align: center;
    font-size: 15px;
}

.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.timer {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.animated-border {
    position: relative;
}

.animated-border:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animaciones */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

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

.value-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.value-time i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.value-time span {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

/*--------------------------------------------------------------
# 6. RESPONSIVE STYLES
--------------------------------------------------------------*/

/* Media Queries */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .value-propositions {
        gap: 20px;
    }
    
    .hero-features {
        gap: 30px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .shopper-content {
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .shopper-content {
        flex-direction: column;
    }
    
    .shopper-image {
        margin-top: 40px;
    }
    
    /* Priority List responsive styles */
    .priority-list {
        padding: 80px 0;
    }
    
    .priority-list .shopper-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .priority-list .shopper-text,
    .priority-list .shopper-image {
        max-width: 100%;
    }
    
    .priority-list .shopper-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .priority-list .shopper-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .priority-list .shopper-image img {
        max-width: 80%;
        margin: 0 auto;
        transition: transform 0.5s ease;
    }
    
    .priority-list .shopper-image img:hover {
        transform: scale(1.05);
    }
    
    .priority-list .benefits-list {
        display: inline-block;
        text-align: left;
        margin: 20px auto 30px;
    }
    
    .priority-list .cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-sidebar {
        left: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .priority-card {
        flex-direction: column;
    }
    
    .priority-icon {
        min-width: 100%;
        padding: 20px;
    }
    
    .personal-shopper {
        padding: 100px 0;
    }
    
    .shopper-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo .logo {
        font-size: 1.6rem;
    }
    
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-social .social-links a {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .header {
        background-color: var(--color-white);
        box-shadow: var(--shadow-sm);
        padding: 15px 0;
    }
    
    .header .container {
        justify-content: center;
    }
    
    .logo {
        color: var(--color-primary);
        font-size: 1.6rem;
    }
    
    .menu-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: var(--color-white);
        padding: 8px;
        border-radius: 50%;
        box-shadow: 0 4px 0px rgba(0, 0, 0, 0.12);
    }
    
    .menu-toggle span {
        background-color: var(--color-primary);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-white);
        padding: 80px 30px 30px;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
    }
    
    .main-nav ul li a {
        color: var(--color-dark);
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .value-propositions {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-item {
        width: 100%;
        padding: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .market-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-features {
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
    }
    
    .feature-item {
        width: calc(50% - 10px);
        padding: 15px;
    }
    
    .priority-card {
        flex-direction: column;
    }
    
    .priority-icon {
        min-width: 100%;
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
    
    .limited-offer {
        position: static;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    .personal-shopper {
        padding: 80px 0;
    }
    
    .shopper-content {
        gap: 25px;
    }
    
    .shopper-text {
        padding: 0 20px;
        text-align: center;
    }
    
    .shopper-text h2 {
        font-size: 1.6rem;
        white-space: normal !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .shopper-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .shopper-text h3 {
        font-size: 1.2rem;
        white-space: normal !important;
    }
    
    .shopper-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .shopper-content {
        flex-direction: column;
    }
    
    .benefits-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        background-color: rgba(10, 61, 98, 0.9);
        padding: 20px;
        margin-top: 30px;
        border-radius: var(--border-radius-md);
    }
    
    .feature-item {
        width: 100%;
        padding: 12px 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius-sm);
        justify-content: flex-start;
    }
    
    .feature-item i {
        font-size: 1.4rem;
        min-width: 30px;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-contact p i {
        margin-right: 8px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        padding-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-badge {
        padding: 6px 12px;
    }
    
    .premium-label {
        font-size: 12px;
    }
    
    .feature-item {
        width: 100%;
        padding: 12px;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .whatsapp-btn i {
        font-size: 1rem;
    }
    
    .social-sidebar {
        display: none;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .personal-shopper {
        padding: 60px 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .value-item {
        padding: 15px;
    }
    
    .value-item i {
        font-size: 1.5rem;
    }
    
    .value-item span {
        font-size: 0.9rem;
    }
    
    .hero-cta-group .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .social-proof {
        padding: 15px;
    }
    
    .client-count {
        font-size: 0.9rem;
    }
    
    .rating i {
        font-size: 0.8rem;
    }
    
    .rating span {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .priority-text h3 {
        font-size: 1.4rem;
    }
    
    .priority-text p {
        font-size: 0.95rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
    }
    
    .benefits-list li i {
        font-size: 1rem;
    }
    
    .hero-features {
        padding: 15px;
        margin-top: 20px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo .logo {
        font-size: 1.4rem;
    }
    
    .footer h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 8px;
    }
    
    .footer-social .social-links a {
        width: 30px;
        height: 30px;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: 12px;
    }
    
    .value-item i {
        font-size: 1.3rem;
    }
    
    .value-item span {
        font-size: 0.85rem;
    }
    
    .hero-cta-group .btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .social-proof {
        padding: 12px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .whatsapp-btn i {
        font-size: 0.9rem;
    }
}

/* Landscape Mode Optimizations */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-content {
        padding: 20px 0;
    }
    
    .hero-features {
        position: relative;
        margin-top: 30px;
    }
    
    .main-nav {
        padding: 60px 20px 20px;
    }
    
    .main-nav ul li {
        margin-bottom: 10px;
    }
    
    .main-nav ul li a {
        font-size: 1rem;
        padding: 8px 0;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        font-weight: 700;
    }
    
    .btn {
        font-weight: 600;
    }
    
    .main-nav ul li a {
        font-weight: 500;
    }
}

/* Print Styles */
@media print {
    .header,
    .social-sidebar,
    .whatsapp-btn,
    .menu-toggle,
    .menu-backdrop {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero {
        min-height: auto;
        background: none;
    }
    
    .hero-video-container,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: #000;
    }
    
    .btn {
        display: none;
    }
    
    .footer {
        background: none;
        color: #000;
    }
    
    .footer-social .social-links {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .social-icon:hover,
    .testimonial-card:hover,
    .feature-item:hover {
        transform: none !important;
    }
    
    .btn:active,
    .social-icon:active,
    .testimonial-card:active,
    .feature-item:active {
        transform: scale(0.98) !important;
    }
    
    .main-nav ul li a:after {
        display: none;
    }
    
    .main-nav ul li a:active {
        color: var(--color-secondary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-white: #121212;
        --color-light: #1e1e1e;
        --color-dark: #ffffff;
        --color-gray: #b0b0b0;
        --color-light-gray: #2d2d2d;
    }
    
    .header.scrolled {
        background-color: var(--color-white);
    }
    
    .main-nav {
        background-color: var(--color-white);
    }
    
    .main-nav ul li a {
        color: var(--color-dark);
    }
    
    .testimonial-card {
        background-color: var(--color-light);
    }
    
    .priority-card {
        background-color: var(--color-light);
    }
}

/* Accessibility Improvements */
@media (prefers-contrast: more) {
    :root {
        --color-primary: #000000;
        --color-secondary: #ffcc00;
        --color-accent: #ff9900;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .main-nav ul li a {
        font-weight: 700;
    }
}

/* Large Screen Optimizations */
@media screen and (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .value-item {
        padding: 30px;
    }
    
    .value-item i {
        font-size: 2rem;
    }
    
    .value-item span {
        font-size: 1.2rem;
    }
    
    .hero-cta-group .btn {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 1.1rem;
    }
}

/* Ajuste de alineación de urgency-text en sección personal-shopper */
.personal-shopper .urgency-text {
    display: block;
}
.personal-shopper .urgency-text i {
    display: inline-block;
    margin-right: 8px;
}
.personal-shopper .urgency-text .highlight {
    white-space: nowrap;
}