/* Registro de la fuente */
@font-face {
    font-family: "Maven Pro";
    src: url("fonts/MavenPro-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

.volver-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #007FA3 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 127, 163, 0.08), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(0, 127, 163, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 127, 163, 0.1);
    font-family: "Maven Pro", Arial, sans-serif;
}

.volver-link:hover {
    background: linear-gradient(135deg, #007FA3, #005f7a) !important;
    color: white !important;
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(0, 127, 163, 0.25);
    text-decoration: none;
    border-color: #007FA3;
}

.volver-link:active {
    transform: translateX(-1px);
    box-shadow: 0 2px 8px rgba(0, 127, 163, 0.2);
}

/* Soporte para modo oscuro */
body.dark-mode .volver-link {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(45, 55, 72, 0.9));
    color: #4299e1 !important;
    border-color: rgba(66, 153, 225, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .volver-link:hover {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white !important;
    border-color: #4299e1;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
}

/* Clase legacy para compatibilidad */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #007FA3 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 127, 163, 0.08), rgba(255, 255, 255, 0.9));
    border: 2px solid rgba(0, 127, 163, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 127, 163, 0.1);
    font-family: "Maven Pro", Arial, sans-serif;
}

.back-link:hover {
    background: linear-gradient(135deg, #007FA3, #005f7a);
    color: white !important;
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(0, 127, 163, 0.25);
    text-decoration: none;
    border-color: #007FA3;
}

/* Botones */
button {
    font-family: "Maven Pro", Arial, sans-serif;
    font-weight: 600; /* Negrita media para destacar */
    font-size: 16px;
    background-color: #007FA3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #004ba0;
}

/* Enlaces */
a {
    font-family: "Maven Pro", Arial, sans-serif;
    font-weight: 400;
    color: #004ba0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #007FA3;
    text-decoration: underline;
}
