body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
}

img{
    width: 100%;            /* Hace que la imagen ocupe el 100% del contenedor */
    max-width: 400px;       /* Limita el tamaño máximo */
    height: auto;           /* Mantiene la proporción de la imagen */
    border-radius: 8px;     /* Agrega bordes redondeados si lo deseas */  
}

select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background: #e6007e;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #95c11f;
}

.promociones {
    margin-top: 20px;
}

.promo-card {
    background: #95c11f;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
}

.promo-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.link {
    text-align: left;
}

a {
    color: #e6007e;  /* Color del enlace */
    text-decoration: none; /* Quita el subrayado */
    font-size: 16px;
    font-weight: bold;
    align-self: left;
}

a:hover {
    color: #95c11f; /* Cambia el color cuando pasas el mouse */
    text-decoration: underline; /* Subrayado al pasar el mouse */
}


select {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #e6007e;
    border-radius: 8px;
    background-color: white;
    color: #000000;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-align-last: center; 
}

select option:disabled {
    color: #999; /* Gris claro */
}

/* Efecto al pasar el mouse */
select:hover {
    background-color: #95c11f;
    color: white;
}

/* Efecto cuando se selecciona */
select:focus {
    border-color: #95c11f;
    box-shadow: 0 0 5px rgba(130, 250, 83, 0.5);
}

/* Estilo para letras grandes de anuncio */
.Tienda {
    font-size: 80px; /* Tamaño de la fuente grande */
    font-weight: bold; /* Negrita para resaltar */
    text-transform: uppercase; /* Mayúsculas */
    color: #e6007e; /* Color principal vibrante */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Sombra para efecto 3D */
    letter-spacing: 5px; /* Espaciado entre letras */
    display: inline-block;
    padding: 20px 40px;
    border: 8px solid #95c11f; /* Borde llamativo */
    background: radial-gradient(circle, #fff, #fddde6); /* Fondo degradado suave */
    border-radius: 50px; /* Bordes más redondeados para un look amigable */
    position: relative;
    animation: bounce 2s infinite ease-in-out; /* Animación para dar efecto de flotación */
}

/* Simulación de globos en las esquinas */
.Tienda::before,
.Tienda::after {
    content: "🎈";
    font-size: 60px;
    position: absolute;
    top: -40px;
}

.Tienda::before {
    left: -50px;
}

.Tienda::after {
    right: -50px;
}

/* Animación de rebote para dar dinamismo */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.mensaje-error {
    color: red; /* Color rojo para el error */
    font-weight: bold;
    margin-top: 10px;
    display: none; /* Oculto por defecto */
}

nav {
    background-color: #e6007e; /* Color principal */
    padding: 10px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    position: relative;
}

/* Primer nivel */
nav > ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav > ul > li {
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    background-color: #95c11f; /* Color de hover */
}

/* Submenús */
ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #95c11f; /* Color de fondo submenús */
    padding: 0;
    min-width: 200px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

ul ul li {
    width: 100%;
}

ul ul a {
    padding: 10px;
    font-size: 14px;
}

ul ul ul {
    left: 100%;
    top: 0;
}

/* Mostrar submenús en hover */
li:hover > ul {
    display: block;
}