
/* ===== FUENTES ===== */
/* Open Sans - Regular - 400*/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Open Sans - bold - 700*/
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== ESTILOS BASE ===== */
html {
    font-family: 'Open Sans', sans-serif;
}

/* ===== BOTONES COMUNES ===== */
/* Botón principal - Publicar SE USA EN DETALLE, FORMULARIO Y LISTADO*/ 
.hero-btn-primary {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 30px;
    background-color: rgb(138, 92, 255);
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero-btn-primary:hover {
    background-color: #8A5CFF;
}

.hero-btn-primary:active {
    transform: scale(0.95);
}

/* Botón secundario - Administrar usuarios SE USA EN DETALLE, FORMULARIO Y LISTADO */
.hero-btn-secondary {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 9px 25px;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero-btn-secondary:hover {
    background-color: #e0e0e0;
}

.hero-btn-secondary:active {
    transform: scale(0.95);
}

