/* ==========================================
   VARIABLES CORPORATIVAS OFICIALES BIOONE
   ========================================== */
:root {
    --bio-green: #6dbfa9;
    --bio-dark: #282441;
}

/* Aplicar la fuente a toda la web */
body {
    font-family: 'Gotham', 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4f6f9;
    transition: background-color 0.3s ease;
    padding-bottom: 80px;
}

main {
    flex: 1;
}

/* ==========================================
   MODO CLARO / OSCURO
   ========================================== */
[data-bs-theme="dark"] body {
    background-color: var(--bio-dark);
}

[data-bs-theme="dark"] .card {
    background-color: var(--bio-dark);
    border-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   COMPONENTES PERSONALIZADOS
   ========================================== */
/* Botón corporativo */
.btn-brand {
    background-color: var(--bio-green);
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
}

.btn-brand:hover {
    background-color: #5ca692;
    color: #ffffff;
}

/* Estilo para los botones del menú principal */
.menu-btn {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Estilo para el logo */
.brand-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

/* Botón flotante para cambiar el tema */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.titulo-corporativo {
    color: var(--bio-dark);
}

[data-bs-theme="dark"] .titulo-corporativo {
    color: #ffffff;
}

