/* assets/css/style.css */
html {
    font-size: 15px;
}
body.site-public { font-size: 0.95rem; }

/* Forzar ancho completo del editor en galería */
#mesa-trabajo-section .container { max-width: none; width: 100%; }

/* --- VARIABLES CSS - DTF MYC --- */
:root {
    --color-primary-bg: #FFFFFF; /* Fondo blanco */
    --color-secondary-bg: #F9FAFB; /* Gris muy claro */
    --color-card-bg: #FFFFFF; /* Tarjetas blancas */
    --color-text-dark: #1F2937; /* Texto negro/gris oscuro */
    --color-text-light: #6B7280; /* Gris medio */
    --color-accent-1: #6B46C1; /* Morado empresarial */
    --color-accent-1-dark: #553C9A; /* Morado más oscuro */
    --color-accent-2: #8B5CF6; /* Morado claro */
    --color-accent-2-dark: #7C3AED; /* Morado medio */
    --color-success: #10B981; /* Verde moderno */
    --color-error: #EF4444; /* Rojo moderno */
    --color-border: #E5E7EB; /* Gris claro para bordes */
    --color-gradient: linear-gradient(135deg, #6B46C1, #8B5CF6); /* Gradiente morado */
    --color-hero-bg: linear-gradient(135deg, #1F2937 0%, #374151 100%); /* Gradiente oscuro para hero */
}

/* --- RESET BÁSICO Y FUENTES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Containment para mejor rendimiento */
.container {
    contain: layout style paint;
}

.hero-section, .forms-section, .pricing-section, #contact {
    contain: layout style paint;
}

/* Transiciones globales ultra optimizadas */
* {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Excepciones para elementos que no necesitan transiciones */
*, *::before, *::after {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

/* Optimización de rendimiento ultra avanzada */
.btn, .price-card, .contact-card, .service-item, .step-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0); /* Forzar composición en GPU */
}

/* Optimización específica para elementos con hover */
.btn:hover, .price-card:hover, .contact-card:hover, .service-item:hover, .step-card:hover {
    will-change: transform, box-shadow;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
    color: var(--color-text-dark);
    background: var(--color-primary-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    color: var(--color-text-dark);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- COMPONENTES REUTILIZABLES --- */
.btn {
    display: inline-flex; /* Para alinear íconos y texto */
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* Espacio entre ícono y texto */
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-primary {
    background: var(--color-gradient);
    color: #FFFFFF;
    border: none;
}

.btn-primary:hover {
    background: var(--color-accent-1-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-accent-1);
    color: #FFFFFF;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
}

.message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem auto;
    border-radius: 12px;
    font-weight: 600;
    text-align: left;
    max-width: 600px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid transparent;
}

.message::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
}

.message.success {
    background-color: #E8F5E9; /* Verde claro */
    color: #2E7D32; /* Verde oscuro para texto */
    border-color: #A5D6A7; /* Borde verde más suave */
}

.message.success::before {
    content: "058"; /* Ícono de check-circle */
    color: #4CAF50;
}

.message.error {
    background-color: #FFEBEE; /* Rojo claro */
    color: #C62828; /* Rojo oscuro para texto */
    border-color: #EF9A9A; /* Borde rojo más suave */
}

.message.error::before {
    content: "071"; /* Ícono de exclamation-triangle */
    color: #D32F2F;
}

.message a {
    color: inherit; /* Hereda el color del contenedor del mensaje */
    font-weight: 700;
    text-decoration: underline;
}

.message a:hover {
    opacity: 0.8;
}

.form-message-container {
    width: 100%;
    margin-bottom: 1.5rem; /* Espacio entre el mensaje y el primer campo */
    display: none; /* Oculto por defecto */
}

.form-message-container.visible {
    display: block; /* Visible cuando hay un mensaje */
}

.form-message-container .message {
    margin: 0; /* Sin margen externo */
    width: 100%;
    max-width: none; /* Ocupa todo el ancho del contenedor */
}


/* --- HEADER OPTIMIZADO --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0; /* Reducido de 0.0rem a 0.3rem para más compacto */
    box-shadow: 0 2px 15px rgba(107, 70, 193, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 2px solid var(--color-accent-1);
}

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

.logo h1 {
    margin: 0;
    color: var(--color-accent-1);
    font-size: 2rem;
}

.main-nav a {
    color: var(--color-text-dark);
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-accent-1);
}

/* --- PROMO BANNER MODERNO --- */
.promo-banner {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 85px;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.promo-banner-content {
    display: inline-block;
    animation: scroll-left 45s linear infinite;
}

.promo-banner span {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 5rem;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner span i {
    margin-right: 0.75rem;
    color: #8b5cf6;
    font-size: 1.1rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- FORMS SECTION COMPACTO --- */
.forms-section {
    padding: 3rem 0; /* Reducido de 4rem a 3rem para más compacto */
    background-color: var(--color-secondary-bg);
    text-align: center;
}

/* Forms Header Compacto */
.forms-header {
    margin-bottom: 2rem; /* Reducido de 3rem a 2rem para más compacto */
}

.forms-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.forms-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Client Switch Profesional */
.client-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.client-switch {
    position: relative;
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-border);
    display: flex;
    min-width: 400px;
    width: 100%;
    max-width: 100%;
}

.client-switch input[type="radio"] {
    display: none;
}

.switch-label {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1F2937; /* Negro por defecto */
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.switch-label:hover {
    background: rgba(107, 70, 193, 0.05);
    transform: translateY(-1px);
}

.switch-label i {
    font-size: 1.1rem;
    color: #1F2937; /* Negro por defecto */
    transition: all 0.3s ease;
}

.switch-label span {
    font-size: 0.95rem;
    color: #1F2937; /* Negro por defecto */
}

.switch-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: var(--color-gradient);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 3px 12px rgba(107, 70, 193, 0.3);
}

#switch-nuevo:checked ~ .switch-indicator {
    transform: translateX(0);
}

#switch-frecuente:checked ~ .switch-indicator {
    transform: translateX(100%);
}

/* Cuando Cliente Nuevo está seleccionado */
#switch-nuevo:checked + input + .switch-label {
    color: #000000;
}

