/* AUTO-GENERATED by build-model-bundle.sh - do not edit by hand. Edit the parts and re-run. */
/* --- language-tabs.css --- */
/* Estilos para Sistema Bilingüe - Pestañas de Idioma */

/* Tabs Container */
.lang-tabs-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 20px 0;
    overflow: hidden;
}

/* Tabs Header */
.lang-tabs-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e1e8ed;
    padding: 0;
    gap: 0;
}

.lang-tab {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.lang-tab:hover {
    background: #e9ecef;
    color: #495057;
}

.lang-tab.active {
    background: #fff;
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.lang-tab-flag {
    width: 32px;
    height: 22px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
    object-fit: cover;
}

.lang-tab-text {
    font-size: 15px;
}

/* Tabs Content */
.lang-tabs-content {
    padding: 30px;
}

.lang-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.lang-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Indicator Badge */
.lang-indicator {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-indicator.lang-es {
    background: #ffeaa7;
    color: #2d3436;
}

.lang-indicator.lang-en {
    background: #74b9ff;
    color: #2d3436;
}

/* Empty State */
.empty-translation {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 6px;
    color: #856404;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.empty-translation::before {
    content: "⚠️";
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-tabs-header {
        flex-direction: column;
    }
    
    .lang-tab {
        border-bottom: 1px solid #e1e8ed;
        border-left: 3px solid transparent;
    }
    
    .lang-tab.active {
        border-bottom-color: #e1e8ed;
        border-left-color: var(--gold);
    }
}

/* Frontend Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.lang-option.active {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    font-weight: 800;
}

.flag-icon {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
    object-fit: cover;
}

.lang-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        gap: 3px;
        padding: 4px;
    }
    
    .lang-option {
        padding: 6px 8px;
        gap: 4px;
    }
    
    .flag-icon {
        width: 20px;
        height: 14px;
    }
    
    .lang-text {
        display: none;
    }
}

/* --- text-adjustments.css --- */
/**
 * Text Size Adjustments - Reducción del 20% en header y títulos
 * Featured Model Background Colors
 */

/* ==========================================
   REDUCCIÓN DE TAMAÑOS - HEADER
   ========================================== */

/* Logo reducido */
.logo img {
    max-height: 48px; /* Reducido de 60px (20% menos) */
}

/* Navegación reducida */
.nav-link {
    font-size: 11.2px !important; /* Reducido de 14px (20% menos) */
    padding: 10px 19px !important; /* Reducido de 12px 24px (20% menos) */
    letter-spacing: 0.4px !important; /* Reducido de 0.5px */
}

/* Botones del selector de idioma reducidos */
.lang-option {
    font-size: 10.4px !important; /* Reducido de 13px (20% menos) */
    padding: 8px 13px !important; /* Reducido de 10px 16px */
}

.flag-icon {
    width: 21px !important; /* Reducido de 26px (20% menos) */
    height: 14px !important; /* Reducido de 18px (20% menos) */
}

.lang-text {
    font-size: 8.8px !important; /* Reducido de 11px (20% menos) */
}

/* Mobile menu toggle reducido */
.mobile-menu-toggle {
    font-size: 19.2px !important; /* Reducido de 24px (20% menos) */
    padding: 6px 10px !important; /* Reducido de 8px 12px */
}

/* ==========================================
   REDUCCIÓN DE TAMAÑOS - TÍTULOS GLOBALES
   ========================================== */

/* CTA Principal */
.cta-title {
    font-size: 28.8px !important; /* Reducido de 36px (20% menos) */
}

.cta-description {
    font-size: 14.4px !important; /* Reducido de 18px (20% menos) */
}

.cta-btn {
    font-size: 14.4px !important; /* Reducido de 18px (20% menos) */
    padding: 13px 32px !important; /* Reducido de 16px 40px (20% menos) */
}

/* Servicios */
.service-box h3 {
    font-size: 19.2px !important; /* Reducido de 24px (20% menos) */
}

.service-content {
    font-size: 12.8px !important; /* Reducido de 16px (20% menos) */
}

/* FAQ */
.faq-title {
    font-size: 28.8px !important; /* Reducido de 36px (20% menos) */
}

.faq-question {
    font-size: 15.2px !important; /* Reducido de 19px (20% menos) */
}

.faq-answer {
    font-size: 12.8px !important; /* Reducido de 16px (20% menos) */
}

/* Títulos de secciones generales */
.section-title,
.page-header h1 {
    font-size: 32px !important; /* Reducido de 40px (20% menos) */
}

.page-header p {
    font-size: 14.4px !important; /* Reducido de 18px (20% menos) */
}

/* Tarjetas de modelo - Títulos */
.card-title {
    font-size: 16px !important; /* Reducido de 20px (20% menos) */
}

.card-details {
    font-size: 11.2px !important; /* Reducido de 14px (20% menos) */
}

/* Footer */
.footer-info h4,
.footer-links h4 {
    font-size: 14.4px !important; /* Reducido de 18px (20% menos) */
}

.footer-bottom p {
    font-size: 11.2px !important; /* Reducido de 14px (20% menos) */
}

.design-credit {
    font-size: 9.6px !important; /* Reducido de 12px (20% menos) */
}

/* ==========================================
   MODELO DESTACADA - BACKGROUND COLOR
   ========================================== */

/* Aplicar efecto sutil a modelos destacados */
.model-card.featured {
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.4); /* Borde dorado sutil */
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3); /* Sombra dorada */
    overflow: visible !important; /* IMPORTANTE: permite que el badge se muestre */
    margin-top: 20px; /* Espacio para el badge que está arriba */
}

/* Restaurar overflow hidden para contener la imagen, pero permitir que los badges se muestren */
.card-image {
    overflow: hidden !important; /* Contiene la imagen */
    position: relative; /* Para posicionar badges dentro */
}

/* Asegurar que el contenido sea visible */
.model-card.featured .card-body,
.model-card.featured .card-footer {
    position: relative;
    z-index: 1;
    background: #ffffff;
}

/* Badge de destacado - Posicionado arriba del título, fuera de la imagen */
.model-card.featured::after {
    content: attr(data-featured-text);
    position: absolute;
    top: -12px; /* Fuera de la tarjeta, arriba */
    left: 12px;
    right: auto; /* NO estirar a la derecha */
    bottom: auto; /* NO estirar hacia abajo */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    width: fit-content; /* Solo el ancho del contenido */
    height: fit-content; /* Solo la altura del contenido */
    white-space: nowrap; /* No dividir el texto en líneas */
    pointer-events: none;
}

/* Animación de brillo para destacados */
@keyframes shine {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(212, 175, 55, 0.7);
    }
}

