/* ------------------------------
   FUNDACIÓN ZORAIDA - ESTILO GLOBAL
------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;600&family=Platypi:wght@600;700&display=swap');

/* Tipografías personalizadas */
body {
    font-family: 'Onest', sans-serif;
}

h1, h2, .font-heading {
    font-family: 'Platypi', serif;
}

/* Botones reutilizables */
.btn-primary {
    @apply bg-zoraida-blue text-white px-4 py-2 rounded hover:bg-blue-800 transition;
}

.btn-danger {
    @apply bg-red-600 text-white px-4 py-2 rounded hover:bg-red-700 transition;
}

/* Encabezado general */
.page-title {
    @apply text-white text-2xl font-heading;
    background-color: #002f67;
    padding: 16px;
}

/* Espaciado general */
.section {
    @apply px-6 py-4;
}

.submenu-link {
    @apply block px-3 py-1 rounded hover:bg-blue-700 text-sm text-white transition;
}

.submenu-link-active {
    @apply bg-blue-900 font-semibold;
}