#switch-nuevo:checked + input + .switch-label i {
    color: #000000;
}

/* Cuando Cliente Frecuente está seleccionado */
#switch-frecuente:checked + .switch-label {
    color: #000000;
}

#switch-frecuente:checked + .switch-label i {
    color: #000000;
}

/* Evitar hover en elementos activos */
#switch-nuevo:checked + input + .switch-label:hover,
#switch-frecuente:checked + .switch-label:hover {
    background: transparent;
    transform: none;
}

/* Responsive client-switch */
@media (max-width: 768px) {
    .client-switch-container {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .client-switch {
        min-width: auto;
        width: 100%;
        padding: 4px;
    }
    
    .switch-label {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .switch-label i {
        font-size: 0.95rem;
    }
    
    .switch-label span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .client-switch-container {
        margin-bottom: 1.25rem;
    }
    
    .client-switch {
        padding: 3px;
    }
    
    .switch-label {
        padding: 0.6rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .switch-label i {
        font-size: 0.85rem;
    }
    
    .switch-label span {
        font-size: 0.75rem;
    }
}

/* Tabs para formularios */
.upload-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--color-secondary-bg);
    padding: 4px;
    border-radius: 8px;
}

.tab-button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-button.active {
    background: var(--color-card-bg);
    color: var(--color-accent-1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-button:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Resumen de precio */
.price-summary {
    background: var(--color-secondary-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-accent-1);
}

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

.price-label {
    font-weight: 600;
    color: var(--color-text-dark);
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-1);
}

.upload-intro .upload-icon {
    font-size: 4rem;
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
    display: block;
}

.upload-intro h2 { font-size: 2rem; margin-bottom: 0.8rem; }

.upload-intro p { font-size: 1rem; color: var(--color-text-light); max-width: 560px; margin: 0 auto 1.8rem auto; }

.user-type-selection {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Para mejor responsividad */
}

/* --- FORMULARIOS DE CARGA (INDEX) --- */
.upload-form-container {
    text-align: left;
    position: relative;
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-border);
    max-width: 800px;
    margin: 0 auto;
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.upload-form-container.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--color-accent-1);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-header p {
    color: var(--color-text-light);
    font-size: 1rem;
}



.order-form {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Espacio entre elementos del formulario */
}
/* Hover/Focus sutil en inputs y selects */
.order-form input:hover, .order-form textarea:hover, .order-form select:hover { border-color: var(--color-accent-1); }
.order-form button.btn:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }

/* 
  Corrección Definitiva:
  El problema era que .message es 'display: flex' por defecto.
  Al ser un item de otro flex container (.order-form), causaba un conflicto.
  La solución es forzarlo a ser un 'display: block' en este contexto específico.
*/
.order-form .message {
    display: block; /* Anula el 'display: flex' general de .message */
    margin: 0 0 18px 0; /* Mantiene el espaciado consistente */
    width: 100%;
    max-width: none;
}

.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1.05rem;
    background-color: #FFFFFF;
    color: var(--color-text-dark);
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
    outline: none;
    background-color: #FFFFFF;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    background-color: transparent;
}

/* Área de arrastrar archivo */
.file-upload-area {
    position: relative;
    margin-bottom: 1rem;
}

.file-upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    border: 2px dashed var(--color-accent-1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: rgba(107, 70, 193, 0.05);
    transition: all 0.3s ease;
}

.file-upload-display:hover {
    border-color: var(--color-accent-1-dark);
    background: rgba(107, 70, 193, 0.1);
}

