/* ========================================
   RESET Y VARIABLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== CHAT FLOTANTE ===== */
.chat-float {
    fill: white;
    width: 50px;
    height: 50px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    box-shadow: 2px 2px 11px rgba(0,0,0,0.7);
    position: fixed;
    bottom: 20px;
    right : 20px;
    z-index: 10;
}

.chat-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px #4dc247;
}

.chat-icon {
    animation: pulse 2s infinite;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #ffc107;
    --text-dark: #333;
    --text-light: #fff;
    --transition-speed: 0.4s;
    --header-height: 80px;
    /* Colores personalizables para el header transparente */
    --header-icon-color: #fff;
    --header-logo-filter: brightness(0) invert(1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #000;
}
/* ========================================
   HEADER - TRANSPARENTE CON ANIMACIÓN /INICIO HEADER/
   ======================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-speed) ease;
}

/* Header cuando se hace scroll */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

#main-header.scrolled .header-top {
    padding: 10px 30px;
}

/* El logo NO cambia de color al hacer scroll 
#main-header.scrolled .logo-single {
     Mantiene su color original 
}
*/
#main-header.scrolled .btn-img img,
#main-header.scrolled .icon-link img {
    filter: brightness(0);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    transition: all var(--transition-speed) ease;
    position: relative; /* para forzar centro del logo */
}

/* Botón menú */
.btn-img {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.btn-img:hover {
    transform: scale(1.1);
}

.btn-img img {
    width: 30px;
    height: 30px;
    filter: var(--header-icon-color);
    transition: filter var(--transition-speed) ease;
}

/* Logo */
.logo {
    /* Centrado absoluto para asegurar que no se mueva */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Asegurar que esté sobre otros elementos */
}

.logo-single {
    height: auto;
    width: 105px;         /* <--  */
    object-fit: contain;  /* <-- */
    transition: all var(--transition-speed) ease;
    display: block;
}

/* Añadimos una clase temporal para el efecto de parpadeo suave al cambiar */
.logo-fade {
    opacity: 0;
    transform: scale(0.95);
}

/* Iconos derecha */
.right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.1);
}

.icon-link img {
    width: 28px;
    height: 28px;
    filter: var(--header-icon-color);
    transition: filter var(--transition-speed) ease;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* ========================================
   OVERLAY MENÚ HAMBURGUESA (DROP STYLE)
======================================== */

.overlay-coleccion {
    position: fixed;
    inset: 0;

    z-index: 200000; /* 🔥 antes 99999 */

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);

    visibility: hidden;
    transform: translateY(-100%);
    transition: transform .7s cubic-bezier(.77,0,.18,1),
                visibility 0s linear .7s;
}

#main-header {
    z-index: 1000;
    isolation: isolate; /* 🔥 clave */
}



.overlay-coleccion.active {
    visibility: visible;
    transform: translateY(0);
    transition: transform .7s cubic-bezier(.77,0,.18,1);
}

.overlay-coleccion {
    overflow-y: auto;
    overscroll-behavior: contain;
}


/* ========================================
   CONTENIDO OVERLAY
======================================== */

.overlay-contenido {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(-30px);
    transition: opacity .5s ease .3s,
                transform .5s ease .3s;
}
/* 🔥 CUANDO EL OVERLAY ESTÁ ABIERTO */
body.overlay-open #main-header {
    pointer-events: none;
}

.overlay-coleccion {
    pointer-events: auto;
}


.overlay-coleccion.active .overlay-contenido {
    opacity: 1;
    transform: translateY(0);
}


@keyframes overlayFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BOTÓN CERRAR
======================================== */

.cerrar-overlay {
    position: absolute;
    top: 20px;
    right: 30px;

    background: none;
    border: none;
    color: var(--text-light);
    font-size: 50px;
    cursor: pointer;
    line-height: 1;

    transition: transform .3s ease;
}

.cerrar-overlay:hover {
    transform: rotate(90deg);
}

/* ========================================
   TÍTULO
======================================== */

.titulo-overlay {
    color: var(--text-light);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* ========================================
   GRID CATEGORÍAS
======================================== */

.grid-coleccion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ========================================
   CARDS PROFESIONALES
======================================== */

.grid-coleccion .card {
    text-decoration: none;
    color: var(--text-light);
    cursor: pointer;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.02)
    );
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.12);

    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    opacity: 0;
    transform: translateY(30px);
}

