body {
    font-family: 'Segoe UI', sans-serif;
}

.card img {
    height: 250px;
    object-fit: cover;
}

.carousel img {
    height: 450px;
    object-fit: cover;
}

footer i {
    font-size: 1.4rem;
    margin: 0 10px;
}


/* ===== FONDO GENERAL DE LA PÁGINA ===== */
body {
    background-image: url("img/FondoParrilla.png"); /* imagen de fondo */
    background-size: cover;       /* se adapta a la pantalla */
    background-position: center;
    background-attachment: fixed; /* efecto elegante */
    background-repeat: no-repeat;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== CONTENEDORES CON FONDO CLARO ===== */
section.container,
#menu-burgers,
#contacto {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
}

.card {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.table {
    background-color: white;
}

hr {
    border-top: 3px solid #dc3545;
    width: 80%;
    margin: 40px auto;
}