/* ======================================== */
/* Ocultar scrollbar horizontal para carruseles */
.no-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }
.no-scrollbar::-webkit-scrollbar{ display:none; }

/* SISTEMA TIPOGRÁFICO - ANAVI PRODUCTIONS */
/* ======================================== */

/* Importar fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;500;600;700&display=swap');

/* Variables CSS para las fuentes */
:root {
    /* Fuentes principales */
    --font-decorative: 'Dancing Script', cursive;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Kumbh Sans', sans-serif;
    
    /* Tamaños base */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */
    
    /* Espaciado de letras */
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.05em;
    --letter-spacing-wider: 0.1em;
    
    /* Altura de línea */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;

    /* Colores de marca - Logo */
    --brand-black: #1a1a1a;
    --brand-gray-dark: #333333;
    --brand-red-accent: #C41E3A;

    /* Espaciado específico para logo */
    --letter-spacing-logo-title: -0.03em;
    --letter-spacing-logo-subtitle: 0.35em;
}

/* ======================================== */
/* CLASES TIPOGRÁFICAS BASE */
/* ======================================== */

/* Clase para títulos destacados especiales */
.font-decorative {
    font-family: var(--font-decorative);
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-normal);
}

/* Clase para encabezados */
.font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-tight);
}

/* Clase para texto de cuerpo */
.font-body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
}

/* ======================================== */
/* LOGO ANAVI PRODUCTIONS                   */
/* ======================================== */

/* Contenedor del logo tipográfico */
.logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
}

/* Contenedor del título con el acento */
.logo-title-wrapper {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
}

/* Título principal: ANAVI */
.logo-title {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-logo-title);
    color: var(--brand-black);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.85;
    margin: 0;
    padding: 0;
}

/* La V con el acento rojo */
.logo-v-accent {
    position: relative;
    display: inline-block;
}

.logo-v-accent::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0.05em;
    width: 0;
    height: 0;
    border-left: 0.18em solid transparent;
    border-right: 0.18em solid transparent;
    border-top: 0.22em solid var(--brand-red-accent);
    transform: rotate(0deg);
}

/* Subtítulo: PRODUCTIONS */
.logo-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-logo-subtitle);
    color: var(--brand-gray-dark);
    font-size: clamp(0.5rem, 1.8vw, 0.9rem);
    line-height: 1;
    margin-top: 0.4em;
    padding-left: var(--letter-spacing-logo-subtitle);
}

/* Variante invertida (fondo oscuro) */
.logo-container--inverted .logo-title,
.logo-container--inverted .logo-subtitle {
    color: #FFFFFF;
}

.logo-container--inverted .logo-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Versión compacta para header/navbar */
.logo-container--compact .logo-title {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}

.logo-container--compact .logo-subtitle {
    font-size: clamp(0.35rem, 0.9vw, 0.45rem);
    letter-spacing: 0.32em;
    margin-top: 0.3em;
}

.logo-container--compact .logo-v-accent::after {
    border-left-width: 0.15em;
    border-right-width: 0.15em;
    border-top-width: 0.18em;
}

/* Versión grande para hero sections */
.logo-container--large .logo-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
}

.logo-container--large .logo-subtitle {
    font-size: clamp(0.65rem, 2.2vw, 1.3rem);
    letter-spacing: 0.38em;
    margin-top: 0.5em;
}

/* Animación sutil al hover (opcional) */
.logo-container--animated {
    cursor: pointer;
}

.logo-container--animated .logo-title,
.logo-container--animated .logo-v-accent::after {
    transition: all 0.3s ease;
}

.logo-container--animated:hover .logo-v-accent::after {
    border-top-color: var(--brand-black);
}

.logo-container--animated:hover .logo-title {
    color: var(--brand-red-accent);
}

/* ======================================== */
/* JERARQUÍA DE ENCABEZADOS */
/* ======================================== */

/* Título principal - muy limitado */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