.grid-coleccion .card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.grid-coleccion .card {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease;
}

.overlay-coleccion.active .card {
    opacity: 1;
    transform: translateY(0);
}

.grid-coleccion .card:nth-child(1) { transition-delay: .2s; }
.grid-coleccion .card:nth-child(2) { transition-delay: .3s; }
.grid-coleccion .card:nth-child(3) { transition-delay: .4s; }
.grid-coleccion .card:nth-child(4) { transition-delay: .5s; }


/* estado activo real */
.overlay-coleccion.active .card {
    opacity: 1;
    transform: translateY(0);
}

/* delays limpios */
.overlay-coleccion.active .card:nth-child(1) { transition-delay: .1s; }
.overlay-coleccion.active .card:nth-child(2) { transition-delay: .2s; }
.overlay-coleccion.active .card:nth-child(3) { transition-delay: .3s; }
.overlay-coleccion.active .card:nth-child(4) { transition-delay: .4s; }


/* Delay elegante */
.grid-coleccion .card:nth-child(1) { animation-delay: .1s; }
.grid-coleccion .card:nth-child(2) { animation-delay: .2s; }
.grid-coleccion .card:nth-child(3) { animation-delay: .3s; }
.grid-coleccion .card:nth-child(4) { animation-delay: .4s; }

/* Hover premium */
.grid-coleccion .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* ========================================
   IMAGEN
======================================== */

.grid-coleccion .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    filter: brightness(0.9);
    transition: transform .5s ease, filter .5s ease;
}

.grid-coleccion .card:hover img {
    transform: scale(1.15);
    filter: brightness(1);
}

/* ========================================
   TEXTO
======================================== */

.grid-coleccion .card h3 {
    padding: 20px;
    text-align: center;

    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ========================================
   BOTÓN VER
======================================== */

.btn-ver {
    width: 100%;
    padding: 15px;

    background: linear-gradient(
        135deg,
        var(--accent-color),
        #ffb300
    );
    color: var(--text-dark);

    border: none;
    font-weight: bold;
    cursor: pointer;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-ver:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,179,0,0.35);
}

/*fin header*/

/* ===== RESET Y CONFIGURACIÓN GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ANIMACIONES KEYFRAMES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 150px; }
}

/* ===== HERO TIENDA ===== */
.hero-tienda {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/15.webp') center/cover fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 60px);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-line {
    width: 150px;
    height: 4px;
    background: #ffd700;
    margin: 0 auto;
    animation: lineExpand 1.2s ease-out 0.5s both;
}

/* ===== BARRA DE CATEGORÍAS (ARREGLADA) ===== */
.categorias-wrapper {
    padding: 40px 20px;
    justify-content: center;
    position: relative;
    display: flex;
}

