/* ============================================
   REPORTE FM — ESTÉTICA INSTITUCIONAL
   ============================================ */

body {
    background: #f7f9fc;
    font-family: "Inter", sans-serif;
}

h2 {
    color: #003366;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 6px solid #003366;
    padding-left: 12px;
}

h3 {
    color: #003366;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

h4 {
    color: #003366;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    font-size: 15px;
    margin: 4px 0;
}

strong {
    color: #003366;
}

/* ============================================
   BLOQUES FM
   ============================================ */

.detalle-bloque {
    background: #003366;            /* Azul mariano */
    border-left: 5px solid #001a33; /* Azul más profundo */
    padding: 18px 22px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #ffffff;                 /* Texto blanco */
}

.detalle-grid div strong {
    color: #ffdd99;                 /* Dorado suave FM */
}

.detalle-separador {
    border: none;
    border-top: 1px solid #ccd6e0;
    margin: 15px 0;
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BOTÓN FM
   ============================================ */

.btn-primary {
    background: #003366 !important;
    border-color: #003366 !important;
    color: #ffffff !important;
    /* TEXTO BLANCO */
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #00264d !important;
    color: #ffffff !important;
    /* TEXTO BLANCO */
}