.model-card.featured {
    animation: shine 3s ease-in-out infinite;
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 768px) {
    /* Header mobile más compacto */
    .logo img {
        max-height: 40px; /* Aún más pequeño en móvil */
    }
    
    .nav-link {
        font-size: 10px !important;
        padding: 8px 12px !important;
    }
    
    /* Títulos en móvil */
    .cta-title,
    .section-title,
    .page-header h1 {
        font-size: 24px !important;
    }
    
    .cta-description,
    .page-header p {
        font-size: 13px !important;
    }
    
    /* Badge de destacado en móvil - más pequeño */
    .model-card.featured::after {
        font-size: 8px;
        padding: 4px 8px;
        top: -10px; /* Fuera de la tarjeta también en móvil */
        left: 8px;
        right: auto;
        bottom: auto;
    }
    
    /* Borde más delgado en móvil */
    .model-card.featured {
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 36px;
    }
    
    .cta-title,
    .section-title,
    .page-header h1 {
        font-size: 20px !important;
    }
}

/* --- category-badges.css --- */
/* ========================================
   CATEGORY BADGES STYLES
   ======================================== */

/* Asegurar que el contenedor de la imagen permita posicionamiento absoluto */
.card-image {
    position: relative !important;
}

.category-badge {
    position: absolute;
    bottom: 35px; /* ✅ Subido 20px más (era 15px, ahora 35px) */
    left: 10px;
    background: rgba(212, 175, 55, 0.95);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 100 !important; /* Muy alto para estar por encima de todo */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none; /* No interferir con clicks */
    display: inline-block; /* Asegurar display */
    white-space: nowrap; /* No romper el texto */
}

