html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: auto;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE y Edge */
}
html, body {
    overflow-x: hidden !important;
    overflow-y: scroll !important;       
}

.hidden-content {
    display: none;
    overflow: hidden;
}
/* Ocultar scrollbar para Chrome, Safari y Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Para elementos que necesiten scroll interno */
.scroll-container {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

html::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .hidden-content {
        display: block;
    }
}

/*---------------------------------------------
MULTIMEDIA
---------------------------------------------*/
.lazy {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
  
.lazy-loaded {
    opacity: 1;
}
  
.lazy-background {
    background-color: #eee;
    transition: background-image 0.5s ease-in-out;
}
  
.lazy-background-loaded {
    background-size: cover;
    background-position: center;
}

/*---------------------------------------------
COLORES BASE
---------------------------------------------*/
:root {
    --primary: #35E3FA;
    --hover: #2bbccf;
    --secundary: #802654;
    --dark: #151515;
}



#hero-banner {
    height: 100vh; /* Full viewport */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

#hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark */
    z-index: -1;
}


.typewrite{
    height: 100px;
    overflow: hidden;
    margin-top: -100px;
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700 !important;
    letter-spacing: 3px;
    transition: font-size 0.5s ease, opacity 0.5s ease;
}

.rotating-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.rotating-image img {
    width: 350px;
    height: auto;
    animation: rotate360 10s linear infinite !important;
}


/*---------------------------------------------
HEAD - INDEX
---------------------------------------------*/
.section-head {
    position: relative;
    text-align: center;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor del título */
.section-head h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 4px;
    transform: rotate(-2deg) translateY(1.2rem);
    opacity: 0;
    animation: 
        slideTitle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        gradientMove 8s linear infinite;
    background: linear-gradient(
        270deg,
        #35b5ff,
        #96caff,
        #3498DB,
        #acdaf8,
        #17a5f7
    );
    background-size: 300% 100%;
    box-shadow: 0 4px 15px rgba(0, 130, 206, 0.2);
    z-index: 2;
}

/* Título principal con efecto */
.section-head span {
    font-size: 5rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    text-stroke: 2px var(--primary);
    position: relative;
    margin: 0;
    padding: 0;
    letter-spacing: -2px;
    opacity: 0;
    transform-origin: center;
    animation: revealMain 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

/* Efecto de sombra para el span */
.section-head span::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--primary);
    opacity: 0;
    transform: translateY(10%);
    animation: shadowText 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Separador con efecto */
.section-head .separator-image {
    width: 100%;
    height: auto;
    margin: 0.5rem 0;
    opacity: 0;
    filter: brightness(1.2) contrast(1.2);
    transform-origin: center;
    animation: rotateSeparator 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
}

/* Descripción con estilo */
.section-head p {
    max-width: 500px;
    margin: 1rem auto 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark);
    opacity: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.7s;
    position: relative;
}