.file-upload-display i {
    font-size: 2.5rem;
    color: var(--color-accent-1);
    margin-bottom: 1rem;
}

.file-upload-display p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.file-upload-display span {
    color: var(--color-accent-1);
    font-weight: 600;
}

.file-upload-display small {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* --- ESTILOS PARA SELECT DE TÉCNICA DE IMPRESIÓN --- */
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--color-accent-1);
    border-radius: 8px;
    font-size: 1.05rem;
    background-color: #F9F9F9;
    color: var(--color-text-dark);
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.07);
    appearance: none;
    outline: none;
}
.form-group select:focus {
    border-color: var(--color-accent-2);
    box-shadow: 0 0 0 4px rgba(80, 227, 194, 0.18);
    background-color: var(--color-secondary-bg);
    transform: scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group select option {
    background: #fff;
    color: var(--color-text-dark);
    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.85rem;
    }
}

.dimensions-group { display: flex; gap: 1.5rem; }
.dimensions-group .form-group { flex: 1; }
.dimensions-group input[readonly] {
    background-color: #E9ECEF; /* Gris claro para campos de solo lectura */
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}


.steps-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--color-card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent-1);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    font-size: 3.5rem;
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
    display: inline-block;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.step-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}


/* --- SECCIONES DE CONTENIDO --- */
main { flex-grow: 1; }
section { 
    padding: 4rem 0; 
    text-align: center; 
    background-color: var(--color-primary-bg);
}

