/* ====== Ficha de material — Opción B (hero superior) ====== */

/* Cabecera ancha con nombre + precio */
.matFicha-hero {
    background: linear-gradient(120deg, #1a3a5c, #2d5a87);
    color: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.matFicha-hero h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.matFicha-heroDesc {
    opacity: 0.85;
    font-size: 0.95rem;
}

.matFicha-heroRight {
    display: flex;
    gap: 16px;
    align-items: center;
}

.matFicha-heroPrice {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.matFicha-hero .btn-volver {
    background: #fff;
    color: #1a3a5c;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 22px;
}

.matFicha-hero .btn-volver:hover {
    background: #e8f0fe;
    color: #1a3a5c;
}

/* Tarjetas de contenido */
.matFicha-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 22px;
}

.matFicha-cardTitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1a3a5c;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f0fe;
    margin-bottom: 16px;
}

.matFicha-cardTitle i {
    margin-right: 8px;
}

/* Chips de características */
.matFicha-chip {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.matFicha-chip small {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    display: block;
}

.matFicha-chip .matFicha-chipValue {
    font-weight: 600;
    color: #1f2d3d;
}

/* Aviso de días máximos */
.matFicha-maxdays {
    background: #e8f0fe;
    color: #1a3a5c;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* Botones de reserva — color del colegio */
.matFicha-btnIniciar {
    background: var(--colorColegio);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.2s;
}

.matFicha-btnIniciar:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    filter: brightness(0.95);
}