/* Efectos hover */
.section-head:hover span {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.section-head:hover .separator-image {
    transform: rotate(180deg);
    transition: transform 0.6s ease;
}

/* Animaciones */
@keyframes slideTitle {
    0% {
        opacity: 0;
        transform: rotate(-2deg) translateY(2rem);
    }
    100% {
        opacity: 1;
        transform: rotate(-2deg) translateY(1.2rem);
    }
}

@keyframes revealMain {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shadowText {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateSeparator {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-head span {
        font-size: 3.5rem;
        -webkit-text-stroke: 1.5px var(--primary);
    }

    .section-head .separator-image {
        width: 100%;
    }

    .section-head h4 {
        font-size: 0.75rem;
        padding: 0.1rem;
    }

    .section-head p {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        margin-top: 0.2rem;
    }
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .section-head h4,
    .section-head span,
    .section-head .separator-image,
    .section-head p {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }

    .section-head h4 {
        transform: rotate(-2deg) translateY(1.2rem);
    }
}

/*---------------------------------------------
HEAD - MENU
---------------------------------------------*/
/* Contenedor principal */
.section-heading {
    text-align: center;
    padding: 1.8rem 0;
    position: relative;
}

/* Contenedor del logo */
.logo-container {
    width: 100%;
    max-width: 400px; /* Ajusta según el tamaño de tu logo */
    margin: 0 auto;
    position: relative;
    animation: fadeIn 0.8s ease forwards;
}

/* Imagen del logo */
.header-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Efecto hover en el logo */
.logo-container:hover .header-logo {
    transform: scale(1.02);
}


/* Línea decorativa en hover */
.section-heading:hover .heading-line {
    width: 100px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary),
        transparent
    );
    transition: all 0.3s ease;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-container {
        max-width: 260px; /* Tamaño más pequeño para móviles */
    }

    .heading-line {
        margin-top: 1rem;
    }
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .logo-container,
    .header-logo,
    .heading-line {
        animation: none;
        transition: none;
        transform: none;
    }
}


/*---------------------------------------------
CARTELERA
---------------------------------------------*/
.week {
    display: flex;
    overflow-x: scroll;
    padding: 24px;
    width: 90%;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    border-radius: 8px;
    gap: 24px;
    margin: 2rem auto;
}

.week .item {
    background-size: cover;
    background-position: center;
    flex: 0 0 80%;
    height: 500px;
    padding: 24px;
    border-radius: 15px;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

.week .item-header span {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.6rem !important;
    font-weight: 900; /* Aumentado el weight para más impacto */
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    transform-style: preserve-3d;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.2);
        transform: scale(1.03);
    }
}

.week .item .date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.week .item p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: white;
}

.week .item button {
    padding: 10px 20px;
    border-radius: 15px;
    border: none;
    background-color: white;
    color: #333; 
    font-weight: bold;
    align-self: flex-start;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.week .item button:hover {
    background-color: #ddd; 
}

.week .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1;
}

.week .item span, .week .item .date, .week .item p, .week .item button {
    position: relative;
    z-index: 2; 
}

/* Estilos para las fechas */
.item .item-header p {
    margin: 0;
    font-size: 1.1rem;
    color: #dadada;
    text-transform: capitalize;
}

/* Estilo para el día actual */
.item.current-day {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 130, 206, 0.1);
}

.item.current-day .item-header {
    background-color: var(--primary);
    color: white;
}

.item.current-day .item-header p {
    color: white;
}

/* Animación suave para el hover */
.item {
    transition: all 0.3s ease;
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.date-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px; /* Asegurar altura consistente */
}

.today-item {
    position: relative;
    overflow: hidden;
}

/* Efecto de borde animado */
.today-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        #38bdf8,
        var(--primary)
    );
    background-size: 200% 100%;
    border-radius: 15px;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: movingGradient 3s linear infinite;
    z-index: 1;
}

/* Brillo adicional */
.today-item::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-15deg);
    animation: borderShine 3s infinite;
    z-index: 1;
}

/* Animaciones */
@keyframes movingGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes borderShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

/* Asegurar que el contenido esté por encima de las animaciones */
.today-item .item-header,
.today-item .item-footer {
    position: relative;
    z-index: 2;
}

/* Responsive y preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
    .today-item::before,
    .today-item::after {
        animation: none;
    }
    
    .today-item::before {
        background: var(--primary);
    }
}
/*---------------------------------------------
CARTA OPCIONES
---------------------------------------------*/
.button-div {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.button-div a {
    position: absolute;
    text-decoration: none;
    letter-spacing: 4px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.button-div a h2 {
    font-weight: 700;
    font-size: 2rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0.9;
    margin: 0;
    text-align: center;
    width: 100%;
    position: relative;
}

.button-div a::before {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.button-div:hover::before {
    transform: scale(1.1);
}

.button-div:hover::after {
    opacity: 1;
}

.button-div:hover a h2 {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.button-div:hover a::before {
    width: 80px;
    opacity: 1;
}

@media (max-width: 768px) {
    .button-div {
        height: 220px;
    }

    .button-div a h2 {
        font-size: 1.8rem;
    }
}

.row {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*---------------------------------------------
CONTACTO
---------------------------------------------*/
.btn-form {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 10px;
    border-color: transparent;
    font-size: 20px;
    text-align: center;
    align-content: center;
    font-weight: 500 !important;
    width: 100%;
    height: 40px;
    transition: all .5s;
}
.btn-form:hover {
    background-color: var(--hover);
    border-color: transparent;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-label {
    color: #333;
    font-weight: 500;
}

input.form-control, textarea.form-control, select.form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
    transition: border-color 0.3s;
}

input.form-control:focus, textarea.form-control:focus, select.form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

button[type="submit"] {
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

button[type="submit"]:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}
/* Contenedor principal de estado */
#formStatus {
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

#formStatus.show {
    opacity: 1;
    transform: translateY(0);
}

/* Alertas personalizadas */
#formStatus .alert {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Alerta de carga */
#formStatus .alert-info {
    background: rgba(0, 130, 206, 0.1);
    color: #0082CE;
    border-left: 4px solid #0082CE;
}

/* Alerta de éxito */
#formStatus .alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
    animation: slideIn 0.3s ease forwards;
}

/* Alerta de error */
#formStatus .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
    animation: shake 0.5s ease forwards;
}

/* Spinner personalizado */
.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.2em;
    vertical-align: middle;
}