.category-badge.prepagos,
.category-badge.escorts {
    background: rgba(212, 175, 55, 0.95);
    color: #1a1a1a;
}

.category-badge.masajes {
    background: rgba(46, 204, 113, 0.95);
    color: white;
}

.category-badge.videollamadas {
    background: rgba(52, 152, 219, 0.95);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .category-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* --- card-redesign.css --- */
/**
 * Card Redesign - Nuevo diseño mejorado de tarjetas
 * Basado en el mockup del cliente
 */

/* ==========================================
   HEADER DE LA TARJETA - Nombre + Verificado + Edad
   ========================================== */

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 4px; /* Reducido de 8px a 4px */
}

.name-verified {
    display: flex;
    align-items: flex-start; /* Alineación superior */
    gap: 6px;
    flex: 1;
}

.card-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    /* Color accesible WCAG AA - contraste 4.5:1+ sobre fondo blanco */
    color: #1a1a1a !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    text-transform: capitalize;
    padding-top: 1px; /* Pequeño ajuste para alineación perfecta */
}

/* Badge de verificado inline junto al nombre - Alineado arriba */
.verified-inline {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
    margin-top: 2px; /* Ajuste para alineación superior */
}

/* Badge de edad - Estilo dorado prominente */
.age-badge {
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(255, 184, 0, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================
   NACIONALIDAD
   ========================================== */

.card-nationality {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px 0; /* Reducido de 12px a 6px */
    line-height: 1.3;
}

/* ==========================================
   DESCRIPCIÓN MEJORADA
   ========================================== */

.card-description {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #495057 !important;
    margin: 0 0 10px 0 !important; /* Reducido de 16px a 10px */
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Mostrar 4 líneas */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 80px;
    text-align: justify;
}

/* ==========================================
   ELIMINAR ESTILOS ANTIGUOS
   ========================================== */

/* Ocultar badge de verificado en la imagen (ahora está junto al nombre) */
.verified-badge-img {
    display: none !important;
}

/* Eliminar los detail-items antiguos ya que no se usan */
.card-details {
    display: none;
}

/* ==========================================
   BADGE DE DESTACADO - Reposicionado
   ========================================== */

/* Mover badge de destacado a la esquina superior izquierda de la IMAGEN */
.model-card.featured::after {
    content: attr(data-featured-text);
    position: absolute;
    top: 12px !important; /* Dentro de la imagen */
    left: 12px !important;
    right: auto;
    bottom: auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    color: #FFD700;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    width: fit-content;
    height: fit-content;
    white-space: nowrap;
    pointer-events: none;
}

/* Remover margin-top extra de las tarjetas destacadas */
.model-card.featured {
    margin-top: 0 !important;
}

/* ==========================================
   BOTÓN VER PERFIL
   ========================================== */

.card-footer .btn {
    width: 100%;
    padding: 14px 20px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: var(--gold, #d4af37) !important;
    border: 2px solid var(--gold, #d4af37) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-footer .btn:hover {
    background: var(--gold, #d4af37) !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .card-header-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .age-badge {
        align-self: flex-start;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .card-title {
        font-size: 18px !important;
    }
    
    .verified-inline {
        width: 16px !important;
        height: 16px !important;
    }
    
    .card-nationality {
        font-size: 13px;
    }
    
    .card-description {
        font-size: 12px !important;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        min-height: 60px;
    }
    
    .model-card.featured::after {
        font-size: 9px;
        padding: 5px 10px;
        top: 10px !important;
        left: 10px !important;
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 16px !important;
    }
    
    .age-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* --- video-hover.css --- */
/**
 * Video Hover Effect for Model Cards
 * Smooth fade transitions between image and video on hover
 */

/* Video Container Positioning */
.card-image {
    position: relative;
    overflow: hidden;
}

/* Main Image Styling */
.card-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: opacity 0.4s ease-in-out;
}

/* Video Styling */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

/* Secondary Image Styling */
.card-secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

/* Hover State - Show Video, Hide Image */
.model-card[data-has-video="1"]:hover .card-main-image {
    opacity: 0;
}

.model-card[data-has-video="1"]:hover .card-video {
    opacity: 1;
    pointer-events: auto;
}

/* Hover State - Show Secondary Image (No Video) */
.model-card[data-has-video="0"][data-total-images]:hover .card-main-image {
    opacity: 0;
}

.model-card[data-has-video="0"][data-total-images]:hover .card-secondary-image {
    opacity: 1;
    pointer-events: auto;
}

/* Fallback robusto - Solo mostrar hover si secondary image existe */
.model-card[data-has-video="0"][data-secondary-image=""]:hover .card-main-image {
    opacity: 1;
}

.model-card[data-has-video="0"][data-secondary-image=""]:hover .card-secondary-image {
    opacity: 0;
}

/* Selector mejorado para hover con secondary image */
.model-card[data-has-video="0"]:not([data-secondary-image=""]):hover .card-main-image {
    opacity: 0;
}

.model-card[data-has-video="0"]:not([data-secondary-image=""]):hover .card-secondary-image {
    opacity: 1;
    pointer-events: auto;
}

/* Ensure badges stay on top */
.category-badge,
.verified-badge-img {
    position: relative;
    z-index: 2;
}

/* Preload Optimization */
.card-video,
.card-secondary-image {
    will-change: opacity;
}

.card-main-image {
    will-change: opacity;
}

/* Mobile Devices - Tap to Play/Show */
@media (max-width: 768px) {
    /* On mobile, video shows on active/focus */
    .model-card[data-has-video="1"]:active .card-main-image,
    .model-card[data-has-video="1"].video-playing .card-main-image {
        opacity: 0;
    }
    
    .model-card[data-has-video="1"]:active .card-video,
    .model-card[data-has-video="1"].video-playing .card-video {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* On mobile, secondary image shows on active/focus */
    .model-card[data-has-video="0"][data-total-images]:active .card-main-image,
    .model-card[data-has-video="0"][data-total-images].image-hover .card-main-image {
        opacity: 0;
    }
    
    .model-card[data-has-video="0"][data-total-images]:active .card-secondary-image,
    .model-card[data-has-video="0"][data-total-images].image-hover .card-secondary-image {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Performance Optimization */
.card-video[data-loaded="true"],
.card-secondary-image[data-loaded="true"] {
    will-change: auto;
}

.card-main-image[data-loaded="true"] {
    will-change: auto;
}

/* Loading State */
.card-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.card-video.loading::before {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Smooth Card Transform on Hover */
.model-card[data-has-video="1"] {
    transition: transform 0.3s ease;
}

.model-card[data-has-video="1"]:hover {
    transform: translateY(-4px);
}

/* Video Play Indicator (Optional Enhancement) */
.model-card[data-has-video="1"] .card-image::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.model-card[data-has-video="1"]:hover .card-image::after {
    opacity: 0.8;
}

.model-card[data-has-video="1"]:hover:active .card-image::after {
    opacity: 0;
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .card-main-image,
    .card-video {
        transition: none;
    }
    
    .model-card[data-has-video="1"] {
        transition: none;
    }
    
    .card-image::after {
        transition: none;
    }
}

/* High Performance Mode - GPU Acceleration */
.card-video,
.card-main-image {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* --- video-lightbox.css --- */
/**
 * Video Lightbox Styles
 * Lightbox para mostrar videos en pantalla completa
 */

/* ==========================================
   VIDEO THUMBNAIL EN GALERÍA
   ========================================== */

.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    height: 100px; /* Mismo tamaño que las miniaturas de fotos */
    border: 3px solid transparent;
}

.video-thumb:hover {
    border-color: var(--primary);
    transform: none; /* Quitar escala para mantener consistencia con fotos */
}

.video-thumb .video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recortar para ajustar al tamaño */
    pointer-events: none;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.video-thumb:hover .video-play-overlay svg circle {
    fill: rgba(212, 175, 55, 0.9);
}

.video-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold, #d4af37);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

/* ==========================================
   VIDEO LIGHTBOX
   ========================================== */

.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.video-lightbox-close:hover {
    color: var(--gold, #d4af37);
    transform: scale(1.2);
}

#lightboxVideo {
    width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .video-lightbox {
        padding: 10px;
    }
    
    .video-lightbox-content {
        max-height: 95vh;
    }
    
    .video-lightbox-close {
        top: -35px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    #lightboxVideo {
        max-height: 95vh;
    }
    
    .video-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .video-lightbox {
        padding: 5px;
    }
    
    .video-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* --- image-lightbox.css --- */
/**
 * Image Lightbox Styles
 * Lightbox para mostrar imágenes en pantalla completa
 */

/* ==========================================
   IMAGE LIGHTBOX
   ========================================== */

.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    cursor: pointer; /* Permite cerrar al hacer click en el fondo */
}

.image-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default; /* No cerrar al hacer click en la imagen */
}

.image-lightbox img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Botón de cerrar (X) */
.image-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 45px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    font-weight: 300;
}

.image-lightbox-close:hover {
    color: var(--gold, #d4af37);
    transform: scale(1.2) rotate(90deg);
}

/* Cursor pointer en la imagen principal */
.gallery-main {
    cursor: pointer;
    position: relative;
}

.gallery-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-main:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* Indicador de "Click to expand" */
.gallery-main:hover {
    opacity: 0.95;
}

/* ==========================================
   NAVIGATION BUTTONS
   ========================================== */

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav svg {
    pointer-events: none;
}

/* ==========================================
   COUNTER
   ========================================== */

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10002;
}

/* Video in lightbox */
.image-lightbox video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .image-lightbox {
        padding: 10px;
    }
    
    .image-lightbox-content {
        max-height: 95vh;
    }
    
    .image-lightbox img,
    .image-lightbox video {
        max-height: 95vh;
    }
    
    .image-lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .image-lightbox {
        padding: 5px;
    }
    
    .image-lightbox-close {
        top: 5px;
        right: 5px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-counter {
        bottom: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ==========================================
   PREVENIR SCROLL CUANDO LIGHTBOX ACTIVO
   ========================================== */

body.lightbox-active {
    overflow: hidden;
}

/* --- comments.css --- */
/* Sistema de Comentarios y Calificaciones */
.comments-section {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 2px solid #f0f0f0;
}

.comments-section h2 {
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Formulario de Comentarios */
.comment-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid var(--primary);
}

.comment-form h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    background: white;
    color: var(--dark);
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c89d3a;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

/* Sistema de Estrellas */
.ratings-container {
    margin-bottom: 15px;
}

.rating-group {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid var(--primary);
}

.rating-group:last-child {
    margin-bottom: 0;
}

.rating-label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
}

.star-rating {
    display: flex;
    gap: 5px;
    direction: rtl;
    justify-content: flex-end;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 28px;
    color: #ddd;
    transition: all 0.2s;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: var(--primary);
}

.star-rating label:hover {
    transform: scale(1.1);
}

/* Checkbox personalizado */
.repeat-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}

.repeat-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Botón de enviar */
.btn-submit-comment {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-comment:hover {
    background: #c89d3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Lista de Comentarios */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.comment-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #c89d3a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    margin: 0;
    color: var(--dark);
    font-size: 18px;
}

.comment-date {
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

/* Calificaciones Mostradas */
.comment-ratings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.rating-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.rating-item-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 18px;
}

.rating-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    margin-top: 5px;
}

/* Comentario Texto */
.comment-text {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Badge de Repetir */
.would-repeat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.would-repeat.no {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Promedio General */
.average-rating {
    background: linear-gradient(135deg, var(--primary), #c89d3a);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.average-rating h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    opacity: 0.9;
}

.average-score {
    font-size: 72px;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.average-stars {
    font-size: 32px;
    margin: 10px 0;
}

.total-reviews {
    opacity: 0.9;
    font-size: 16px;
}

/* Estado vacío */
.no-comments {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-comments-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Alerta de éxito */
.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .comment-form {
        padding: 20px;
    }
    
    .comment-ratings {
        grid-template-columns: 1fr;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .average-score {
        font-size: 56px;
    }
    
    .star-rating label {
        font-size: 24px;
    }
    
    .rating-group {
        padding: 12px;
    }
}

/* --- performance.css --- */
/**
 * Performance Optimizations - Core Web Vitals
 * - Aspect ratio para evitar CLS
 * - Skeleton loaders
 * - Font display optimization
 */

/* ========================================
   ASPECT RATIO - Evitar CLS
   ======================================== */

/* Cards de modelos - ratio 3:4 (típico de fotos de perfil) */
.card-image {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Imágenes dentro de cards */
.card-main-image,
.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Galería de modelo - sin aspect-ratio fijo para evitar espacios vacíos */
.gallery-main {
    background-color: transparent;
}

/* Thumbnails - ratio 1:1 */
.gallery-thumbs img,
.thumb-item {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* ========================================
   SKELETON LOADERS
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Skeleton para cards */
.card-skeleton {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

.card-skeleton .skeleton-image {
    height: 70%;
    border-radius: 12px 12px 0 0;
}

.card-skeleton .skeleton-text {
    height: 12px;
    margin: 10px 15px;
    border-radius: 6px;
}

.card-skeleton .skeleton-text.short {
    width: 60%;
}

/* ========================================
   FONT DISPLAY OPTIMIZATION
   ======================================== */
/* Nota: Añadir font-display: swap en @font-face personalizados */

/* ========================================
   IMAGE LOADING STATES
   ======================================== */
img {
    /* Prevenir layout shift */
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    /* Placeholder color mientras carga */
    background-color: #f5f5f5;
}

img.loaded {
    animation: fadeIn 0.3s ease;
}

img.load-error {
    background-color: #fee;
    border: 1px solid #fcc;
}

video.loaded {
    animation: fadeIn 0.3s ease;
}

video.load-error {
    background-color: #fee;
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Lazy loading backgrounds */
[data-bg] {
    background-color: #f5f5f5;
    transition: background-image 0.3s ease;
}

[data-bg].bg-loaded {
    animation: fadeIn 0.3s ease;
}

/* ========================================
   CONTAIN - Optimización de renderizado
   ======================================== */
.model-card {
    contain: layout style paint;
}

.models-grid {
    contain: layout style;
}

/* ========================================
   WILL-CHANGE - GPU hints (usar con moderación)
   ======================================== */
.card-image:hover .card-main-image {
    will-change: transform;
}

/* ========================================
   REDUCE MOTION - Accesibilidad
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .skeleton {
        animation: none;
        background: #e0e0e0;
    }
    
    img.loaded {
        animation: none;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ========================================
   CONTENT VISIBILITY - Mejora renderizado inicial
   ======================================== */
.model-card:nth-child(n+9) {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

/* ========================================
   LAZY LOAD CARDS - Animación de aparición
   IMPORTANTE: Primeras 4 tarjetas sin animación para no afectar LCP
   ======================================== */

/* Primeras 4 tarjetas: visibles inmediatamente (LCP optimization) */
.model-card:nth-child(-n+4) {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Tarjetas 5-12: animación escalonada */
.model-card:nth-child(n+5) {
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.4s ease forwards;
}

.model-card:nth-child(5) { animation-delay: 0.05s; }
.model-card:nth-child(6) { animation-delay: 0.1s; }
.model-card:nth-child(7) { animation-delay: 0.15s; }
.model-card:nth-child(8) { animation-delay: 0.2s; }
.model-card:nth-child(9) { animation-delay: 0.25s; }
.model-card:nth-child(10) { animation-delay: 0.3s; }
.model-card:nth-child(11) { animation-delay: 0.35s; }
.model-card:nth-child(12) { animation-delay: 0.4s; }

/* Para tarjetas después de la 12, usar IntersectionObserver via JS */
.model-card:nth-child(n+13) {
    animation: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.model-card:nth-child(n+13).visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   OPTIMIZACIÓN DE SCROLL
   ======================================== */
.models-grid {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    .models-grid {
        scroll-behavior: auto;
    }
    
    .model-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .model-card:nth-child(n+13) {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   PRINT STYLES - Opcional
   ======================================== */
@media print {
    .card-video,
    video {
        display: none;
    }
}

/* --- accessibility.css --- */
/**
 * ════════════════════════════════════════════════════════════════
 *  ACCESSIBILITY FIXES - WCAG AA COMPLIANT
 *  Correcciones de accesibilidad para Lighthouse 100%
 * ════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
 *  VARIABLES DE COLORES ACCESIBLES
 *  Colores con ratio de contraste mínimo 4.5:1 (WCAG AA)
 * ═══════════════════════════════════════════════════════════════ */
:root {
    /* Dorado oscuro accesible sobre fondo blanco (contraste 4.5:1+) */
    --gold-accessible: #8B7200;
    
    /* Textos oscuros con buen contraste */
    --text-dark-accessible: #1a1a1a;
    --text-gray-accessible: #525252;
    
    /* Colores de estado accesibles */
    --warning-accessible: #735c00;
    --tip-text-accessible: #664d03;
}

/* ═══════════════════════════════════════════════════════════════
 *  CARD TITLE - NOMBRE DE MODELOS
 *  Problema: #d4af37 sobre blanco no tiene suficiente contraste
 *  Solución: Usar color oscuro con suficiente contraste
 * ═══════════════════════════════════════════════════════════════ */
.card-title {
    color: var(--text-dark-accessible, #1a1a1a) !important;
}

/* ═══════════════════════════════════════════════════════════════
 *  CARD BODY - CONTENIDO DE LAS TARJETAS
 *  Asegurar texto legible en descripciones
 * ═══════════════════════════════════════════════════════════════ */
.card-body {
    color: var(--text-dark-accessible, #1a1a1a);
}

.card-body .card-description,
.card-body p {
    color: var(--text-gray-accessible, #525252);
}

.card-nationality {
    color: var(--text-gray-accessible, #525252) !important;
}

/* ═══════════════════════════════════════════════════════════════
 *  SERVICE BOX - SECCIÓN DE SERVICIOS
 *  Problema: strong con color dorado sin contraste
 *  Solución: Color oscuro accesible
 * ═══════════════════════════════════════════════════════════════ */
.service-box {
    color: var(--text-dark-accessible, #1a1a1a);
}

.service-box h3 {
    color: var(--text-dark-accessible, #1a1a1a) !important;
}

.service-box strong,
.service-content strong {
    color: var(--text-dark-accessible, #1a1a1a) !important;
    font-weight: 700;
}

.service-content,
.service-content p,
.service-content li {
    color: var(--text-gray-accessible, #525252) !important;
}

.service-content ol,
.service-content ul {
    color: var(--text-gray-accessible, #525252) !important;
}

/* ═══════════════════════════════════════════════════════════════
 *  TIP BOX - CAJA DE CONSEJOS
 *  Problema: #856404 sobre #fff3cd tiene poco contraste
 *  Solución: Texto más oscuro
 * ═══════════════════════════════════════════════════════════════ */
.tip-box {
    background: #fff3cd;
    color: var(--tip-text-accessible, #664d03) !important;
}

.tip-box strong {
    color: #3d2e02 !important;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
 *  BOOKING PROCESS - PROCESO DE RESERVA
 *  Asegurar contraste en listas ordenadas
 * ═══════════════════════════════════════════════════════════════ */
.booking-process ol,
.booking-process ol li {
    color: var(--text-gray-accessible, #525252) !important;
}

.booking-process ol li strong {
    color: var(--text-dark-accessible, #1a1a1a) !important;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
 *  SEO SERVICES - SECCIÓN SEO
 *  Mejorar contraste en textos
 * ═══════════════════════════════════════════════════════════════ */
.seo-services strong,
.locations-grid strong,
.benefits-section strong {
    color: var(--text-dark-accessible, #1a1a1a) !important;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
 *  POPULAR SEARCHES - BÚSQUEDAS POPULARES
 *  El fondo oscuro con texto dorado necesita mejor contraste
 * ═══════════════════════════════════════════════════════════════ */
.popular-searches li {
    color: #ffd966 !important; /* Dorado más brillante para mejor contraste sobre negro */
}

.popular-searches li strong {
    color: #ffe599 !important; /* Dorado aún más claro para strong */
}

/* ═══════════════════════════════════════════════════════════════
 *  FOOTER LINKS - ENLACES DEL PIE DE PÁGINA
 *  Accesibilidad para navegación
 * ═══════════════════════════════════════════════════════════════ */
.footer-links,
.footer-info {
    color: var(--text-dark-accessible, #1a1a1a);
}

.footer-links ul li a,
.footer-info p {
    color: var(--text-gray-accessible, #525252);
}

.footer-links ul li a:hover,
.footer-links ul li a:focus {
    color: var(--text-dark-accessible, #1a1a1a);
}

/* Footer headings - styled as h4 but semantically h2 for proper hierarchy */
.footer-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: var(--text-dark-accessible, #1a1a1a) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
 *  FAQ SECTION - PREGUNTAS FRECUENTES
 *  Mejorar contraste en respuestas
 * ═══════════════════════════════════════════════════════════════ */
.faq-answer {
    color: var(--text-gray-accessible, #525252) !important;
}

.faq-answer strong {
    color: var(--text-dark-accessible, #1a1a1a) !important;
}

/* ═══════════════════════════════════════════════════════════════
 *  FOCUS STATES - ESTADOS DE ENFOQUE
 *  Accesibilidad para navegación con teclado
 * ═══════════════════════════════════════════════════════════════ */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.btn:focus,
.filter-tab:focus,
.nav-link:focus {
    outline: 2px solid var(--gold, #d4af37) !important;
    outline-offset: 2px !important;
}

/* ═══════════════════════════════════════════════════════════════
 *  SKIP LINK - ENLACE SALTAR AL CONTENIDO
 *  Accesibilidad para lectores de pantalla
 * ═══════════════════════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold, #d4af37);
    color: #1a1a1a;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* ═══════════════════════════════════════════════════════════════
 *  REDUCED MOTION - MOVIMIENTO REDUCIDO
 *  Respetar preferencias del usuario
 * ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
 *  HIGH CONTRAST MODE - MODO DE ALTO CONTRASTE
 *  Soporte para usuarios con preferencias de alto contraste
 * ═══════════════════════════════════════════════════════════════ */
@media (prefers-contrast: high) {
    .card-title {
        color: #000000 !important;
    }
    
    .card-body,
    .service-box,
    .tip-box {
        border: 2px solid #000000;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ═══════════════════════════════════════════════════════════════
 *  VISUALLY HIDDEN - OCULTO VISUALMENTE
 *  Clase para contenido solo para lectores de pantalla
 * ═══════════════════════════════════════════════════════════════ */
.visually-hidden,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