.categorias-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.categorias-btn {
    width: 100%;
    padding: 18px 30px;
    background: rgba(207, 207, 207, 0.342);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.categorias-btn:hover, .categorias-btn.activa {
    background: rgba(231, 231, 231, 0.212);
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.chevron-icon {
    transition: transform 0.4s ease;
}

.categorias-btn.activa .chevron-icon {
    transform: rotate(180deg);
}

.categorias-lista {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background: rgba(236, 233, 233, 0.24);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1001;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    animation: fadeInUp 0.3s ease-out;
}

.categorias-lista.activa {
    display: flex;
}

.cat-item {
    text-align: center;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cat-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateX(10px);
}

/* ===== CUADRÍCULA DE PRODUCTOS (NUEVA LÓGICA) ===== */
.contenedor__productos {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1; /* Menor que las categorías */
}

.producto {
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: scaleIn 0.8s ease-out both;
}

.producto:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* INTERACCIÓN DE IMAGEN (FÓRMULA USUARIO) */
.product-media {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.ue-img-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.ue-img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.ue-img-hover {
    opacity: 0;
}

.producto:hover .ue-img-hover {
    opacity: 1;
}

.producto:hover .ue-img-main {
    opacity: 0;
}

.producto:hover .ue-img-box img {
    transform: scale(1.05);
}

/* OJO (VISTA RÁPIDA) */
.ue-eye {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.ojo_contenedor-producto {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.product-media:hover .ue-eye {
    opacity: 1;
    transform: scale(1);
}

.ue-eye:hover {
    background: #fff;
    transform: scale(1.2);
}

/* INFO PRODUCTO */
.des--producto {
    padding: 30px;
    text-align: center;
}

.item--des {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.precio {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
}

/* SELECTOR DE COLORES EN CARD */
.ue-colors {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.ue-color {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ue-color.active {
    border-color: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.link--producto {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link--producto:hover {
    background: #bbb;
    color: #fff;
    transform: scale(1.05);
}

.ue-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 400000;
}

.ue-modal-backdrop.active {
    display: flex;
}

.ue-modal-shell {
    width: 100%;
    max-width: 1120px;
    position: relative;
    animation: ueModalIn 0.25s ease;
}

@keyframes ueModalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ue-modal-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.ue-modal-left {
    background: #f5f5f5;
    padding: 28px;
}

.ue-modal-main-img {
    width: 100%;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.ue-modal-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ue-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.thumb {
    width: 78px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.75;
    background: #fff;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb.active {
    border-color: #ffc107;
    opacity: 1;
}

.ue-modal-right {
    padding: 36px 32px;
    color: #111;
    background: #fff;
}

.ue-modal-product-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #111;
}

.ue-modal-price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 14px;
}

.ue-modal-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.ue-modal-options {
    display: grid;
    gap: 20px;
}

.ue-option-group {
    display: grid;
    gap: 10px;
}

.ue-option-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.ue-sizes,
.ue-colors-modal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 48px;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
}

.size-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #dddddd;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-swatch.active {
    border-color: #ffc107;
    transform: scale(1.06);
}

.ue-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.ue-qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 1.1rem;
    color: #111;
}

.ue-quantity-selector input {
    width: 58px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 1rem;
    color: #111;
    background: #fff;
}

.ue-modal-cta {
    margin-top: 28px;
}

.ue-cart-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.ue-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #111;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
    .ue-modal-layout {
        grid-template-columns: 1fr;
    }

    .ue-modal-main-img {
        height: 320px;
    }

    .ue-modal-right {
        padding: 28px 22px;
    }
}




/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 60px 20px 30px; /* Reduje un poco el padding superior */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 1.5s both;
}

.footer-container {
    max-width: 1200px; /* Un poco más estrecho para mejor lectura */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: start; /* Mantiene todos los títulos alineados arriba */
}

.footer-column h3 {
    font-size: 1.1rem; /* Títulos más pequeños como pediste */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    color: #ffd700;
    white-space: nowrap; /* Evita que el título se rompa en dos líneas */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px; /* Espaciado limpio sin usar <br> */
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
    padding-left: 5px; /* Efecto sutil en lugar de transform pesado */
}

/* Contenedor del Mapa Responsivo */
.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* Esto mantiene una proporción 4:3 */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.3s ease;
}

.map-wrapper:hover iframe {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contenido-contacto {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .distribuidores {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(48px, 8, 86px);
    }
}

@media (max-width: 768px) {
    .fila {
        grid-template-columns: 1fr;
    }

    .hero-contacto {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 50px);
    }

    .hero-line {
        width: 150px;
    }

    .seccion-contacto {
        padding: 60px 20px;
    }

    .cuadro-info {
        padding: 30px;
    }

    .form-title {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-column iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .item__titulo {
        font-size: 2rem;
    }

    .cuadro-info h2 {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.8rem;
    }
}



@media (max-width: 768px) {
    .contenedor__productos {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    .product-media {
        height: 300px;
    }
    .hero-title {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    #ueModal.contenedor_principal-scroll {
        align-items: flex-start !important; 
        overflow-y: auto !important;        
    }
    .ojo_contenedor-producto {
        display: flex !important;
        flex-direction: column !important;
    }
    .ojo_contenedor-producto {
        margin-top: 60px; 
    }
}


.ue-eye.btn-ver-producto {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.product-media:hover .ue-eye.btn-ver-producto {
    opacity: 1;
    transform: scale(1);
}
