.single-page-hero {
    background: url('../img/banner-page.webp') center/cover no-repeat fixed;
}

/* --- TARJETAS DE EQUIPO --- */
.staff-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.staff-img {
    height: 280px;
    object-fit: cover;
    width: 100%;

    transition: filter 0.3s;
}


/* --- CAJAS DE REGLAS (MODIFICADO: Solo Rojo y Celeste) --- */
/* --- TARJETAS DE VALORES Y REGLAS (.value-box) --- */
.value-box {
    height: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    /* Bordes redondeados modernos */

    /* Borde superior transparente por defecto (para la animación) */
    border-top: 4px solid transparent;

    /* Sombra base suave */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);

    /* Transición suave para todo */
    transition: all 0.3s ease;

    /* Alineación */
    text-align: left;
    /* Mejor para listas */
    position: relative;
    overflow: hidden;
}

/* --- EFECTO HOVER --- */
.value-box:hover {
    /* El borde superior se pinta de tu color primario (Rojo) */
    border-top-color: var(--bs-primary);

    /* Se levanta */
    transform: translateY(-5px);

    /* La sombra crece */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- ICONO PRINCIPAL --- */
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
    /* Rojo por defecto */
    opacity: 0.9;
}

/* --- LISTAS CON CHECKS (Dentro de la tarjeta) --- */
.value-box .check-list {
    padding-left: 0;
    /* Reset padding */
}

.value-box .check-list li {
    position: relative;
    padding-left: 1.8rem;
    /* Espacio para el check */
    margin-bottom: 0.8rem;
    list-style: none;
}

/* El Check Rojo */
.value-box .check-list li::before {
    content: "\f00c";
    /* Icono Check FontAwesome */
    font-family: "Font Awesome 5 Pro", "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--bs-primary);
}




/* --- Sección Alimentación --- */
/* Caja del Item */
.food-item {
    display: flex;
    align-items: flex-start;
    /* CLAVE: El icono se queda arriba, no se centra raro */
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    /* Bordes menos redondos, más modernos */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Borde sutil en vez de borde izquierdo grueso */
    transition: all 0.3s ease;
    height: 100%;
    /* Para que todas las cajas tengan la misma altura si usas grid */
}

.food-item:hover {
    transform: translateY(-5px);
    /* Se levanta un poco */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
    /* Borde rojo sutil al hover */
}

/* Icono */
.food-icon {
    flex-shrink: 0;
    /* CLAVE: Evita que el icono se aplaste si hay mucho texto */
    width: 48px;
    height: 48px;
    background: rgba(211, 47, 47, 0.1);
    /* Rojo muy clarito (var(--bs-primary) con opacidad) */
    color: var(--bs-primary);
    border-radius: 12px;
    /* Cuadrado redondeado (Squircle) es tendencia 2025 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}