/* ==========================================
   ESTILOS BASE - QURE (NAVY/BLUE THEME)
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0f1e;
    --bg-secondary: #1a1f35;
    --bg-tertiary: #242d47;
    --bg-card: #1e2538;
    --bg-hover: #2a3550;
    
    --text-primary: #e5e7f0;
    --text-secondary: #a0a7c0;
    --text-tertiary: #707894;
    
    --accent-primary: #4d7cfe;
    --accent-secondary: #6b95ff;
    --accent-hover: #3a62d9;
    
    --border-color: #2a3550;
    --border-light: #38475e;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --whatsapp: #25d366;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================
   HEADER PRINCIPAL
========================================== */
.main-header {
    background: #ffffff;
    color: #1a1f35;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-left {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.main-logo {
    display: block;
    height: 50px;
    width: auto;
}

.header-nav {
    flex: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #1a1f35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-professional {
    background: var(--accent-primary);
    color: white;
}

.btn-professional:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 124, 254, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1f35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO BANNER
========================================== */
.hero-banner {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #3a62d9 100%);
    padding: 5rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.discount-banner {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #3a62d9 100%);
    color: white;
    padding: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(77, 124, 254, 0.2);
}

/* ==========================================
   MAIN CONTENT
========================================== */
.main-content {
    flex: 1;
    padding-bottom: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    padding: 0 1rem;
    color: var(--text-primary);
}

.category-section {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-primary);
    border-radius: 3px;
    color: var(--text-primary);
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    z-index: 100;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: none;
}

.sticky-header.active {
    transform: translateY(0);
}

.sticky-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-secondary);
    text-align: center;
}

/* ==========================================
   BADGES E INSIGNIAS
========================================== */
.desktop-badges,
.carousel-badges {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
}

.desktop-badge,
.carousel-badge,
.modal-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.7rem;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.badge-verified {
    background: var(--success);
    color: white;
}

.badge-top {
    background: var(--warning);
    color: white;
}

.badge-fast {
    background: #3b82f6;
    color: white;
}

.availability-indicator {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--bg-tertiary);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    z-index: 2;
}

.availability-indicator.available {
    color: var(--success);
}

.availability-indicator.soon {
    color: var(--warning);
}

/* ==========================================
   GRID DE PROFESIONALES - DESKTOP
========================================== */
.single-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    width: 320px;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 124, 254, 0.3);
    border-color: var(--accent-primary);
}

.desktop-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.desktop-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.desktop-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.desktop-subtitle {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.desktop-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.desktop-availability {
    margin-bottom: 0.8rem;
}

.desktop-availability .availability-indicator {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.desktop-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.desktop-price-current {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-primary);
}

.desktop-button {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.2s;
    font-size: 1rem;
}

.desktop-button:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ==========================================
   ESTILOS CARRUSEL
========================================== */
.carousel-section {
    padding: 2rem 0 1.5rem 0;
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 1rem;
}

.carousel-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-product-card {
    min-width: 300px;
    max-width: 300px;
    background: var(--bg-card);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.carousel-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(77, 124, 254, 0.3);
    border-color: var(--accent-primary);
}

.carousel-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carousel-product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.carousel-product-subtitle {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.carousel-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.carousel-view-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.2s;
    font-size: 0.95rem;
}

.carousel-view-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ==========================================
   MODAL DE PROFESIONAL
========================================== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    display: flex;
    opacity: 1;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.product-modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3001;
    animation: modalSlideUp 0.3s ease;
    border: 1px solid var(--border-light);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 3002;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: background 0.2s;
}

.product-modal-close:hover {
    background: var(--bg-hover);
}

.product-modal-body {
    display: flex;
    flex-direction: column;
}