.alert-info .spinner-border {
    border-right-color: transparent;
    border-color: #0082CE;
}

/* Iconos en las alertas */
#formStatus .bi {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Animaciones */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Estados de hover */
#formStatus .alert:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    #formStatus .alert {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    #formStatus .bi {
        font-size: 1rem;
    }

    .spinner-border {
        width: 1rem;
        height: 1rem;
    }
}

/* Animación de desvanecimiento */
.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/*---------------------------------------------
NAVBAR / BOTON BUSCAR
---------------------------------------------*/

/* Navbar principal */
.navbar {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centra verticalmente todos los elementos */
    padding: 0 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(52, 58, 64, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Botón de hamburguesa */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    height: 42px; /* Altura fija */
    width: 42px; /* Ancho fijo */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.navbar-toggler-icon {
    transition: all 0.3s ease;
}

.search-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
    height: 42px;
    margin: 0 auto;
    margin-left: 20px;
    transform-origin: center right;
    animation: searchAppear 0.5s ease forwards;
}

#search-input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#search-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 130, 206, 0.15);
    transform: translateY(-1px);
}

#search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #343a40;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-button:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    background: rgba(0, 130, 206, 0.1);
}

.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #343a40;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    align-items: center;
}

.menu-modal.active .modal-content {
    left: 0;
}

.modal-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

