/*Espacio para separa banner, ...*/

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    padding: 100px;
    background-color: white;
}

img {
    max-width: 100%;
    height: auto;
}

/*🪐🪐*/

/*📰 Las configuraciones del banner 📰*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background-color: white;
    padding: 10px 20px; /* Un poco de relleno a los lados */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;

    background-image: url(Imagen/imagen_banner.png);
    background-size: cover;
    background-position: center;

    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.marca {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marca_img { height: 40px; }

/*📰📰*/

/*➡️🟦 Boton desplegable 🟦⬅️*/

header nav {
    position: relative;
    display: flex;
    align-items: center;
}

/* Botón hamburguesa estilo neon morado */
header nav button {
    background-color: #6500ca;
    border: 2px solid #8b3ddb;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(101, 0, 202, 0.5);
}

header nav button:hover {
    background-color: #8b3ddb;
    color: white;
    box-shadow: 0 0 20px #8b3ddb;
    transform: scale(1.05);
}

header nav button:active {
    transform: scale(0.95);
}

#menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    width: 200px;

    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10001;
}

#menu li a {
    display: block;          /* Importante: hace que todo el rectángulo sea clicable */
    padding: 12px 15px;      /* Espacio interior (gordito) */
    text-decoration: none;   /* Quitamos el subrayado feo de los enlaces */
    color: #333;
    font-weight: bold;       /* Letra un poco más gruesa */
    border-bottom: 1px solid #eee; /* Una línea fina para separarlos */
    transition: background 0.3s;   /* Suavidad al pasar el ratón */
}

#menu li a:hover {
    background-color: #f0f0f0;
    color: #6500ca;
    padding-left: 20px; /* Pequeño desplazamiento animado a la derecha */
}

/*➡️🟦*/

/* Footer - Pie de página estilo gaming */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 4px solid #6500ca;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    box-shadow: 0 -5px 20px rgba(101, 0, 202, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6500ca, transparent);
}

footer p {
    margin: 0;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 0 0 10px rgba(101, 0, 202, 0.5);
}

footer p::before {
    content: '⬢ ';
    color: #6500ca;
}

footer p::after {
    content: ' ⬢';
    color: #6500ca;
}