/* Subtítulo hero */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    font-weight: 300;
    line-height: var(--line-height-normal);
}

/* H1 - Títulos de página */
h1, .h1 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-tight);
}

/* H2 - Títulos de sección */
h2, .h2 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-tight);
}

/* H3 - Subsecciones */
h3, .h3 {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-normal);
    line-height: var(--line-height-tight);
}

/* H4, H5, H6 - Títulos menores */
h4, .h4 {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: var(--line-height-normal);
}

h5, .h5 {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: var(--line-height-normal);
}

h6, .h6 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-normal);
}

/* ======================================== */
/* TEXTO DE CUERPO */
/* ======================================== */

/* Párrafos */
p, .paragraph {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--line-height-relaxed);
    color: inherit;
}

/* Texto grande */
.text-large {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
}

/* Texto pequeño */
.text-small {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--line-height-normal);
}

/* Lead paragraph */
.lead {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    font-weight: 300;
    line-height: var(--line-height-relaxed);
}

/* ======================================== */
/* ELEMENTOS DE NAVEGACIÓN */
/* ======================================== */

/* Enlaces de navegación */
nav a, .nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    transition: all 0.3s ease;
}

/* ======================================== */
/* BOTONES */
/* ======================================== */

/* Botón principal */
.btn, button {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    line-height: 1;
}

/* Botón grande */
.btn-large {
    font-size: var(--text-lg);
    font-weight: 700;
}

/* Botón pequeño */
.btn-small {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* ======================================== */
/* ELEMENTOS ESPECIALES */
/* ======================================== */

/* Citas */
blockquote, .quote {
    font-family: var(--font-decorative);
    font-size: var(--text-2xl);
    font-weight: 400;
    font-style: italic;
    line-height: var(--line-height-relaxed);
}

/* Etiquetas y badges */
.label, .badge {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
}

/* Texto de formulario */
input, textarea, select {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--line-height-normal);
}

label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* ======================================== */
/* UTILIDADES */
/* ======================================== */

/* Peso de fuente */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Transformación de texto */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Espaciado de letras */
.tracking-tighter { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }
.tracking-wider { letter-spacing: var(--letter-spacing-wider); }

/* Altura de línea */
.leading-tight { line-height: var(--line-height-tight); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

/* ======================================== */
/* RESPONSIVE ADJUSTMENTS */
/* ======================================== */

@media (max-width: 768px) {
    :root {
        --text-base: 0.9375rem; /* 15px en móvil */
    }
    
    /* Ajustes para móvil */
    h1, .h1 {
        letter-spacing: var(--letter-spacing-normal);
    }
    
    h2, .h2 {
        letter-spacing: var(--letter-spacing-normal);
    }
    
    nav a, .nav-link {
        font-size: var(--text-base);
    }
}

/* ======================================== */
/* ANIMACIONES TIPOGRÁFICAS */
/* ======================================== */

/* Efecto de aparición suave */
.text-fade-in {
    animation: fadeInText 0.8s ease-out;
}

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

/* Efecto de resaltado */
.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #A21111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.text-highlight:hover::after {
    transform: scaleX(1);
}

/* ======================================== */
/* MEJORAS UX - FOCUS VISIBLE */
/* ======================================== */

/* Focus visible para accesibilidad de teclado */
*:focus-visible {
    outline: 2px solid #A21111;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Focus en inputs */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #A21111;
    outline-offset: 0;
    border-color: #A21111;
}

/* Focus en botones */
button:focus-visible,
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid #A21111;
    outline-offset: 2px;
}

/* ======================================== */
/* NAV LINK ACTIVO */
/* ======================================== */

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A21111;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #A21111;
    font-weight: 600;
}

/* ======================================== */
/* SISTEMA DE TOASTS */
/* ======================================== */

#toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    max-width: 350px;
}