/* Lista de opciones del menú */
.menu-options {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-options li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.menu-modal.active .menu-options li {
    opacity: 1;
    transform: translateX(0);
    animation: menuItemEnter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Enlaces del menú */
.menu-options li a {
    display: block;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.8rem; /* Tamaño aumentado */
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-options li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu-options li a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.menu-options li a:hover::before {
    width: 50px;
}

/* Animaciones */
@keyframes searchAppear {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuItemEnter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .navbar {
        height: 60px;
        padding: 0 15px;
    }

    .navbar-toggler {
        height: 38px;
        width: 38px;
    }

    .search-container {
        height: 38px;
        margin-left: 15px;
        max-width: calc(100% - 60px);
    }

    #search-input {
        font-size: 0.95rem;
    }

    #search-button {
        height: 32px;
        width: 32px;
    }

    .modal-content {
        width: 280px;
    }

    .menu-options li a {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-toggler,
    #search-input,
    #search-button,
    .menu-modal,
    .modal-content,
    .menu-options li,
    .menu-options li a {
        transition: none;
        animation: none;
    }
}

/*==================================
Dock
====================================*/
:root {
    /* Colores */
    --dock-primary: #0082CE;
    --dock-primary-dark: #006ba9;
    --dock-primary-light: #38bdf8;
    --dock-text: #334155;
    --dock-text-light: #64748b;
    --dock-border: #e2e8f0;
    
    /* Espaciado y tamaños */
    --dock-padding-x: 20px;
    --dock-padding-y: 10px;
    --dock-gap: 10px;
    --dock-border-radius: 8px;
    --dock-border-width: 1px;
    
    /* Tipografia */
    --dock-font-size: 0.9rem;
    --dock-font-weight: 500;
    
    /* Navegacion */
    --dock-nav-size: 36px;
}

.category-dock-wrapper {
    position: relative;
    margin: 5px 0;
    padding: 0 calc(var(--dock-nav-size) + 10px);
    background: transparent;
}

.category-dock {
    display: flex;
    overflow-x: auto;
    gap: var(--dock-gap);
    padding: var(--dock-padding-y) 0;
    scroll-behavior: smooth;
    position: relative;
    border-bottom: var(--dock-border-width) solid var(--dock-border);
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.category-dock::-webkit-scrollbar {
    display: none;
}

.category-item {
    position: relative;
    font-size: var(--dock-font-size);
    font-weight: var(--dock-font-weight);
    color: var(--dock-text);
    background: white;
    padding: var(--dock-padding-y) var(--dock-padding-x);
    border-radius: var(--dock-border-radius);
    border: var(--dock-border-width) solid var(--dock-border);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    z-index: 1;
    font-weight: 600;
}

/* Estado hover general */
.category-item:hover {
    color: var(--dock-primary);
    border-color: var(--dock-primary);
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 130, 206, 0.1);
}

/* Estado activo con gradiente épico */
.category-item.active {
    color: white;
    background: linear-gradient(
        270deg,
        #0082CE,
        #38bdf8,
        #3b82f6,
        #2563eb,
        #0082CE
    );
    background-size: 300% 100%;
    border: none;
    font-weight: 600;
    transform: translateY(0);
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
    padding: calc(var(--dock-padding-y) + var(--dock-border-width)) 
            calc(var(--dock-padding-x) + var(--dock-border-width));
}

.category-item.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerActive 3s linear infinite;
}

/* Hover del item activo */
.category-item.active:hover {
    transform: translateY(-1px);
    animation: gradientShift 4s ease infinite;
}

/* Efecto de promociones */
.promotion-effect {
    color: white !important;
    color: var(--dock-text);
    background: rgba(240, 88, 88, 0.63);
    position: relative;
    padding-right: calc(var(--dock-padding-x) + 8px); /* Espacio extra para el emoji */
}

.promotion-effect.active {
    background: linear-gradient(
        115deg,
        transparent,
        #ff6b6b,
        #ffd93d,
        transparent
    ) !important;
    background-size: 300% 100%;
    animation: promoBorder 3s linear infinite;
}

.promotion-effect:hover {
    color: var(--dock-text);
    border-color: var(--dock-border);
    background: #ffdd1b;
}

.promotion-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        115deg,
        transparent,
        #ff6b6b,
        #ffd93d,
        transparent
    );
    background-size: 300% 100%;
    animation: promoBorder 3s linear infinite;
    z-index: -1;
    opacity: 0.5;
    border-radius: var(--dock-border-radius);
}

.promotion-effect::after {
    content: '🔥';
    position: absolute;
    top: -8px; /* Ajustado para que sobresalga más */
    right: -6px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 2px rgba(255, 107, 107, 0.5));
    animation: promoEmoji 2s infinite;
    z-index: 10; /* Aumentado para asegurar que esté por encima */
    pointer-events: none; /* Evita interferencias con el hover */
}

