/* Reset y variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #DC2626;
    --primary-dark: #991B1B;
    --secondary-color: #00B56B;
    --accent-color: #F59E0B;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-dark: #111827;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 18px rgba(47, 43, 61, 0.16);
    z-index: 1000;
    transition: var(--transition);
    height: 64px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    gap: 16px;
    position: relative;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Navegación */
.header-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-50% - 88px));
}

.nav-link {
    color: #2B2845;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00B56B;
}

/* Botones de acción */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Menú hamburguesa para móvil */
.mobile-menu-toggle {
    display: none; /* Hidden by default - only shown in mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
    min-width: 40px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: #F3F4F6;
}

.menu-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(1200%) hue-rotate(200deg) brightness(95%) contrast(90%);
    display: block;
    visibility: visible;
    opacity: 1;
    object-fit: contain;
}

/* Menú móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 260px;
    background: white;
    box-shadow: -4px 0 18px rgba(47, 43, 61, 0.16);
    z-index: 999;
    transform: translateX(100%); /* Start off-screen to the right */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Overlay para el menú móvil */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
    background-color: #F3F4F6;
}

.menu-close-icon {
    font-size: 24px;
    font-weight: bold;
    color: #2A2A3E;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Navegación móvil */
.mobile-navigation {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: #2B2845;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    transition: color 0.2s ease;
}

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

/* Acciones móviles */
.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

/* Selector de idioma móvil */
.mobile-language-selector {
    position: relative;
}

.mobile-language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-language-button:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
}

.mobile-language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.mobile-language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Botón distribuidor móvil */
.mobile-distributor-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-distributor-button:hover {
    background: #008A4F;
    transform: translateY(-1px);
}

/* Selector de idioma */
.language-selector {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #EFEFEF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.language-button:hover {
    background: #E5E7EB;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    margin-top: 4px;
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #F9FAFB;
}

.language-option.active {
    background: #EFF6FF;
    color: #1D4ED8;
}