.toast-success { background: linear-gradient(135deg, #10B981, #059669); }
.toast-error { background: linear-gradient(135deg, #EF4444, #DC2626); }
.toast-warning { background: linear-gradient(135deg, #F59E0B, #D97706); }
.toast-info { background: linear-gradient(135deg, #3B82F6, #2563EB); }

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

@keyframes fadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}

/* ======================================== */
/* SKELETON LOADERS */
/* ======================================== */

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.skeleton-image {
    height: 192px;
    background: linear-gradient(90deg, #e5e5e5 25%, #d4d4d4 50%, #e5e5e5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    margin: 8px 16px;
    background: linear-gradient(90deg, #e5e5e5 25%, #d4d4d4 50%, #e5e5e5 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ======================================== */
/* BOTON SCROLL TO TOP */
/* ======================================== */

#scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: #232323;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#scroll-to-top:hover {
    background: #A21111;
    transform: translateY(-2px);
}

#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ======================================== */
/* BOTON FLOTANTE WHATSAPP */
/* ======================================== */

#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

#whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ======================================== */
/* PROGRESS STEPS */
/* ======================================== */

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: #e5e5e5;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-number {
    background: #A21111;
    color: white;
}

.progress-step.completed .progress-step-number {
    background: #10B981;
    color: white;
}

.progress-step-label {
    font-size: 12px;
    color: #666;
    display: none;
}

@media (min-width: 768px) {
    .progress-step-label {
        display: block;
    }
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #e5e5e5;
    transition: background 0.3s ease;
}

.progress-line.completed {
    background: #10B981;
}

/* ===== PRE ORDEN: Option Cards (radio/checkbox como tarjetas) ===== */
.preorden-option-card input:checked + .option-card-inner {
    border-color: #A21111;
    background: #fff5f5;
    color: #A21111;
}
.preorden-option-card input:checked + .option-card-inner .text-sm {
    color: #A21111;
}

.preorden-toggle-card input:checked + .toggle-card-inner {
    border-color: #A21111;
    background: #fff5f5;
}
.preorden-toggle-card input:checked + .toggle-card-inner .text-sm {
    color: #A21111;
    font-weight: 700;
}
.preorden-toggle-card input:checked + .toggle-card-inner .text-xs {
    color: #c53030;
}

/* ======================================== */
/* HERO VIDEO FALLBACK */
/* ======================================== */

.hero-section {
    position: relative;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video {
    z-index: -1;
}

/* ======================================== */
/* ANIMACIONES DE ENTRADA (SCROLL REVEAL) */
/* Manejadas por GSAP si está disponible   */
/* ======================================== */

/* Estado inicial - IMPORTANTE: Elementos SIEMPRE visibles por defecto */
/* GSAP anima DESDE opacity:0, no necesitamos ocultarlos con CSS */
.fade-in-up,
.fade-in-left,
.fade-in-right,
.scale-in {
    /* Garantizar visibilidad en caso de que GSAP falle */
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Solo ocultar cuando GSAP está activo y aun no ha animado */
.gsap-ready .fade-in-up,
.gsap-ready .fade-in-left,
.gsap-ready .fade-in-right,
.gsap-ready .scale-in {
    opacity: 0;
    transform: translateY(30px);
    visibility: visible;
}

.gsap-ready .fade-in-left { transform: translateX(-30px); }
.gsap-ready .fade-in-right { transform: translateX(30px); }
.gsap-ready .scale-in { transform: scale(0.9); }

/* Cuando GSAP anima, restaurar visibilidad */
.gsap-animated {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Fallback CSS cuando GSAP no está disponible */
.no-gsap .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.no-gsap .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-gsap .fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.no-gsap .fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.no-gsap .fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.no-gsap .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.no-gsap .scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.no-gsap .scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay para animaciones en cascada */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ======================================== */
/* GSAP ANIMATION HELPERS                  */
/* ======================================== */

/* Clase para elementos ya animados por GSAP */
.gsap-animated {
    opacity: 1 !important;
    transform: none !important;
}

/* Parallax images */
.parallax-img {
    will-change: transform;
}

/* ======================================== */
/* CARDS DE SERVICIOS - ALTURA CONSISTENTE */
/* ======================================== */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.service-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .card-description {
    flex: 1;
}

/* ======================================== */
/* CARRITO VACIO - ESTADO MEJORADO */
/* ======================================== */

.carrito-vacio {
    text-align: center;
    padding: 3rem 1rem;
}

.carrito-vacio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrito-vacio-icon svg {
    width: 40px;
    height: 40px;
    color: #9ca3af;
}

/* ======================================== */
/* VALIDACION DE FORMULARIOS */
/* ======================================== */

.input-error {
    border-color: #EF4444 !important;
    background-color: #FEF2F2;
}

.input-success {
    border-color: #10B981 !important;
    background-color: #F0FDF4;
}

.error-message {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message svg {
    width: 14px;
    height: 14px;
}

/* ======================================== */
/* HOVER MEJORADO - CARDS PROMOTORAS */
/* ======================================== */

.promotora-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotora-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.promotora-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.promotora-card:hover .card-overlay {
    opacity: 1;
}

.promotora-card .overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.promotora-card:hover .overlay-content {
    transform: translateY(0);
}

.promotora-card .ver-perfil-btn {
    background: #A21111;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.promotora-card .ver-perfil-btn:hover {
    background: #7f1d1d;
}

/* ======================================== */
/* SKIP TO CONTENT (ACCESIBILIDAD) */
/* ======================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #232323;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    transition: top 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* ======================================== */
/* MENU MOVIL - ANIMACION SUAVE */
/* ======================================== */

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
    padding-bottom: 0;
}

#mobile-menu.open {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#mobile-menu a {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#mobile-menu.open a {
    opacity: 1;
    transform: translateX(0);
}

#mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
#mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
#mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
#mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
#mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
#mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }
#mobile-menu.open a:nth-child(8) { transition-delay: 0.4s; }

/* Animacion del icono hamburger a X */
#mobile-menu-button {
    position: relative;
    width: 24px;
    height: 24px;
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.hamburger-icon line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-icon.open line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-icon.open line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-icon.open line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ======================================== */
/* LOADING STATES - BOTONES */
/* ======================================== */

.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ======================================== */
/* LAZY LOADING IMAGES */
/* ======================================== */

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
    opacity: 1;
}

/* ======================================== */
/* RIPPLE EFFECT */
/* ======================================== */

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ======================================== */
/* DARK MODE */
/* ======================================== */

html.dark {
    color-scheme: dark;
}

html.dark body {
    background-color: #121212;
    color: #e0e0e0;
}

html.dark .bg-white {
    background-color: #1e1e1e !important;
}

html.dark .bg-brand-light {
    background-color: #252525 !important;
}

html.dark .bg-gray-50 {
    background-color: #2a2a2a !important;
}

html.dark .bg-gray-100 {
    background-color: #2d2d2d !important;
}

html.dark .text-brand-dark {
    color: #f0f0f0 !important;
}

html.dark .text-gray-600 {
    color: #b0b0b0 !important;
}

html.dark .text-gray-500 {
    color: #a0a0a0 !important;
}

html.dark .text-gray-400 {
    color: #909090 !important;
}

html.dark .border,
html.dark .border-gray-200,
html.dark .border-gray-300 {
    border-color: #404040 !important;
}

html.dark .shadow-lg,
html.dark .shadow-xl {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

html.dark input,
html.dark textarea,
html.dark select {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #e0e0e0;
}

html.dark input:focus,
html.dark textarea:focus,
html.dark select:focus {
    border-color: #A21111;
}

html.dark .modal > div:not(.modal-backdrop) {
    background-color: #1e1e1e !important;
}

html.dark header {
    background-color: rgba(30, 30, 30, 0.95) !important;
}

html.dark footer {
    background-color: #0a0a0a !important;
}

html.dark .promotora-card,
html.dark .service-card {
    background-color: #1e1e1e !important;
}

html.dark .faq-item {
    background-color: #252525 !important;
}

/* ======================================== */
/* LOGOS EN DARK MODE                       */
/* ======================================== */

/* Tarjetas de logos en sección "Nuestras Marcas" - mantener fondo claro */
html.dark #logos .bg-white,
html.dark #logos .rounded-xl {
    background-color: #f5f5f5 !important;
}

/* Contenedores de iconos en "Propuesta de Valor" - mantener fondo claro */
html.dark #propuesta-valor .bg-gray-200 {
    background-color: #e5e5e5 !important;
}

/* Clase utilitaria: Forzar fondo claro para logos en dark mode */
.logo-card-light {
    transition: background-color 0.3s ease;
}

html.dark .logo-card-light {
    background-color: #f5f5f5 !important;
}

/* Clase utilitaria: Invertir colores de logo en dark mode */
.logo-invertible {
    transition: filter 0.3s ease;
}

html.dark .logo-invertible {
    filter: brightness(0) invert(1);
}

/* Clase utilitaria: Preservar colores del logo con fondo claro automático */
.logo-preserve {
    transition: all 0.3s ease;
}

html.dark .logo-preserve {
    background-color: rgba(245, 245, 245, 0.95);
    border-radius: 8px;
    padding: 8px;
}

/* ======================================== */
/* CONTRASTE MEJORADO */
/* ======================================== */

/* Textos grises con mejor contraste */
.text-gray-600 {
    color: #525252; /* Más oscuro que el default #6b7280 */
}

.text-gray-500 {
    color: #4a4a4a; /* Más oscuro que el default #9ca3af */
}

.text-gray-400 {
    color: #606060; /* Más oscuro que el default #9ca3af */
}

/* ======================================== */
/* VOICE SEARCH */
/* ======================================== */

.voice-search-btn {
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.voice-search-btn.listening,
#search-action-btn.listening {
    color: #A21111;
    animation: pulse-voice 1s infinite;
}

@keyframes pulse-voice {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ======================================== */
/* WISHLIST BUTTON */
/* ======================================== */

.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn svg {
    transition: all 0.3s ease;
}

.wishlist-btn:hover svg {
    color: #A21111;
}

/* ======================================== */
/* FAQ ACCORDION */
/* ======================================== */

.faq-question {
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(162, 17, 17, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    animation: faq-slide-down 0.3s ease;
}

@keyframes faq-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================== */
/* ICONOS DE SERVICIOS */
/* ======================================== */

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.service-icon.promotoras { background: linear-gradient(135deg, #A21111, #D32F2F); }
.service-icon.uniformes { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.service-icon.material { background: linear-gradient(135deg, #059669, #10B981); }
.service-icon.ia { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.service-icon.pantallas { background: linear-gradient(135deg, #D97706, #F59E0B); }
.service-icon.redes { background: linear-gradient(135deg, #DB2777, #EC4899); }
.service-icon.eventos { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.service-icon.capacitacion { background: linear-gradient(135deg, #4F46E5, #6366F1); }

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ======================================== */
/* RANGE SLIDER CUSTOM */
/* ======================================== */

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #A21111;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(162, 17, 17, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #A21111;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

html.dark input[type="range"] {
    background: #404040;
}

/* ======================================== */
/* XTRA GYM STYLE COMPONENTS               */
/* ======================================== */

/* Botón con flecha estilo XTRA GYM */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    transition: all 0.3s ease;
}

.btn-arrow .arrow-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #A21111;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-arrow .arrow-box svg {
    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.btn-arrow:hover .arrow-box {
    background-color: #7f0d0d;
    transform: translateX(4px);
}

.btn-arrow:hover .arrow-box svg {
    transform: translateX(2px);
}

.btn-arrow .btn-text {
    color: #232323;
}

html.dark .btn-arrow .btn-text {
    color: #f0f0f0;
}

/* Variante: Botón flecha blanco (para fondos oscuros) */
.btn-arrow--white .arrow-box {
    background-color: white;
}

.btn-arrow--white .arrow-box svg {
    color: #A21111;
}

.btn-arrow--white .btn-text {
    color: white;
}

.btn-arrow--white:hover .arrow-box {
    background-color: #f0f0f0;
}

/* Variante: Botón flecha compacto */
.btn-arrow--compact .arrow-box {
    width: 40px;
    height: 40px;
}

.btn-arrow--compact {
    font-size: var(--text-sm);
}

/* Variante: Botón flecha en línea (slim) */
.btn-arrow--inline {
    background-color: #A21111;
    padding: 0.5rem 1.25rem;
    padding-left: 0.625rem;
    border-radius: 6px;
    gap: 0.5rem;
    font-size: var(--text-sm);
}

.btn-arrow--inline .arrow-box {
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
}

.btn-arrow--inline .arrow-box svg {
    width: 16px;
    height: 16px;
}

.btn-arrow--inline .btn-text {
    color: white;
}

.btn-arrow--inline:hover {
    background-color: #7f0d0d;
}

/* Variante: Botón flecha slim (más delgado y elegante) */
.btn-arrow--slim {
    display: inline-flex;
    align-items: center;
    background-color: #A21111;
    padding: 0.5rem 1.25rem;
    padding-left: 0.75rem;
    border-radius: 6px;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-arrow--slim .arrow-box {
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-arrow--slim .arrow-box svg {
    width: 14px;
    height: 14px;
    color: white;
    transition: transform 0.3s ease;
}

.btn-arrow--slim .btn-text {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-arrow--slim:hover {
    background-color: #7f0d0d;
    transform: translateY(-1px);
}

.btn-arrow--slim:hover .arrow-box svg {
    transform: translateX(2px);
}

/* ======================================== */
/* ICONOS OUTLINE                          */
/* ======================================== */

.icon-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #A21111;
    border-radius: 16px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.icon-outline svg {
    width: 32px;
    height: 32px;
    color: #A21111;
    transition: all 0.3s ease;
}

.icon-outline:hover {
    background-color: #A21111;
    transform: scale(1.05);
}

.icon-outline:hover svg {
    color: white;
}

/* Variantes de tamaño */
.icon-outline--sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.icon-outline--sm svg {
    width: 24px;
    height: 24px;
}

.icon-outline--lg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}

.icon-outline--lg svg {
    width: 40px;
    height: 40px;
}

/* Dark mode para iconos outline */
html.dark .icon-outline {
    border-color: #A21111;
}

html.dark .icon-outline svg {
    color: #A21111;
}

/* ======================================== */
/* HERO CARD FLOTANTE                      */
/* ======================================== */

.hero-card-floating {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    position: relative;
    z-index: 20;
}

.hero-card-floating .card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #232323;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-card-floating .card-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-card-floating .card-accent {
    color: #A21111;
}

html.dark .hero-card-floating {
    background: #1e1e1e;
}

html.dark .hero-card-floating .card-title {
    color: #f0f0f0;
}

html.dark .hero-card-floating .card-subtitle {
    color: #a0a0a0;
}

/* ======================================== */
/* HEADER XTRA GYM LAYOUT                  */
/* ======================================== */

.header-xtra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.header-logo-box {
    display: flex;
    align-items: center;
    background-color: #232323;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.header-logo-box:hover {
    background-color: #A21111;
}

.header-nav-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-social-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
    border-right: 1px solid #e5e5e5;
}

html.dark .header-social-group {
    border-right-color: #404040;
}

.header-social-group a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #666;
    transition: all 0.3s ease;
}

.header-social-group a:hover {
    background-color: #A21111;
    color: white;
}

/* ======================================== */
/* PROPUESTA DE VALOR - LAYOUT HORIZONTAL  */
/* ======================================== */

.value-prop-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-prop-horizontal:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-prop-horizontal .value-icon {
    flex-shrink: 0;
}

.value-prop-horizontal .value-content {
    flex: 1;
}

.value-prop-horizontal .value-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--brand-red-accent);
    margin-bottom: 0.5rem;
}

.value-prop-horizontal .value-description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: #666;
    line-height: 1.6;
}

html.dark .value-prop-horizontal {
    background: #1e1e1e;
}

html.dark .value-prop-horizontal .value-title {
    color: var(--brand-red-accent);
}

html.dark .value-prop-horizontal .value-description {
    color: #a0a0a0;
}

/* ======================================== */
/* NOSOTROS - MOSAICO DE IMAGENES          */
/* ======================================== */

.image-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
}

.image-mosaic .mosaic-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-mosaic .mosaic-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.image-mosaic .mosaic-item--tall {
    grid-row: span 2;
}

.image-mosaic .mosaic-item--wide {
    grid-column: span 2;
}

.image-mosaic .mosaic-item--offset {
    transform: translateY(2rem);
}

/* Composición superpuesta */
.image-overlap-container {
    position: relative;
    padding: 2rem;
}

.image-overlap-main {
    width: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-overlap-secondary {
    position: absolute;
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
}

.image-overlap-secondary--top-right {
    top: 0;
    right: 0;
}

.image-overlap-secondary--bottom-left {
    bottom: 0;
    left: 0;
}

html.dark .image-overlap-secondary {
    border-color: #1e1e1e;
}

/* ======================================== */
/* SERVICE CARDS - ESTILO IMAGEN GRANDE    */
/* ======================================== */

.service-card-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-image .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-image .card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #A21111;
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.service-card-image .card-body {
    padding: 1.5rem;
}

.service-card-image .card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: #232323;
    margin-bottom: 0.5rem;
}

html.dark .service-card-image {
    background: #1e1e1e;
}

html.dark .service-card-image .card-title {
    color: #f0f0f0;
}

/* ======================================== */
/* RESPONSIVE - XTRA GYM COMPONENTS        */
/* ======================================== */

@media (max-width: 1024px) {
    /* Header responsive */
    .header-nav-center {
        gap: 1rem;
    }

    .header-social-group {
        display: none;
    }

    /* Hero card */
    .hero-card-floating {
        max-width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* Botón arrow más pequeño en móvil */
    .btn-arrow .arrow-box {
        width: 40px;
        height: 40px;
    }

    .btn-arrow .arrow-box svg {
        width: 16px;
        height: 16px;
    }

    .btn-arrow {
        font-size: var(--text-sm);
        gap: 0.5rem;
    }

    /* Header responsive */
    .header-logo-box {
        padding: 0.375rem 0.75rem;
    }

    .header-logo-box img {
        height: 2.5rem;
    }

    /* Hero card flotante */
    .hero-card-floating {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hero-card-floating .card-title {
        font-size: 1.5rem;
    }

    .hero-card-floating .card-subtitle {
        font-size: var(--text-base);
    }

    /* Value props horizontal - stack en móvil */
    .value-prop-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .value-prop-horizontal:hover {
        transform: translateY(-4px);
    }

    /* Icon outline más pequeño */
    .icon-outline--lg {
        width: 64px;
        height: 64px;
    }

    .icon-outline--lg svg {
        width: 32px;
        height: 32px;
    }

    /* Mosaico de imágenes - simplificar en móvil */
    .image-overlap-container {
        padding: 1rem;
    }

    .image-overlap-container .absolute {
        position: relative !important;
        margin-top: 1rem;
        width: 100% !important;
    }

    .image-overlap-main {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Botón inline más compacto */
    .btn-arrow--inline {
        padding: 0.625rem 1rem;
        font-size: var(--text-xs);
    }

    /* Hero ajustes móvil pequeño */
    .hero-card-floating {
        padding: 1.25rem;
    }

    .hero-card-floating .card-title {
        font-size: 1.25rem;
    }
}