/* Botones de navegación */
.dock-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--dock-nav-size);
    height: var(--dock-nav-size);
    border-radius: 50%;
    background: white;
    border: var(--dock-border-width) solid var(--dock-border);
    color: var(--dock-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.dock-nav-button:hover {
    color: var(--dock-primary);
    border-color: var(--dock-primary);
    background: #f8fafc;
}

.dock-nav-button.prev { left: 0; }
.dock-nav-button.next { right: 0; }

.dock-nav-button svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Animaciones */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmerActive {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes promoBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes promoEmoji {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 2px rgba(255, 107, 107, 0.5));
    }
    25% {
        transform: scale(1.1) rotate(-15deg);
        filter: drop-shadow(0 0 4px rgba(255, 107, 107, 0.7));
    }
    50% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 2px rgba(255, 107, 107, 0.5));
    }
    75% {
        transform: scale(1.1) rotate(15deg);
        filter: drop-shadow(0 0 4px rgba(255, 107, 107, 0.7));
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(5px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicar animación de entrada */
.category-item {
    animation: fadeIn 0.3s ease-out backwards;
}

/* Delays secuenciales */
.category-dock .category-item:nth-child(1) { animation-delay: 0.05s; }
.category-dock .category-item:nth-child(2) { animation-delay: 0.1s; }
.category-dock .category-item:nth-child(3) { animation-delay: 0.15s; }
.category-dock .category-item:nth-child(4) { animation-delay: 0.2s; }
.category-dock .category-item:nth-child(5) { animation-delay: 0.25s; }

/* Responsive */
@media (max-width: 768px) {
    :root {
        --dock-padding-x: 16px;
        --dock-padding-y: 8px;
        --dock-font-size: 0.85rem;
        --dock-nav-size: 32px;
        --dock-gap: 8px;
    }

    .category-dock-wrapper {
        padding: 0 5px;
    }

    .category-dock {
        gap: var(--dock-gap);
    }

    .category-item {
        min-width: calc((100% - var(--dock-gap) * 2) / 3);
        justify-content: center;
        text-align: center;
        padding: var(--dock-padding-y) var(--dock-padding-x);
    }
}

/* Optimizaciones de rendimiento */
.category-item {
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .category-item,
    .category-item.active,
    .promotion-effect::after,
    .promotion-effect::before {
        animation: none;
        transition: none;
    }
    
    .category-dock {
        scroll-behavior: auto;
    }

    .category-item.active {
        background: var(--dock-primary);
    }
}

/* Optimizaciones para Safari */
@supports (-webkit-appearance:none) {
    .category-item.active,
    .promotion-effect::before {
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
    }
}


/*==================================
Titulo
====================================*/
.category-title-wrapper {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
    overflow: hidden;
    padding-bottom: 10px;
}

/* Estilo base del título */
.category-title {
    display: inline-block;
    font-family: "Caveat", cursive;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2d3436;
    margin: 0;
    padding: 0.5rem 1.5rem;
    position: relative;
    background: linear-gradient(45deg, #2d3436 30%, #000000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
}

/* Decoración del título */
.category-title::before,
.category-title::after {
    content: '🍣';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    animation: decorationFade 3s ease-in-out infinite;
}

.category-title::before {
    left: -2rem;
    animation-delay: 0.2s;
}

.category-title::after {
    right: -2rem;
    animation-delay: 0.2s;
}

/* Líneas decorativas laterales */
.category-title-wrapper::before,
.category-title-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(45, 52, 54, 0.15) 50%,
        transparent 100%
    );
}

.category-title-wrapper::before {
    left: 0;
    transform-origin: left;
    animation: lineExpandLeft 0.8s ease-out forwards;
}

.category-title-wrapper::after {
    right: 0;
    transform-origin: right;
    animation: lineExpandRight 0.8s ease-out forwards;
}

/* Nuevo subrayado decorativo */
.category-title-wrapper .title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #2d3436 50%,
        transparent
    );
    animation: underlineWidth 0.8s ease forwards;
    overflow: hidden;
}

.category-title-wrapper .title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: underlineShimmer 3s infinite;
}

/* Animaciones */
@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes decorationFade {
    0%, 100% {
        opacity: 0;
        transform: translate(0, -50%);
    }
    50% {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes lineExpandLeft {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes lineExpandRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes underlineWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

@keyframes underlineShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Animación de entrada */
@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicar animación de entrada */
.category-title {
    animation: titleReveal 0.8s ease-out forwards;
}

/* Media queries */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
        padding: 0.3rem 1rem;
    }
    
    .category-title::before,
    .category-title::after {
        font-size: 1.2rem;
    }
    
    .category-title-wrapper::before,
    .category-title-wrapper::after {
        width: 20%;
    }

    .category-title-wrapper .title-underline {
        width: 80px;
    }
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .category-title,
    .category-title::before,
    .category-title::after,
    .category-title-wrapper .title-underline::after {
        animation: none;
    }
    
    .category-title-wrapper::before,
    .category-title-wrapper::after {
        animation: none;
        transform: scaleX(1);
    }
}

.category-subtitle {
    display: block;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
    padding: 0.2rem 1rem;
    position: relative;
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .category-subtitle {
        font-size: 0.8rem;
    }
    
    .category-subtitle::before,
    .category-subtitle::after {
        width: 20px;
    }
    
    .category-subtitle::before {
        right: calc(50% + 60px);
    }
    
    .category-subtitle::after {
        left: calc(50% + 60px);
    }
}

/*==================================
Lista de Productos
====================================*/
.product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* Tarjeta de producto */
.product-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 130, 206, 0.1);
    box-shadow: 0 10px 30px rgba(0, 130, 206, 0.05);
}

