@charset "utf-8";
/* CSS Document */
/* ===========================
   EL FUEGO SAGRADO - ESTILOS
   ===========================
   Tipografía sugerida: 'Poppins' o 'Open Sans' (por ahora usa sans-serif)
   Para versión TTF, incluiría @font-face aquí.
*/

/* ---------- ESTILOS GENERALES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif; /* Cambiar a fuente TTF personalizada si se desea */
    background: linear-gradient(180deg, #8B0000, #FFD700);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---------- HEADER ---------- */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #b22222;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

header h1 {
    font-size: 2em;
    letter-spacing: 2px;
    color: #fff;
}

/* ---------- NAVEGACIÓN ---------- */
nav {
    margin-top: 10px;
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #a52a2a;
    border-radius: 8px;
    padding: 10px;
}

.menu li {
    position: relative;
    margin: 5px 15px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.menu a:hover {
    background-color: #ff4500;
    transform: scale(1.05);
}

/* ---------- SUBMENÚ (Dropdown) ---------- */
.dropdown:hover .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    background-color: #a52a2a;
    top: 35px;
    left: 0;
    list-style: none;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
    min-width: 160px;
}

.submenu li {
    text-align: left;
}

.submenu a {
    display: block;
    padding: 10px;
    color: #fff;
    transition: background 0.3s;
}

.submenu a:hover {
    background-color: #ff6347;
}

/* ---------- MAIN ---------- */
main {
    flex: 1;
    background-image: url('../imagenes/fondo_taco.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    text-align: center;
}

.bienvenida {
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.bienvenida h1 {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.bienvenida p {
    font-size: 1.2em;
    color: #fff;
}

.imagen-principal {
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.multimedia h2 {
    font-size: 2em;
    color: #ffebcd;
    margin-bottom: 15px;
}

video {
    border: 3px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* ---------- FOOTER ---------- */
footer {
    background: linear-gradient(90deg, #8B0000, #B22222);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    box-shadow: 0 -3px 6px rgba(0,0,0,0.3);
    color: #fff;
}

footer p {
    margin: 5px 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
    }

    .imagen-principal {
        width: 100%;
    }

    video {
        width: 100%;
    }
}
/* Mejora visual del formulario */
.mejor-contacto {
    background: linear-gradient(135deg, #b52b23, #EB8231);
    border: 2px solid #ff8c42;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
}

/* Títulos dentro del contacto */
.mejor-contacto h2 {
    color: #d1342a;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

/* Información extra */
.contact-info-extra {
    background: #E89A27;
    border-left: 5px solid #ff8c42;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.contact-info-extra h3 {
    color: #b52b23;
    margin-top: 0;
}
 /* ====== Estilos del Acordeón ====== */
        .acordeon {
            width: 90%;
            margin: 30px auto;
            background: rgba(0,0,0,0.5);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 0 12px rgba(0,0,0,0.4);
        }

        .acordeon-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            background: #E89A27;
            border-left: 6px solid #ff8c42;
        }

        .acordeon-item input {
            display: none;
        }

        .acordeon-titulo {
            display: block;
            padding: 15px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            color: #fff;
            background: #b52b23;
            transition: background 0.3s;
        }

        .acordeon-titulo:hover {
            background: #ff5722;
        }

        .acordeon-contenido {
            max-height: 0;
            overflow: hidden;
            background: #ffdd99;
            color: #000;
            padding: 0 15px;
            transition: max-height 0.4s ease;
        }

        input:checked ~ .acordeon-contenido {
            max-height: 300px;
            padding: 15px;
        }
    /* ======== ESTILOS DE PROMOCIONES ======== */
        .promociones-contenedor {
            width: 90%;
            margin: 30px auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .promo-card {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 0 12px rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            transition: transform 0.3s ease;
        }

        .promo-card:hover {
            transform: scale(1.05);
        }

        .promo-card img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 12px;
            box-shadow: 0 0 12px rgba(0,0,0,0.4);
        }

        .promo-card h3 {
            color: #FFD700;
            margin-bottom: 10px;
        }

        .promo-card p {
            color: #fff;
            font-size: 0.95em;
            margin-bottom: 10px;
        }

        .promo-card .precio {
            font-size: 1.2em;
            font-weight: bold;
            color: #00ff88;
        }

  /* ====== ESTILOS DE UBICACIÓN ====== */
        .ubicacion-contenedor {
            width: 90%;
            margin: 30px auto;
            background: rgba(0,0,0,0.5);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 0 12px rgba(0,0,0,0.4);
        }

        .ubicacion-contenedor h2 {
            color: #FFD700;
            margin-bottom: 10px;
        }

        .ubicacion-contenedor p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #fff;
        }

        iframe {
            width: 100%;
            height: 350px;
            border: 3px solid #FFD700;
            border-radius: 12px;
            box-shadow: 0 0 15px rgba(0,0,0,0.4);
        }