section.section-alt {
    background-color: var(--color-secondary-bg);
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}
section .section-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent-1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .icon {
    font-size: 3.5rem;
    color: var(--color-accent-1);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-card .contact-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.contact-card .contact-description {
    color: var(--color-text-light);
    font-size: 1.05rem;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: left;
}

.service-item {
    background: var(--color-card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
    border: 1px solid var(--color-accent-1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    color: var(--color-accent-1);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.price-info, .contact-info {
    background: var(--color-card-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    max-width: 600px;
    margin: 3.5rem auto 0 auto;
    text-align: left;
    border: 1px solid var(--color-border);
}

.price-info p, .contact-info p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-info p:last-child, .contact-info p:last-child {
    margin-bottom: 0;
}

.price-value {
    font-weight: 700;
    color: var(--color-accent-1);
    font-size: 1.3rem;
}

.contact-info a {
    color: var(--color-accent-1);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* --- Pricing Section --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}
.price-card-wide { grid-column: 1 / -1; }
.price-card {
    background: var(--color-card-bg);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.2);
    padding: 2.2rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
    border: 2px solid var(--color-accent-1);
}

.price-card:hover::before {
    transform: scaleX(1);
}
.price-card h3 {
    font-size: 1.15rem;
    color: var(--color-accent-1);
    margin-bottom: 0.8rem;
    font-weight: 800;
}
.price-tag {
    margin-bottom: 1.5rem;
    width: 100%;
}
.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a7c3a;
}
/* Evitar saltos feos en el precio y alinear partes */
.price-amount { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.price-amount .currency { font-size: 0.9em; }
.price-amount .value { min-width: 72px; text-align: right; display: inline-block; }
.price-amount .unit { color: #6b7a86; font-weight: 700; font-size: 0.9rem; }
.price-amount .na { color: #aaa; font-weight: 700; }
.price-period {
    font-size: 1.1rem;
    color: #888;
    margin-left: 0.4em;
}
.price-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-method-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-metodo {
    display: inline-block;
    background: #e0f7fa;
    color: #1a4d5c;
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 16px;
    font-size: 1.05em;
    margin-bottom: 0.5em;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-metodo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1; /* Hace que la lista ocupe el espacio disponible */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.price-features li {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    gap: 0.6em;
    justify-content: flex-start; /* Alinear a la izquierda para mejor legibilidad */
    text-align: left;
}
@media (max-width: 1200px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .price-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .price-card {
        padding: 1.5rem 1rem 2rem 1rem;
        min-height: 0;
    }
    .price-method-item {
        margin-bottom: 0.8rem;
        padding: 0.4rem;
    }
    .badge-metodo {
        font-size: 1em;
        min-width: 100px;
        padding: 0.4em 0.8em;
    }
    .price-features li {
        font-size: 1rem;
        margin-bottom: 0.6em;
    }
}

.price-features li i {
    color: var(--color-accent-2);
    font-size: 1.2rem;
}

.info-dolar-precio {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

.info-dolar-precio .tasa-bcv {
    font-weight: 600;
    color: #856404;
}

.price-card .btn {
    width: 100%;
    margin-top: auto; /* Pushes button to the bottom */
    align-self: stretch; /* Hace que el botón ocupe todo el ancho */
}

/* --- CONTACTO SECTION --- */
#contact {
    background: #1F2937;
    color: #FFFFFF;
    padding: 3rem 0; /* Reducido de 4rem a 3rem para más compacto */
}

#contact h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

#contact .section-description {
    color: #E5E7EB;
}

/* --- FOOTER --- */
footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

footer span {
    font-weight: 600;
    color: #8b5cf6;
}

/* --- BOTÓN FLOTANTE WHATSAPP --- */
.whatsapp-fab {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:active {
    transform: scale(0.95);
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    footer p {
        font-size: 0.85rem;
    }
    
    .whatsapp-fab {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 1.25rem 0.5rem;
        font-size: 0.85rem;
    }
    
    footer p {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
}

/* --- RESPONSIVIDAD (DISEÑO SIMPLE Y CENTRADO) --- */

@media (max-width: 768px) {
    /* --- Header Layout en Móvil --- */
    .header-content {
        flex-direction: column; /* Apilar logo y nav */
        gap: 0.3rem; /* Reducido de 0.5rem a 0.3rem para más compacto */
    }

    .logo {
        text-align: center; /* Centrar el texto del logo */
    }

    .main-nav {
        display: flex;
        flex-direction: row; /* Poner links uno al lado del otro */
        justify-content: center; /* Centrar el grupo de links */
        flex-wrap: wrap; /* Por si no caben en pantallas muy pequeñas */
        width: 100%;
    }

    .main-nav a {
        margin: 0 0.8rem; /* Reducido de 1rem a 0.8rem para más compacto */
        padding: 0.4rem 0; /* Reducido de 0.5rem a 0.4rem */
        font-size: 1rem; /* Reducido de 1.1rem a 1rem para más compacto */
    }

    /* --- Otros Ajustes Compactos --- */
    .promo-banner { font-size: 0.85rem; } /* Reducido de 0.9rem */
    .promo-banner-content { animation-duration: 25s; } /* Reducido de 30s */
    .hero-upload { padding: 1.5rem 0; } /* Reducido de 2rem */
    .upload-box { padding: 1.2rem; } /* Reducido de 1.5rem */
    .upload-intro h2 { font-size: 1.6rem; } /* Reducido de 1.8rem */
    .upload-intro p { font-size: 0.95rem; } /* Reducido de 1rem */
    .user-type-selection { flex-direction: column; gap: 0.8rem; } /* Reducido de 1rem */
    .user-type-selection .btn { width: 100%; }
    .dimensions-group { flex-direction: column; gap: 0.8rem; } /* Reducido de 1rem */
    section { padding: 2rem 0; } /* Reducido de 2.5rem */
    section h2 { font-size: 1.8rem; } /* Reducido de 2rem */
    .whatsapp-fab { width: 50px; height: 50px; bottom: 15px; right: 15px; font-size: 26px; } /* Más compacto */
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animaciones ultra optimizadas con lazy loading */
.hero-upload {
    animation: fadeInUp 0.4s ease-out;
}

.upload-box {
    animation: fadeInScale 0.3s ease-out;
}

/* Animaciones lazy para elementos observados */
.price-card, .contact-card, .service-item, .step-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card.animate-in, .contact-card.animate-in, .service-item.animate-in, .step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback para navegadores sin Intersection Observer */
@supports not (animation: fadeInUp) {
    .price-card, .contact-card, .service-item, .step-card {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efectos de scroll optimizados */
html {
    scroll-behavior: auto; /* Cambiado de 'smooth' a 'auto' para mayor velocidad */
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Efectos de hover mejorados para navegación */
.main-nav a {
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-nav a:hover::before {
    width: 100%;
}

/* --- ESTILOS ADICIONALES DTF MYC --- */

/* Efecto de gradiente en títulos principales */
.gradient-text {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botones con efecto neón */
.btn-primary {
    background: var(--color-gradient);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Efecto de partículas en el fondo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Mejora en las tarjetas de precio */
.price-amount {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* Efecto de brillo en iconos */
.step-icon, .contact-card .icon, .service-item h3 i {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

/* Animación de pulso para elementos importantes */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    }
}

.upload-box:hover {
    animation: glow 2s infinite;
}

/* --- NUEVO DISEÑO DTF MYC --- */

/* Header Renovado */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 3px 12px rgba(107, 70, 193, 0.3);
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;

    border-radius: 8px;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.logo-text .highlight {
    color: var(--color-accent-1);
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    border: 2px solid transparent;
}

.nav-item i {
    font-size: 1rem;
    color: var(--color-accent-1);
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-accent-1);
    background: rgba(107, 70, 193, 0.1);
    border-color: var(--color-accent-1);
    transform: translateY(-1px);
}

.btn-upload-header {
    background: var(--color-gradient);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(107, 70, 193, 0.3);
    font-size: 0.9rem;
}

.btn-upload-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(107, 70, 193, 0.4);
    background: var(--color-accent-1-dark);
}

/* Hero Section Ultra Compacto */
.hero-section {
    min-height: 70vh; /* Reducido de 85vh a 70vh para más compacto */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 4rem 0 3rem; /* Reducido de 6rem 0 4rem a 4rem 0 3rem */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(107, 70, 193, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107, 70, 193, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 70, 193, 0.04) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(107, 70, 193, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 70, 193, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(20px) rotate(-1deg); }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    color: var(--color-text-dark);
    font-size: 0.8em;
    opacity: 0.8;
}

.title-line-2 {
    display: block;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    display: block;
    color: var(--color-text-dark);
    font-size: 0.9em;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(107, 70, 193, 0.05);
    border: 1px solid rgba(107, 70, 193, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(107, 70, 193, 0.1);
    border-color: rgba(107, 70, 193, 0.2);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* Upload Card Renovado */
.upload-card {
    background: var(--color-card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.upload-header {
    text-align: center;
    margin-bottom: 2rem;
}

.upload-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-1);
}

.upload-header p {
    color: var(--color-text-light);
}

.client-type-grid {
    display: grid;
    gap: 1.5rem;
}

.client-type-card {
    background: var(--color-secondary-bg);
    border: 2px solid var(--color-border);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gradient);
    opacity: 0.1;
    transition: left 0.3s ease;
}

.client-type-card:hover::before {
    left: 0;
}

.client-type-card:hover {
    border-color: var(--color-accent-1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.client-type-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-1);
}

.client-type-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--color-accent-1);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.client-type-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Proceso Compacto Mejorado */
.process-section {
    padding: 3rem 0;
    background: var(--color-secondary-bg);
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}

.process-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.12);
    border-color: var(--color-accent-1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.2);
}

.card-icon i {
    font-size: 1.6rem;
    color: white;
}

.card-number {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: var(--color-accent-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(107, 70, 193, 0.25);
}

.card-title {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-description {
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(107, 70, 193, 0.1);
    color: var(--color-accent-1);
    padding: 0.35rem 0.65rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

/* Responsive para proceso */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .process-card {
        padding: 1.35rem 1rem;
        border-radius: 10px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .card-number {
        width: 28px;
        height: 28px;
        top: -10px;
        right: 12px;
        font-size: 0.75rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.55rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .process-grid {
        gap: 1rem;
    }
    
    .process-card {
        padding: 1.25rem 0.85rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 0.95rem;
    }
    
    .card-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

/* Servicios Compactos Horizontales */
.services-section {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.25rem 0.95rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card.featured {
    border-color: var(--color-accent-1);
    background: linear-gradient(135deg, var(--color-card-bg), rgba(107, 70, 193, 0.04));
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.1);
}

.service-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    background: var(--color-accent-1);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(107, 70, 193, 0.25);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.12);
    border-color: var(--color-accent-1);
}

.service-icon {
    width: 45px;
    height: 45px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 0.85rem;
    box-shadow: 0 3px 12px rgba(107, 70, 193, 0.2);
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

.service-tags {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-tags .tag {
    background: rgba(107, 70, 193, 0.08);
    color: var(--color-accent-1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(107, 70, 193, 0.15);
}

.service-specs {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-specs .spec {
    background: var(--color-secondary-bg);
    color: var(--color-accent-1);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-price .price {
    color: var(--color-accent-1);
    font-weight: 700;
    font-size: 1rem;
}

.service-action .action-btn {
    display: inline-block;
    background: var(--color-accent-1);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-action .action-btn:hover {
    background: var(--color-accent-1-dark);
    transform: translateY(-1px);
}

/* Responsive para servicios */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .service-card {
        padding: 1rem 0.8rem;
        border-radius: 9px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .service-badge {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 0.95rem 0.75rem;
    }
    
    .service-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-card p {
        font-size: 0.73rem;
    }
}

.service-contact {
    margin-top: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    gap: 1rem;
}

/* === SECCIÓN DE PRECIOS RENOVADA === */
/* Sección de Precios Compacta */
.pricing-section {
    padding: 3rem 0; /* Reducido de 4rem a 3rem para más compacto */
    background: var(--color-secondary-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem; /* Reducido de 2rem a 1.5rem para más compacto */
    margin-top: 2rem; /* Reducido de 2.5rem a 2rem para más compacto */
}

.pricing-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1.2rem; /* Reducido de 1.5rem a 1.2rem para más compacto */
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.main-card {
    border-color: var(--color-accent-1);
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.2);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

/* Card Header Compacto */
.card-header {
    text-align: center;
    margin-bottom: 1.2rem; /* Reducido de 1.5rem a 1.2rem para más compacto */
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.25);
}

.card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.card-header p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Price Methods */
.price-methods {
    margin-bottom: 1.5rem;
}

.price-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    background: var(--color-secondary-bg);
    border-radius: 10px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.price-method:hover {
    border-color: var(--color-accent-1);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.1);
}

.method-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.method-info i {
    width: 25px;
    height: 25px;
    background: rgba(107, 70, 193, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-1);
    font-size: 0.8rem;
}

.method-info span {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

.method-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent-1);
}

.method-price small {
    font-size: 0.7rem;
    color: var(--color-text-light);
}

.price-na {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 0.9rem;
}

.bcv-info {
    grid-column: 1 / -1;
    padding: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #856404;
}

/* Card Features */
.card-features {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.card-features .feature {
    background: rgba(107, 70, 193, 0.1);
    color: var(--color-accent-1);
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(107, 70, 193, 0.2);
}

/* Card Price */
.card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-secondary-bg);
    border-radius: 10px;
}

.card-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent-1);
}

.card-price small {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Card CTA */
.card-cta {
    width: 100%;
    background: var(--color-accent-1);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-cta:hover {
    background: var(--color-accent-1-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.card-cta.primary {
    background: var(--color-gradient);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.card-cta.primary:hover {
    box-shadow: 0 6px 25px rgba(107, 70, 193, 0.4);
}

/* Features */
.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature-item,
.secondary-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-light);
}

.pricing-features .feature-item i,
.secondary-features .feature-item i {
    color: var(--color-accent-2);
    font-size: 0.9rem;
}

/* Botones CTA */
.pricing-cta {
    width: 100%;
    background: var(--color-gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Tarjeta Secundaria */
.secondary-pricing-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 1.5rem;
    height: fit-content;
}

.secondary-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
}

.secondary-price .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-1);
    display: block;
}

.secondary-price .price-unit {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.secondary-features {
    margin-bottom: 1.5rem;
}

.secondary-cta {
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-accent-1);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    color: var(--color-accent-1);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: var(--color-accent-1);
    color: white;
}

/* Nota de Precios */
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    color: #856404;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    margin-top: 2rem;
}

.pricing-note i {
    color: #ffc107;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-card {
        padding: 1.15rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .pricing-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card-badge {
        top: -8px;
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .card-header p {
        font-size: 0.85rem;
    }
    
    .price-methods {
        margin-bottom: 1.25rem;
    }
    
    .price-method {
        padding: 0.7rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .method-info i {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    
    .method-info span {
        font-size: 0.85rem;
    }
    
    .method-price .price {
        font-size: 1.1rem;
    }
    
    .card-features {
        gap: 0.3rem;
        margin-bottom: 1.25rem;
    }
    
    .card-features .feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .card-price {
        padding: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .card-price .price {
        font-size: 1.6rem;
    }
    
    .card-cta {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .pricing-note {
        padding: 0.85rem;
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .pricing-grid {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .pricing-card {
        padding: 0.9rem;
        border-radius: 10px;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .price-method {
        padding: 0.6rem;
        margin-bottom: 0.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .method-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .method-price {
        width: 100%;
        text-align: right;
    }
    
    .card-features {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }
    
    .card-cta {
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
    }
}

/* === SECCIÓN DE CONTACTO RENOVADA === */
.contact-section {
    background: #1F2937;
    color: #FFFFFF;
    padding: 4rem 0;
}

.contact-section .section-title {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section .section-subtitle {
    color: #E5E7EB;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-card.featured {
    border-color: var(--color-accent-1);
    background: rgba(107, 70, 193, 0.1);
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent-1);
}

.contact-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: var(--color-accent-1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.contact-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: var(--color-accent-1);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-desc {
    color: #E5E7EB;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent-1);
    transform: translateY(-2px);
}

.contact-btn.primary {
    background: var(--color-gradient);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
}

.contact-btn.primary:hover {
    box-shadow: 0 6px 25px rgba(107, 70, 193, 0.4);
}

.contact-btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    cursor: not-allowed;
    pointer-events: none;
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-1);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #000000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Responsive Hero Stats */
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.6rem 0.8rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    /* Mostrar texto abreviado en móviles */
    .hero-stats .mobile-text {
        display: none;
    }
    
    .hero-stats .desktop-text {
        display: inline;
    }
    
    .hero-stats .mobile-text {
        display: inline;
    }
    
    .hero-stats .desktop-text {
        display: none;
    }
}

/* === OPTIMIZACIONES GENERALES === */

/* Reducir tamaños de títulos */
.section-title {
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem !important;
}

.section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Hero title optimizado arriba */

/* Optimizar upload card */
.upload-card {
    background: var(--color-card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.upload-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-1);
}

.client-type-card {
    background: var(--color-secondary-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.client-type-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--color-accent-1);
}

.client-type-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

/* Optimizar proceso */
.process-section {
    padding: 4rem 0;
}

.step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    margin: 0 1.5rem;
}

.step-content {
    padding: 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Hero Image Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: float-gentle 5s ease-in-out infinite reverse;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--color-gradient);
    border-radius: 25px;
    z-index: 0;
    opacity: 0.05;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero-showcase {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(107, 70, 193, 0.05);
    animation: float-gentle 4s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    
}

.hero-showcase:hover {
    transform: scale(1.01) translateY(-3px);
    border-color: var(--color-accent-1);
    box-shadow: 
        0 20px 40px rgba(107, 70, 193, 0.15),
        0 0 0 1px rgba(107, 70, 193, 0.1);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.02);
    }
}

/* Upload Container Styles */
.upload-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .nav-item i {
        font-size: 0.9rem;
    }
    
    .nav-item span {
        font-size: 0.8rem;
    }
    
    .btn-upload-header {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Forms responsive */
    .client-switch {
        min-width: 300px;
        flex-direction: column;
        padding: 4px;
    }
    
    .switch-label {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .switch-label i {
        font-size: 1rem;
    }
    
    .switch-indicator {
        width: calc(100% - 8px);
        height: calc(50% - 4px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #switch-nuevo:checked ~ .switch-indicator {
        transform: translateY(0);
    }

    #switch-frecuente:checked ~ .switch-indicator {
        transform: translateY(100%);
    }
    
    .upload-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .form-header {
        margin-bottom: 1.75rem;
        padding-bottom: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .forms-header h2 {
        font-size: 1.75rem;
    }
    
    .forms-header p {
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .file-upload-display {
        padding: 1.5rem;
    }
    
    .file-upload-display i {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .file-upload-display p {
        font-size: 1rem;
    }
    
    .dimensions-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .order-form {
        gap: 1rem;
    }
    
    .form-actions {
        margin-top: 1.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem;
        min-width: 100px;
    }
    
    .hero-image::after {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: center;
    }
    
    .step-number {
        margin: 1rem 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .upload-form-container {
        padding: 1.25rem;
        margin: 0;
        border-radius: 8px;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .forms-header h2 {
        font-size: 1.5rem;
    }
    
    .forms-header p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.65rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        box-shadow: 0 0 0 2px rgba(107, 70, 193, 0.1);
    }
    
    .file-upload-display {
        padding: 1.25rem;
        border-radius: 8px;
    }
    
    .file-upload-display i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .file-upload-display p {
        font-size: 0.9rem;
    }
    
    .file-upload-display small {
        font-size: 0.8rem;
    }
    
    .dimensions-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .order-form {
        gap: 0.75rem;
    }
    
    .form-actions {
        margin-top: 1.25rem;
    }
    
    .form-actions .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
        border-radius: 8px;
    }
}

/* === HERO SECTION MODERNO DTF MCY === */
.hero-section-modern {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-main {
    color: white;
    font-weight: 300;
    font-size: 0.8em;
}

.title-highlight {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1em;
    margin: 0.2rem 0;
}

.title-subtitle {
    color: white;
    font-weight: 400;
    font-size: 0.7em;
}

.hero-description-modern {
    color: #cbd5e0;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.btn-modern {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-products {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-products:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Responsive Hero Moderno */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-showcase {
        order: -1;
    }
    
    .hero-title-modern {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    
    .hero-description-modern {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-grid {
        gap: 1.5rem;
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title-modern {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .title-main {
        font-size: 0.7em;
    }
    
    .title-highlight {
        font-size: 0.9em;
        margin: 0.1rem 0;
    }
    
    .title-subtitle {
        font-size: 0.6em;
    }
    
    .hero-description-modern {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons-modern {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-products {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section-modern {
        padding: 1.5rem 0;
    }
    
    .hero-grid {
        gap: 1rem;
    }
    
    .hero-title-modern {
        font-size: clamp(1.4rem, 3vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-description-modern {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .btn-modern {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .hero-products {
        max-width: 250px;
    }
}

/* === HEADER MODERNO === */
.header-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-modern {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-modern {
    width: 100%;
    height: auto;
    max-width: 50px;
    max-height: 50px;
}

.logo-text-modern {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.025em;
}

.nav-modern {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-modern a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-modern a:hover {
    color: #8b5cf6;
}

.nav-modern a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: width 0.3s ease;
}

.nav-modern a:hover::after {
    width: 100%;
}

.btn-cta-modern {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-modern {
        padding: 0.75rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .nav-modern {
        display: none;
    }
    
    .logo-icon-modern {
        width: 40px;
        height: 40px;
    }
    
    .logo-image-modern {
        max-width: 40px;
        max-height: 40px;
    }
    
    .logo-text-modern {
        font-size: 1.1rem;
        display: none;
    }
    
    .btn-cta-modern {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-modern {
        padding: 0.5rem 0;
    }
    
    .header-content {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .logo-icon-modern {
        width: 35px;
        height: 35px;
    }
    
    .logo-image-modern {
        max-width: 35px;
        max-height: 35px;
    }
    
    .logo-text-modern {
        font-size: 0.95rem;
        display: none;
    }
    
    .btn-cta-modern {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* === SECCIÓN DE PUBLICIDAD DE PRODUCTOS === */
.tienda-preview-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.tienda-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.productos-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.producto-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
}

.producto-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.producto-preview-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.producto-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.producto-preview-card:hover .producto-preview-image img {
    transform: scale(1.05);
}

.producto-preview-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.producto-preview-info {
    padding: 1rem;
}

.producto-preview-categoria {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.producto-preview-nombre {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.producto-preview-descripcion {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.producto-preview-precio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.precio-usd {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-productos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-productos i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.no-productos p {
    font-size: 1.1rem;
    font-weight: 500;
}

.tienda-preview-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tienda-cta-btn {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border: none;
    cursor: pointer;
}

.tienda-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.tienda-cta-btn i {
    font-size: 1.1rem;
}

/* Responsive para productos preview */
@media (max-width: 768px) {
    .tienda-preview-section {
        padding: 3rem 0;
    }
    
    .productos-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .producto-preview-card {
        border-radius: 12px;
    }
    
    .producto-preview-image {
        height: 180px;
    }
    
    .producto-preview-info {
        padding: 1.2rem;
    }
    
    .producto-preview-nombre {
        font-size: 1rem;
    }
    
    .producto-preview-descripcion {
        font-size: 0.85rem;
    }
    
    .precio-usd {
        font-size: 1.2rem;
    }
    
    .tienda-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .productos-preview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .producto-preview-image {
        height: 160px;
    }
    
    .producto-preview-info {
        padding: 1rem;
    }
    
    .tienda-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* === SLIDER DE PRODUCTOS === */
.productos-slider-container {
    position: relative;
    margin: 2rem 0;
    overflow: hidden;
    padding: 0 3rem; /* Espacio para los botones */
}

.productos-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0.5rem;
    will-change: transform;
}

.producto-slider-card {
    flex: 0 0 260px; /* Ancho fijo para cada tarjeta */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.producto-slider-card:nth-child(1) { animation-delay: 0.1s; }
.producto-slider-card:nth-child(2) { animation-delay: 0.2s; }
.producto-slider-card:nth-child(3) { animation-delay: 0.3s; }
.producto-slider-card:nth-child(4) { animation-delay: 0.4s; }
.producto-slider-card:nth-child(5) { animation-delay: 0.5s; }
.producto-slider-card:nth-child(6) { animation-delay: 0.6s; }

.producto-slider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

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

.producto-slider-image {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.producto-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.producto-slider-card:hover .producto-slider-image img {
    transform: scale(1.05);
}

.producto-slider-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.producto-slider-info {
    padding: 0.8rem;
}

.producto-slider-categoria {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.producto-slider-nombre {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.producto-slider-precio {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.precio-usd {
    font-size: 1rem;
    font-weight: 700;
    color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Controles del slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}

.slider-btn:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
    transition: all 0.1s ease;
}

.slider-btn i {
    font-size: 1rem;
    color: #8b5cf6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.slider-btn:hover i {
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.4;
    transform: scale(0.9);
    pointer-events: none;
    cursor: not-allowed;
}

.slider-btn:not(:disabled):hover {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4), 0 0 0 8px rgba(139, 92, 246, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }
}

.slider-prev {
    left: 0.5rem;
}

.slider-next {
    right: 0.5rem;
}

/* Responsive para slider */
@media (max-width: 768px) {
    .productos-slider-container {
        margin: 1.5rem 0;
        padding: 0 2.5rem; /* Menos padding en móvil */
    }
    
    .producto-slider-card {
        flex: 0 0 220px; /* Más pequeño en móvil */
    }
    
    .producto-slider-image {
        height: 100px;
    }
    
    .producto-slider-info {
        padding: 0.6rem;
    }
    
    .producto-slider-nombre {
        font-size: 0.8rem;
    }
    
    .precio-usd {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    .slider-prev {
        left: 0.25rem;
    }
    
    .slider-next {
        right: 0.25rem;
    }
}

@media (max-width: 480px) {
    .productos-slider-container {
        padding: 0 2rem; /* Aún menos padding en pantallas muy pequeñas */
    }
    
    .producto-slider-card {
        flex: 0 0 180px; /* Aún más pequeño en pantallas muy pequeñas */
    }
    
    .producto-slider-image {
        height: 80px;
    }
    
    .producto-slider-info {
        padding: 0.5rem;
    }
    
    .producto-slider-nombre {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }
    
    .precio-usd {
        font-size: 0.85rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.8rem;
    }
    
    .slider-prev {
        left: 0.125rem;
    }
    
    .slider-next {
        right: 0.125rem;
    }
}