/* Cuerpo de la tarjeta */
.card-body {
    position: relative;
    z-index: 1;
}

/* Encabezado del producto */
.product-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

/* Contenedor del título y etiquetas */
.title-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

/* Título del producto */
.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

/* Contenedor de etiquetas */
.tag-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Etiquetas */
.product-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    color: white;
    animation: tagSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

.product-tag.new {
    background: linear-gradient(
        270deg,
        #0082CE,
        #38bdf8,
        #3b82f6,
        #2563eb,
        #0082CE
    );
    background-size: 300% 100%;
    border: none;
    transform: translateY(0);
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}
.product-tag.trend {
    background: linear-gradient(
        270deg,
        #ff08ad,
        #ff97dc,
        #fd53c4,
        #ff1fb4,
        #ffa2e0
    );
    background-size: 300% 100%;
    border: none;
    transform: translateY(0);
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.product-tag.offer {
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
}

/* Efecto de brillo en las etiquetas */
.product-tag::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg) translateX(-100%);
    animation: tagShine 3s infinite;
}

/* Contenedor del precio */
.price-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 0.2rem;
}

/* Precio base */
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    padding: 0.3rem 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Efecto de subrayado animado */
.product-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        270deg,
        #0082CE,
        #38bdf8,
        #3b82f6,
        #2563eb,
        #0082CE
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación del precio al hover */
.product-card:hover .product-price {
    transform: translateY(-2px);
}

.product-card:hover .product-price::after {
    transform: scaleX(1);
    transform-origin: left;
}

.separator {
    border: none;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.08),
        transparent
    );
    margin: 1rem 0;
    position: relative;
}

.product-description {
    text-transform:lowercase;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 130, 206, 0.1);
}


/* Animaciones */
@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tagSlide {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes tagShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    20%, 100% {
        transform: rotate(45deg) translateX(100%);
    }
}



/* Responsive */
@media (max-width: 768px) {
    .product-card {
        padding: 1.3rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.1rem;
        padding: 0.25rem 0.6rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-price,
    .product-tag,
    .price-container::before {
        animation: none;
        transition: none;
    }

    .product-card:hover {
        transform: none;
    }
}


/*==================================
Modal
====================================*/
.menu-modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: opacity 0.3s ease;
}

.menu-modal.active {
    display: flex; /* Muestra el modal cuando tiene la clase 'active' */
}

.modal-content {
    color: white;
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.menu-options {
    list-style: none;
    padding: 0;
}

.menu-options li {
    margin: 10px 0;
}

.menu-options a {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.menu-options a:hover {
    color: var(--primary);
}
/*---------------------------------------------
FOOTER
---------------------------------------------*/
/* Footer Minimalista */
.footer {
    background-color: #ffffff;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

/* Logo */
.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Contenido */
.footer-content {
    flex-grow: 1;
}

.footer-description {
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.footer-tagline {
    display: block;
    color: #666666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Línea separadora */
.footer-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 20px auto;
    max-width: 1200px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 0 20px;
}

.footer-copyright p {
    color: #999999;
    font-size: 0.85rem;
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }
}

/* Estilos para la sección Reina */
.reina-container {
    padding-top: 20px;
    text-align: center;
    background-color: #ffffff; /* Fondo opcional para resaltar la sección */
  }
  
  .reina-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  /* Banner de la Reina */
  .reina-banner {
    width: 100%;
    height: 20vh; /* 20% de la altura del viewport */
    object-fit: cover; /* La imagen cubrirá el área sin perder proporción */
    border-radius: 4px;
    transition: transform 0.3s ease;
  }
  
  .reina-banner:hover {
    transform: scale(1.02);
  }