/* ==========================================
   MYM RELOJES - HOJA DE ESTILOS PREMIUM
   ========================================== */

/* IMPORTACIÓN DE VARIABLES DE DISEÑO (Onyx & Gold) */
:root {
    --bg-primary: #070708;
    --bg-secondary: #0F0F12;
    --bg-card: #15151A;
    --bg-navbar: rgba(7, 7, 8, 0.85);
    
    --accent-gold: #D4AF37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-hover: #F3CF65;
    --accent-bronze: #C5A028;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0AA;
    --text-muted: #6B6B76;
    
    --border-luxury: rgba(212, 175, 55, 0.15);
    --border-light: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* REGLAS GLOBALES Y RESETEO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* SCROLLBAR PERSONALIZADA (Webkit) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* ESTILOS DE ENLACES Y BOTONES */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-fast);
}

/* ==========================================
   COMPONENTES DE DISEÑO COMUNES
   ========================================== */

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

/* Encabezados de Sección */
.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border: none;
    margin: 20px 0 35px 0;
}

.title-divider-center {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border: none;
    margin: 20px auto 35px auto;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-description {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 300;
}

/* Botones Premium */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    transition: var(--transition-smooth);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================
   BARRA DE NAVEGACIÓN (NAVBAR)
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Estado de Navbar al hacer Scroll */
.navbar.scrolled {
    height: 75px;
    background: var(--bg-navbar);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    height: 55px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-img {
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: brightness(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

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

.nav-link.active {
    color: var(--accent-gold);
}

/* Botón Móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================
   SECCIÓN INICIO (HERO)
   ========================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1b1b22 0%, var(--bg-primary) 70%);
    padding: 100px 24px 60px 24px;
    text-align: center;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(7, 7, 8, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 35px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-luxury);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.1);
    background-color: #000;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Indicador de Deslizamiento (Mouse Scroll) */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-down-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.mouse-icon {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* ==========================================
   SECCIÓN NOSOTROS
   ========================================== */

.nosotros-section {
    background-color: var(--bg-secondary);
    position: relative;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.paragraph-history {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-weight: 300;
}

.paragraph-history strong {
    color: var(--text-primary);
    font-weight: 500;
}

.paragraph-history.highlight {
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 16px;
}

/* Contenedor de Atributos/Badges */
.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.badge-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 10px 18px;
    gap: 10px;
}

.badge-icon {
    color: var(--accent-gold);
    font-weight: bold;
}

.badge-text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Columna Visual de Nosotros */
.nosotros-visual-container {
    display: flex;
    justify-content: center;
}

.glass-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-luxury);
    padding: 15px;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.nosotros-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.05);
}

.frame-label {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border-luxury);
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.label-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-gold);
}

.label-desc {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ==========================================
   SECCIÓN RELOJES
   ========================================== */

.relojes-section {
    background-color: var(--bg-primary);
}

/* Controles de Filtros */
.filter-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    background: transparent;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.filter-btn.active {
    color: var(--bg-primary);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Cuadrícula del Catálogo */
.relojes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* Ficha de Reloj */
.watch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.watch-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-luxury);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.05);
}

/* Etiquetas flotantes */
.watch-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
}

.tag-stock {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.tag-order {
    background: #222;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.tag-exclusive {
    background: #8A1C14;
    color: var(--text-primary);
}

/* Contenedor de Imagen de Reloj */
.watch-img-container {
    width: 100%;
    height: 320px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.watch-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.watch-card:hover .watch-card-img {
    transform: scale(1.08);
}

/* Información del Reloj */
.watch-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.watch-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.watch-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 12px;
}

.watch-desc {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Fila de Compra/Consulta */
.watch-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.watch-price {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
}

.watch-inquire-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    transition: var(--transition-fast);
}

.watch-inquire-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Animaciones del filtrado */
.watch-card.hide {
    display: none;
}

.watch-card.show {
    animation: fade-in-grid 0.5s ease forwards;
}

@keyframes fade-in-grid {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SECCIÓN CONTACTO Y FOOTER
   ========================================== */

.contacto-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding-top: 100px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Columna de Marca */
.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 75px;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
    background: #000;
}

.footer-brand-slogan {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1.3;
    margin-bottom: 18px;
}

.footer-brand-location {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 300;
}

/* Listas y Formularios de Footer */
.footer-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-divider {
    width: 35px;
    height: 1.5px;
    background: var(--accent-gold);
    border: none;
    margin-bottom: 25px;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
}

.contact-icon {
    color: var(--accent-gold);
    font-size: 16px;
}

.contact-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.social-invitation {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Íconos de Redes Sociales */
.social-icons-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

/* Hover de Redes Sociales con Colores Corporativos */
.social-icon-btn.whatsapp:hover {
    background: #25D366;
    color: #000;
    border-color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-4px);
}

.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #FFF;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
    transform: translateY(-4px);
}

.social-icon-btn.facebook:hover {
    background: #1877F2;
    color: #FFF;
    border-color: #1877F2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-4px);
}

.social-icon-btn.youtube:hover {
    background: #FF0000;
    color: #FFF;
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transform: translateY(-4px);
}

.social-icon-btn.tiktok:hover {
    background: #010101;
    color: #FFF;
    border-color: #EE1D52;
    box-shadow: 0 0 15px rgba(238, 29, 82, 0.5);
    transform: translateY(-4px);
    text-shadow: -1px -1px 0 #00f2fe, 1px 1px 0 #fe0979;
}

/* Footer Bottom */
.footer-divider-full {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin-bottom: 25px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================== */

.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 8px;
    padding: 3px 6px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   ANIMACIONES DE CARGA
   ========================================== */

.fade-in {
    animation: fade-in-keyframes 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fade-in-keyframes 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fade-in-keyframes 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fade-in-keyframes 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

@keyframes fade-in-keyframes {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVIDAD Y DISEÑO MÓVIL
   ========================================== */

@media (max-width: 1024px) {
    .grid-two-columns {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nosotros-visual-container {
        order: -1; /* Muestra la imagen arriba en tablets */
    }
    
    .nosotros-img {
        height: 380px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-column {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 75px;
    }
    
    .navbar-container {
        padding: 0 16px;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    /* Menú Desplegable en Móviles */
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 998;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 16px;
        letter-spacing: 3px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Transformación del menú hamburguesa */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Secciones */
    .section-container {
        padding: 60px 16px;
    }
    
    .hero-slogan {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .relojes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-brand-column {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .btn-primary {
        display: block;
    }
}

/* ==========================================
   ESTILOS DE MEJORA DE CALIDAD (SPOTLIGHT) PARA RELOJES CON FONDO BLANCO
   ========================================== */
.watch-img-container.light-spotlight {
    background: radial-gradient(circle, #FFFFFF 0%, #E2E2E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.watch-img-container.light-spotlight img {
    height: 90% !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15)) contrast(1.04) brightness(1.01);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.watch-card:hover .watch-img-container.light-spotlight img {
    transform: scale(1.08) translateY(-5px);
}