.language-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.flag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-image {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.country-code {
    font-size: 14px;
    font-weight: 500;
    color: #2B2845;
}

.language-text {
    font-size: 14px;
    font-weight: 500;
    color: #2B2845;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botón Soy Distribuidor */
.distributor-button {
    padding: 12px 16px;
    background: #00B56B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.distributor-button:hover {
    background: #00B56B;
    transform: translateY(-1px);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.btn-primary {
    background: #00B56A;
    color: white;
}

.btn-primary:hover {
    background: #00B56B; /* Verde oscuro */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 181, 106, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.catalog-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(2000%) hue-rotate(90deg) brightness(110%) contrast(120%);
    flex-shrink: 0;
    transition: filter 0.2s ease;
}

.btn-outline:hover .catalog-icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: white;
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
    box-sizing: border-box;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #2A2A3E;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-stats {
    display: flex;
    gap: 43px;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
}

.stat {
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #FF001A;
    margin-bottom: 0;
    line-height: 1;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-label {
    font-size: 1rem;
    color: #6A6A8A;
    text-transform: lowercase;
    line-height: 1;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Image */
.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.hero-main-image:hover {
    transform: translateY(-5px);
}

/* Conversational Search Section */
.conversational-search {
    padding: 80px 0;
    background: white;
    position: relative;
    background-image: url('images/fondo seccion chat.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.conversational-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.conversational-search-container {
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.conversational-search-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    width: 100%;
}

.conversational-search-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #2B2845;
    display: block !important;
    width: 100%;
    clear: both;
}

.conversational-search-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #17253C;
    max-width: 628px;
    margin: 0 auto;
    display: block !important;
    width: 100%;
    clear: both;
}

.search-interface {
    max-width: 100%;
}

.search-input-container {
    background: white;
    border: 2px solid #DDDDE8;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 32px;
    box-shadow: 
        0 8px 10px -6px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: #F8F9FA;
    border: 1px solid #DDDDE8;
    border-radius: 14px;
    padding: 16px 20px;
    gap: 8px;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-robot-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.search-send-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.search-divider {
    width: 1px;
    height: 20px;
    background: #DDDDE8;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #2B2845;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: #666A8F;
}

.search-button {
    background: #00B56B;
    border: none;
    border-radius: 14px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 4px 6px -4px rgba(0, 0, 0, 0.1),
        0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.search-button:hover {
    background: #00B56B;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 8px -4px rgba(0, 0, 0, 0.1),
        0 15px 20px -3px rgba(0, 0, 0, 0.1);
}

.search-suggestions {
    text-align: center;
}

.suggestions-title {
    font-size: 1rem;
    color: #666A8F;
    margin-bottom: 24px;
}

.suggestions-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    overflow: hidden;
}

.suggestion-btn {
    background: #F8F9FA;
    border: 2px solid #DDDDE8;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 
        0 2px 4px -2px rgba(0, 0, 0, 0.1),
        0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.suggestion-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 6px -2px rgba(0, 0, 0, 0.1),
        0 6px 8px -1px rgba(0, 0, 0, 0.1);
}

.suggestions-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2px 0;
    flex: 1;
    justify-content: center;
    max-width: 100%;
}

.suggestions-scroll::-webkit-scrollbar {
    display: none;
}

.suggestion-item {
    background: white;
    border: 2px solid #DDDDE8;
    border-radius: 14px;
    padding: 18px 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.suggestion-item:hover {
    border-color: #00B56B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.suggestion-item::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestion-item:hover::after {
    opacity: 1;
}

.suggestion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.suggestion-icon-img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(40%) sepia(8%) saturate(1000%) hue-rotate(200deg) brightness(95%) contrast(85%);
}

.suggestion-text {
    font-size: 1rem;
    font-weight: 500;
    color: #2B2845;
    font-family: 'Inter', sans-serif;
}

/* Responsive para Conversational Search */
@media (max-width: 500px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn-large {
        width: 100% !important;
        max-width: calc(100% - 32px) !important;
        padding: 1.25rem 1.5rem !important;
        font-size: 0.875rem !important;
        margin: 0 16px !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        height: 52px !important;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #E53E3E;
        line-height: 1;
        margin-bottom: 0.5rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-label {
        font-size: 1rem;
        color: #2A2A3E;
        font-weight: 500;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .conversational-search {
        padding: 40px 0;
    }
    
    .conversational-search-container {
        padding: 0 16px;
    }
    
    .conversational-search-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .conversational-search-description {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .search-input-container {
        padding: 24px;
        flex-direction: column;
        gap: 20px;
    }
    
    .search-input {
        font-size: 1.125rem;
        padding: 18px 20px;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .search-button {
        width: 100%;
        height: 48px;
    }
    
    .suggestions-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .suggestions-scroll {
        max-width: 100%;
        justify-content: center;
        padding: 0 20px;
        gap: 12px;
    }
    
    .suggestion-item {
        min-width: 220px;
        padding: 20px 28px;
    }
    
    .suggestion-text {
        font-size: 1.125rem;
    }
    
    .benefits-container {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .benefits-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .benefits-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .benefits-description {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
    }
    
    .benefits-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
        width: 100%;
    }
    
    .benefit-card {
        text-align: center;
        padding: 1.5rem;
        max-width: 100% !important;
        box-sizing: border-box;
        width: 100% !important;
        flex-shrink: 0;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .benefit-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
    
    .how-it-works-container {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .how-it-works-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .how-it-works-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .how-it-works-description {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
    }
    
    .steps-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem;
        width: 100%;
    }
    
    .step-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        padding: 0.5rem;
        max-width: 100% !important;
        box-sizing: border-box;
        width: 100% !important;
        flex-shrink: 0;
    }
    
    .step-card.reverse {
        flex-direction: column !important;
    }
    
    .step-content {
        order: 1 !important;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.125rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 0.0625rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.0625rem;
    }
    
    .step-description {
        font-size: 1rem;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0.125rem;
    }
    
    .step-video {
        order: 2 !important;
        margin-top: 0;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
        height: auto;
        min-height: 276px;
    }
    
    .step-gif {
        width: 100%;
        height: auto;
        max-height: 414px;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .save-more-container {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .save-more-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .save-more-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .save-more-description {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
    }
    
    .llegamos-tienda-container {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .llegamos-tienda-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .llegamos-tienda-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .llegamos-tienda-description {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .testimonios-container {
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .testimonios-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .testimonios-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .testimonios-description {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
    }
    
    .testimonios-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        width: 100%;
    }
    
    .testimonio-card {
        text-align: center;
        padding: 1.5rem;
        max-width: 100% !important;
        box-sizing: border-box;
        width: 100% !important;
        flex-shrink: 0;
    }
    
    .testimonio-text {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonio-author {
        margin-top: 0.5rem !important;
    }
    
    .author-name {
        font-size: 1.125rem;
    }
    
    .author-location {
        font-size: 0.875rem;
    }
    
    .testimonios-rating {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .rating-stars {
        margin-bottom: 0.5rem;
    }
    
    .faq-container {
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
    }
    
    .faq-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(100% - 32px) !important;
        margin: 0 16px !important;
        max-width: calc(100% - 32px) !important;
        box-sizing: border-box;
    }
    
    .faq-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .faq-description {
        font-size: 1.125rem !important;
        text-align: center;
        max-width: 100%;
    }
    
    .faq-item {
        margin: 0 16px 1rem 16px;
        max-width: calc(100% - 32px) !important;
        box-sizing: border-box;
        width: calc(100% - 32px) !important;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }
    
    .faq-answer p {
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-container {
        padding: 0 16px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 !important;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 16px 0 !important;
        gap: 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .cta-title {
        font-size: 1.38rem !important;
        text-align: center !important;
        white-space: normal !important;
        max-width: calc(100% - 16px) !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2 !important;
        padding: 0 !important;
        margin: 0 8px !important;
        width: calc(100% - 16px) !important;
    }
    
    .cta-button {
        width: calc(100% - 16px) !important;
        max-width: calc(100% - 16px) !important;
        height: 52px;
        font-size: 1rem;
        padding: 14px 28px;
        margin: 0 8px;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .conversational-search-title {
        font-size: 2.5rem;
    }
    
    .conversational-search-description {
        font-size: 1.125rem;
    }
    
    .search-input-container {
        padding: 16px;
    }
    
    .suggestion-item {
        padding: 14px 20px;
        min-width: 180px;
    }
    
    .suggestion-text {
        font-size: 0.9rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-container {
    max-width: 1265px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefits-header {
    text-align: center;
    max-width: 749px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.highlight-red {
    color: var(--primary-color);
}

.highlight-black {
    color: #000000;
}

.benefits-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 47px;
    align-items: stretch;
}

.benefit-card {
    background: #F9F9FA;
    border: 1px solid #DEDEE8;
    border-radius: 8px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    height: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF001A;
    font-size: 1.5rem;
}

.benefit-svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2A2A3E;
    margin: 0;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.benefit-description {
    font-size: 0.875rem;
    color: #6A6A8A;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works-container {
    max-width: 1265px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.how-it-works-header {
    text-align: center;
    max-width: 749px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.how-it-works-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 196px;
    align-items: center;
    min-height: 456px;
    overflow: hidden;
}

.step-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.step-card.reverse .step-content {
    order: 2;
}

.step-card.reverse .step-video {
    order: 1;
}

.step-content {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 621px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
}

.step-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF001A;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111A26;
    margin: 0;
    line-height: 1.2;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6A6A8A;
    margin: 0;
}

.step-video {
    position: relative;
    width: 377px;
    height: 456px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    width: 237px;
    height: 456px;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9F9FA;
    border: 1px solid #DEDEE8;
    border-radius: 8px;
}

.video-placeholder i {
    font-size: 3rem;
    color: #FF001A;
    z-index: 1;
}

.video-placeholder span {
    z-index: 1;
    font-weight: 500;
}

.step-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    z-index: 2;
    position: relative;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00B56B;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-content {
    padding: 1.5rem;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border-color);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.chart-section {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chart-trend {
    background: #00B56B;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* Save More Section */
.save-more {
    padding: 80px 0;
    background: white;
}

.save-more-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.save-more-header {
    text-align: center;
    max-width: 749px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.save-more-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FF001A;
    margin: 0;
}

.save-more-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

/* Carrusel de ofertas */
.offers-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: auto;
    transition: transform 0.6s ease-in-out;
    width: 1800%;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    width: 5.555%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    transition: all 0.6s ease-in-out;
    padding: 0 20px;
    flex-shrink: 0;
    position: relative;
}


.slide-image {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

.slide-content {
    background: transparent;
    padding: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00B56A;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: #00B56B;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Products Section */
.products-section {
    flex: 1;
}

.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards de Productos - Estilo Instacart */
.product-card.instacart-style {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 200px;
}

.product-card.instacart-style:hover {
    transform: none;
    box-shadow: none;
}

/* Contenedor de imagen con botón superpuesto */
.product-image-container {
    position: relative;
    width: 100%;
    height: 160px;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

/* Quantity Selector */
.quantity-selector {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

/* Botón inicial Add */
.quantity-btn.initial-btn {
    background: #00B56B;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 181, 106, 0.3);
    transition: all 0.2s ease;
}

.quantity-btn.initial-btn:hover {
    background: #00A55A;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 181, 106, 0.4);
}

.add-icon {
    font-size: 1rem;
    font-weight: bold;
}

.add-text {
    font-size: 0.75rem;
}

/* Controles de cantidad */
.quantity-controls {
    background: #00B56B;
    border: 2px solid #00B56B;
    border-radius: 20px;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 181, 106, 0.3);
    animation: expandQuantity 0.3s ease-out;
}

@keyframes expandQuantity {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Botones de acción */
.quantity-btn.action-btn {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.75rem;
}

.quantity-btn.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.quantity-btn.delete-btn {
    color: white;
}

.quantity-btn.decrease-btn {
    color: white;
}

.quantity-btn.add-btn {
    color: white;
}

/* Display de cantidad */
.quantity-display {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    min-width: 20px;
    text-align: center;
}

/* Íconos del quantity selector */
.quantity-btn .icon {
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Estado "filled" del botón inicial */
.quantity-btn.initial-btn.filled-state {
    background: #00B56B;
    color: white;
}

.quantity-btn.initial-btn.filled-state:hover {
    background: #00A55A;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 181, 106, 0.4);
}

/* Badge de producto */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF0036;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 5;
}

/* Precio estilo Instacart */
.product-price {
    margin: 12px 0 8px 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2845;
    line-height: 1;
}

.price-cents {
    font-size: 1rem;
    font-weight: 600;
    color: #2B2845;
    vertical-align: top;
}

/* Nombre del producto */
.product-name {
    font-size: 0.8rem;
    font-weight: 400;
    color: #374151;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

/* Rating con estrellas */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    font-size: 0.875rem;
    color: #D1D5DB;
}

.star.filled {
    color: #FCD34D;
}

.star.half {
    color: #FCD34D;
    opacity: 0.5;
}

.rating-count {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Tamaño del producto */
.product-size {
    font-size: 0.75rem;
    color: #6B7280;
    margin: 0;
}

/* Estilos legacy para compatibilidad */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    position: relative;
    border: 1px solid #E5E7EB;
}

.current-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2A2A3E;
}

.original-price {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-decoration: line-through;
}

.product-discount {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #FF001A;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.875rem;
    color: #6A6A8A;
    line-height: 1.4;
    margin-top: 8px;
}

/* Search Sidebar */
.search-sidebar {
    background: #F9F9FA;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    margin-bottom: 20px;
}

.back-btn {
    background: none;
    border: none;
    color: #6A6A8A;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #E5E7EB;
}

.search-bar {
    position: relative;
    margin-bottom: 20px;
}

.search-bar i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6A6A8A;
    font-size: 0.875rem;
}

.search-bar input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid #DEDEE8;
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
    outline: none;
}

.search-bar input:focus {
    border-color: #FF001A;
}

.filter-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    background: white;
    border: 1px solid #DEDEE8;
}

.filter-tab.active {
    background: #FF001A;
    color: white;
    border-color: #FF001A;
}

.filter-tab i {
    font-size: 0.875rem;
}

.filter-tab span {
    font-size: 0.875rem;
    font-weight: 500;
}

.badge {
    position: absolute;
    right: 8px;
    background: #6A6A8A;
    color: white;
    font-size: 0.625rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.filter-tab.active .badge {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #DEDEE8;
}

.sidebar-product-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.sidebar-product-info span {
    font-size: 0.75rem;
    color: #6A6A8A;
    line-height: 1.3;
}

/* Offers Section */
.offers-section {
    text-align: center;
    margin-top: 40px;
}

.offers-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A2A3E;
    margin-bottom: 12px;
}

.offers-description {
    font-size: 0.875rem;
    color: #6A6A8A;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offers-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.nav-arrow {
    background: #F9F9FA;
    border: 1px solid #DEDEE8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A6A8A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #FF001A;
    color: white;
    border-color: #FF001A;
}

/* Llegamos hasta tu tienda Section */
.llegamos-tienda {
    padding: 80px 0;
    background: #F9F9FA;
}

.llegamos-tienda-container {
    max-width: 1429px;
    margin: 0 auto;
    padding: 0 80px;
}

.llegamos-tienda-content {
    display: flex;
    align-items: center;
    gap: 142px;
    background: #F9F9FA;
    border-radius: 0;
    padding: 0;
}

.llegamos-tienda-text {
    flex: 1;
    max-width: 476px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.llegamos-tienda-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.llegamos-tienda-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

.llegamos-tienda-image {
    flex: 1;
    max-width: 632px;
    height: 622px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tienda-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f0f0f0);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #666;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.tienda-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9F9FA;
    border: 1px solid #DEDEE8;
    border-radius: 8px;
}

.tienda-image-placeholder i {
    font-size: 4rem;
    color: #FF001A;
    z-index: 1;
}

.tienda-image-placeholder span {
    z-index: 1;
    font-weight: 500;
}

/* Testimonios Section */
.testimonios {
    padding: 80px 0;
    background: white;
}

.testimonios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonios-header {
    text-align: center;
    max-width: 749px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonios-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

.testimonios-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.testimonio-card {
    background: #F9F9FA;
    border-radius: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 482px;
    position: relative;
}

.testimonio-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF001A;
    font-size: 1.5rem;
}

.testimonio-stars {
    display: flex;
    gap: 0;
    align-items: center;
}

.testimonio-stars i {
    color: #FF9F00;
    font-size: 1.2rem;
}

.testimonio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666A8F;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 1rem;
}

.author-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2A2A3E;
    margin: 0;
    line-height: 1.2;
}

.author-location {
    font-size: 0.875rem;
    color: #2A2A3E;
    margin: 0;
}

.testimonios-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px auto 0;
    max-width: 600px;
    text-align: center;
}

.rating-stars {
    display: flex;
    gap: 0;
    align-items: center;
}

.rating-stars i {
    color: #FF9F00;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1rem;
    color: #666A8F;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 832px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.faq-header {
    text-align: center;
    max-width: 749px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2A2A3E;
    margin: 0;
}

.faq-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2A2A3E;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #F9F9FA;
    border: 1px solid #E6E7EB;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #F9F9FA;
    border: none;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #111A26;
    margin: 0;
}

.faq-icon {
    color: #000;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 32px 24px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #666A8F;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background: #F9FAFB;
}

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

.coverage-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.coverage-text {
    flex: 1;
    max-width: 476px;
}

.coverage-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2B2845;
    margin: 0 0 25px 0;
}

.coverage-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2B2845;
    margin: 0;
}

.coverage-image {
    flex: 1;
    max-width: 632px;
}

.coverage-map {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: transparent;
    border: none;
}

.cta-container {
    max-width: 1265px;
    margin: 0 auto;
    padding: 0 80px;
}

.cta-content {
    background: #F9F9FA;
    border: 1px solid #DEDEE8;
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111A26;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.cta-button {
    background: #00B56A;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
    height: 48px;
    justify-content: center;
}

.cta-button:hover {
    background: #00B56B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 181, 106, 0.3);
}

.cta-button i {
    font-size: 1.25rem;
}

/* Secciones */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Productos Section */
.products {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
}

/* Beneficios Section */
.benefits {
    padding: 80px 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header h4 {
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.chart-placeholder {
    grid-column: 1 / -1;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    opacity: 0.1;
}

/* Testimonios Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-container {
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    color: white;
}

.footer-section p {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Coverage Section Responsive */
@media (max-width: 768px) {
    .coverage {
        padding: 60px 0;
    }
    
    .coverage-container {
        padding: 0 16px;
    }
    
    .coverage-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .coverage-text {
        max-width: 100%;
    }
    
    .coverage-title {
        font-size: 2.5rem;
    }
    
    .coverage-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .coverage {
        padding: 40px 0;
    }
    
    .coverage-container {
        padding: 0 12px;
    }
    
    .coverage-content {
        gap: 30px;
    }
    
    .coverage-title {
        font-size: 2.5rem;
    }
    
    .coverage-description {
        font-size: 1.125rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-navigation {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .language-button {
        padding: 8px 12px;
    }
    
    .distributor-button {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .header-container {
        padding: 0 16px;
    }
    
    .header-navigation {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-right: 16px;
    }
    
    .header-logo {
        flex: 1;
        justify-content: flex-start;
        min-width: 0;
        padding: 0;
        margin-left: 16px;
    }
    
    .logo-image {
        height: 24px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .nav-actions {
        display: none;
    }
}

/* Media query de 360px eliminada - se maneja con la media query principal de 500px */