.product-modal-image-container {
    width: 100%;
    height: 350px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.product-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.modal-badges-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-modal-info {
    padding: 2rem;
}

.product-modal-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-modal-subtitle {
    font-size: 1rem;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-modal-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(77, 124, 254, 0.1);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(77, 124, 254, 0.2);
}

.product-modal-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-modal-details {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.product-modal-details h4 {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-modal-details ul {
    list-style: none;
    padding: 0;
}

.product-modal-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.product-modal-details li:before {
    content: "✔";
    color: var(--success);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Opciones del modal */
.modal-option-group {
    margin-bottom: 1.8rem;
}

.modal-option-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    display: block;
}

.modal-option-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.modal-option-btn {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-option-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(77, 124, 254, 0.1);
}

.modal-option-btn.selected {
    border-color: var(--accent-primary);
    background: rgba(77, 124, 254, 0.2);
}

.modal-option-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.option-btn-main {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.option-btn-sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.option-btn-price {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.2rem;
    color: var(--accent-secondary);
}

/* Date Time Picker */
.datetime-picker-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.datetime-input-group {
    display: flex;
    flex-direction: column;
}

.datetime-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.datetime-input {
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.datetime-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.datetime-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.modal-textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.textarea-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.3rem;
}

.modal-file-input {
    width: 100%;
    padding: 0.8rem;
    border: 2px dashed var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-file-input:hover {
    border-color: var(--accent-primary);
}

.file-preview {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-preview-item {
    background: rgba(77, 124, 254, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(77, 124, 254, 0.2);
}

.file-preview-name {
    flex: 1;
    color: var(--text-primary);
}

.file-preview-size {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.product-modal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.modal-add-cart-btn {
    flex: 1;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.modal-add-cart-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.modal-add-cart-btn.added {
    background: var(--success);
}

/* ==========================================
   BARRA FIJA INFERIOR - CARRITO
========================================== */
.cart-summary-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent-primary);
    padding: 1.2rem 1rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

.cart-summary-bar.active {
    display: flex;
}

.cart-summary-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-items-count {
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.cart-total {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.view-cart-btn {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    min-width: 180px;
}

.view-cart-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ==========================================
   SIDEBAR CARRITO
========================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-card);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-color);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    position: relative;
}

.cart-sidebar-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.close-sidebar {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: background 0.2s;
}

.close-sidebar:hover {
    background: var(--bg-hover);
}

.cart-items-list {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.empty-cart-message {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
}

.empty-cart-message p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cart-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.cart-item-professional {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.cart-item-title {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    font-weight: 600;
}

.cart-item-remove {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.3);
}

.cart-item-details {
    margin-bottom: 0.8rem;
}

.cart-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cart-detail-icon {
    flex-shrink: 0;
}

.cart-comments {
    font-style: italic;
    color: var(--text-tertiary);
}

.cart-item-price {
    font-weight: bold;
    color: var(--accent-primary);
    font-size: 1.1rem;
    text-align: right;
}

.cart-sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.cart-total-row span:last-child {
    font-weight: bold;
    color: var(--accent-primary);
}

.cart-info-text {
    text-align: center;
    margin-bottom: 1rem;
}

.cart-info-text small {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.send-whatsapp-btn {
    background: var(--whatsapp);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-whatsapp-btn:hover {
    background: #1ea952;
    transform: scale(1.02);
}

/* ==========================================
   CHECKOUT OVERLAY
========================================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-overlay.active {
    display: flex;
    opacity: 1;
}

.checkout-modal {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    animation: modalSlideUp 0.3s ease;
    border: 1px solid var(--border-light);
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.checkout-close:hover {
    background: var(--bg-hover);
}

.checkout-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.checkout-submit-btn {
    background: var(--whatsapp);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.checkout-submit-btn:hover {
    background: #1ea952;
}

/* ==========================================
   FOOTER
========================================== */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: auto;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-primary);
}

.footer-legal span {
    color: var(--text-tertiary);
}

/* OCULTAR ELEMENTOS MOBILE EN DESKTOP */
.mobile-content,
.mobile-image-container {
    display: none;
}

/* ==========================================
   RESPONSIVE - TABLET
========================================== */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
========================================== */
@media (max-width: 768px) {
    /* Header móvil */
    .main-header {
        padding: 0.8rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .main-logo {
        height: 40px;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: none;
        z-index: 999;
    }

    .header-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 1rem 0;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-professional {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Hero banner móvil */
    .hero-banner {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .discount-banner {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    /* Carrusel móvil */
    .carousel-btn {
        display: none;
    }

    .section-title,
    .desktop-badges,
    .desktop-image,
    .desktop-info,
    .desktop-name,
    .desktop-subtitle,
    .desktop-description,
    .desktop-availability,
    .desktop-price,
    .desktop-price-current,
    .desktop-button {
        display: none !important;
    }

    .carousel-section {
        padding: 1.5rem 0 1rem 0;
    }

    .section-header {
        padding: 0 1rem 0.8rem;
    }

    .carousel-section-title {
        font-size: 1.3rem;
    }

    .carousel {
        padding: 0 1rem;
    }

    .carousel-product-card {
        min-width: 280px;
        max-width: 280px;
    }

    .carousel-product-image {
        height: 180px;
    }

    /* Sticky header móvil */
    .sticky-header {
        display: block;
    }

    /* Categorías móvil */
    .category-title {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem 0;
        padding: 0.8rem 1rem;
        background: var(--bg-secondary);
        color: var(--text-primary);
        border-left: none;
        border-radius: 8px;
    }

    .single-product-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-width: none;
        margin: 0;
    }

    .product-card {
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        border-radius: 0;
        box-shadow: none;
        transition: background-color 0.2s;
        width: 100%;
        max-width: 100%;
    }

    .product-card:hover {
        background-color: var(--bg-hover);
        transform: none;
        box-shadow: none;
    }

    .product-card:last-child {
        border-bottom: none;
    }

    .mobile-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 0.4rem;
    }

    .mobile-name {
        font-size: 1.05rem;
        font-weight: bold;
        color: var(--text-primary);
        margin: 0;
    }

    .mobile-subtitle {
        font-size: 0.8rem;
        color: var(--accent-secondary);
        font-weight: 600;
    }

    .mobile-description {
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
    }

    .mobile-price {
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--accent-primary);
        margin: 0.3rem 0 0 0;
    }

    .mobile-image-container {
        display: block;
        position: relative;
        flex-shrink: 0;
    }

    .mobile-image {
        width: 100px;
        height: 100px;
        border-radius: 8px;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .mobile-view-btn {
        position: absolute;
        bottom: -8px;
        right: -8px;
        background: var(--accent-primary);
        color: white;
        border: none;
        padding: 0.4rem 0.9rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(77, 124, 254, 0.4);
        transition: all 0.2s;
    }

    .mobile-view-btn:hover {
        background: var(--accent-hover);
        transform: scale(1.05);
    }

    /* Modal móvil */
    .product-modal-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .product-modal-image-container {
        height: 280px;
        border-radius: 0;
    }

    .product-modal-info {
        padding: 1.5rem;
    }

    .product-modal-title {
        font-size: 1.6rem;
    }

    .product-modal-subtitle {
        font-size: 0.9rem;
    }

    .product-modal-price {
        font-size: 1.6rem;
    }

    .modal-option-buttons {
        grid-template-columns: 1fr;
    }

    .modal-option-btn {
        padding: 0.9rem;
    }

    .datetime-picker-container {
        grid-template-columns: 1fr;
    }

    .modal-add-cart-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    /* Checkout móvil */
    .checkout-modal {
        width: 95%;
        padding: 1.5rem;
    }

    .checkout-title {
        font-size: 1.4rem;
    }

    /* Carrito móvil */
    .cart-sidebar {
        width: 100%;
        max-width: none;
    }

    .cart-sidebar-title {
        font-size: 1.2rem;
    }

    .cart-item {
        padding: 0.9rem;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-detail-row {
        font-size: 0.85rem;
    }

    .cart-summary-bar {
        padding: 1rem;
    }

    .cart-total {
        font-size: 1rem;
    }

    .view-cart-btn {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Footer móvil */
    .main-footer {
        margin-top: 2rem;
        padding: 2rem 0 0 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo {
        height: 50%;
        width: 50%
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 0.7rem;
        font-size: 0.9rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal span {
        display: none;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE PEQUEÑO
========================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .carousel-product-card {
        min-width: 260px;
        max-width: 260px;
    }

    .carousel-product-image {
        height: 160px;
    }

    .mobile-image {
        width: 90px;
        height: 90px;
    }

    .product-modal-title {
        font-size: 1.4rem;
    }

    .product-modal-price {
        font-size: 1.4rem;
    }

    .checkout-modal {
        width: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
}

/* ==========================================
   ANIMACIONES ADICIONALES
========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.carousel-product-card {
    animation: fadeIn 0.3s ease-out;
}

/* ==========================================
   SCROLLBAR PERSONALIZADO
========================================== */
.cart-sidebar::-webkit-scrollbar,
.product-modal-content::-webkit-scrollbar,
.checkout-modal::-webkit-scrollbar {
    width: 8px;
}

.cart-sidebar::-webkit-scrollbar-track,
.product-modal-content::-webkit-scrollbar-track,
.checkout-modal::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.cart-sidebar::-webkit-scrollbar-thumb,
.product-modal-content::-webkit-scrollbar-thumb,
.checkout-modal::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 10px;
}

.cart-sidebar::-webkit-scrollbar-thumb:hover,
.product-modal-content::-webkit-scrollbar-thumb:hover,
.checkout-modal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* ==========================================
   ESTADOS DE CARGA Y TRANSICIONES
========================================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

button:active {
    transform: scale(0.98);
}

/* ==========================================
   ACCESIBILIDAD
========================================== */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ==========================================
   UTILIDADES
========================================== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* ==========================================
   MEJORAS VISUALES
========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Smooth scroll para toda la página */
html {
    scroll-behavior: smooth;
}

/* Selección de texto personalizada */
::selection {
    background: var(--accent-primary);
    color: white;
}

::-moz-selection {
    background: var(--accent-primary);
    color: white;
}

/* ==========================================
   PÁGINA DE CONTACTO
========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info, 
.contact-form {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-info h2, 
.contact-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 12px;
    background: var(--bg-secondary);
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-primary);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.2rem 0;
}

/* Estilos del formulario de contacto */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form button[type="submit"],
.contact-form .btn-professional {
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}

.contact-form button[type="submit"]:hover,
.contact-form .btn-professional:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* Mapa */
.map-container {
    margin-top: 3rem;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ==========================================
   RESPONSIVE - CONTACTO
========================================== */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .contact-info, 
    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

.map-container {
    margin-top: 3rem;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
}

/* Additional styles for faq.html */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    color: var(--text-primary);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    background: var(--bg-card);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}


.faq-answer p {
    padding: 1.2rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul {
    padding: 1.2rem;
    margin: 0;
    list-style: none;
}

.faq-answer li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.faq-answer li::before {
    content: "•";
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}

/* Additional styles for como-funciona.html */
.how-it-works {
    margin: 3rem 0;
}

.step-section {
    margin-bottom: 5rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(77, 124, 254, 0.4);
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.step-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-section {
    margin: 5rem 0;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    margin: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #3a62d9 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for quienes-somos.html y politica-privacidad.html */
.about-section,
.privacy-section {
    margin: 3rem 0;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.privacy-content,
.about-section {
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.privacy-content h2.section-title,
.privacy-content h3,
.about-section h2.section-title,
.about-section h3 {
    color: var(--accent-secondary);
    margin: 2.5rem 0 1.2rem;
    font-weight: 700;
}

.privacy-content h3,
.about-section h3 {
    font-size: 1.5rem;
}

.privacy-content p,
.about-section p {
    margin-bottom: 1.5rem;
}

.privacy-content strong,
.about-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-content ul.about-list,
.about-section ul.about-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-content ul.about-list li,
.about-section ul.about-list li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.privacy-content ul.about-list li:before,
.about-section ul.about-list li:before {
    content: "•";
    color: var(--accent-primary);
    position: absolute;
    left: -1.5rem;
    font-size: 1.5rem;
    top: -0.2rem;
}

.privacy-content ul.about-list ul,
.about-section ul.about-list ul {
    margin-top: 0.8rem;
    margin-left: 1.5rem;
}

.privacy-content ul.about-list ul li:before,
.about-section ul.about-list ul li:before {
    content: "→";
    font-size: 1.2rem;
}

/* Responsive adjustments para privacy */
@media (max-width: 768px) {
    .privacy-section,
    .about-section {
        padding: 2rem 1.5rem;
    }

    .privacy-content h3,
    .about-section h3 {
        font-size: 1.4rem;
    }
}

