 /* ================================================
   VARIABLES GLOBALES COREDUCACIÓN
   ================================================ */
:root {
    --primary-color:  #8c0a49;           /* Rosa/magenta principal (oscurecido) */
    --primary-dark:   #6d0838;           /* Rosa más oscuro */
    --primary-light:  #c41f20;           /* Rosa claro/rojizo pero más profundo */
    --primary-gradient: linear-gradient(135deg, #e75330, #8c0a49);
    
    /* Colores secundarios */
    --secondary-color: #fb7d3a;         /* Naranja del logo */
    --secondary-dark: #e75330;          /* Naranja más oscuro */
    --secondary-light: #ff9a65;         /* Naranja claro */
    
    /* Colores de acento */
    --accent-color: #950b5d;            /* Magenta oscuro para acentos */
    --accent-light: #b8738b;            /* Rosa grisáceo */
    
    /* Colores de estado */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Colores neutros y fondo */
    --dark-color: #212529;
    --light-color: #ffffff;
    --body-bg: #f8f9fa;                 /* Fondo gris claro */
    --navbar-bg: #ffffff;               /* Navbar blanco */
    --footer-bg: #1a1a2e;               /* Fondo footer */
    --footer-secondary-bg: #16213e;     /* Fondo footer secundario */
    
    /* Efectos y transiciones */
    --card-shadow: 0 10px 30px rgba(223, 30, 83, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --header-height: 80px;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ================================================
   ESTILOS GENERALES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    color: #495057;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   HEADER/NAVBAR - ESTILO COREDUCACIÓN FIJO
   ================================================ */
header.navbar {
    background-color: var(--navbar-bg) !important;
    box-shadow: 0 4px 20px rgba(223, 30, 83, 0.15);
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 3px solid var(--primary-color);
}

.navbar > .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

/* ================================================
   LOGO Y BRANDING
   ================================================ */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.375rem 0;
    text-decoration: none;
    margin-right: 1rem;
    transition: var(--transition);
}
.logo-img {
    height: 70px;   /* ajusta según el alto de tu navbar */
    width: auto;
}

.logo-text {
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--secondary-dark);
    letter-spacing: 1px;
}

.logo-text .highlight-edu {
    color: var(--secondary-color);
}
.navbar-brand img.logo-desktop {
    width: auto;
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(223, 30, 83, 0.2));
    display: block;
}

.navbar-brand img.logo-mobile {
    width: auto;
    height: 40px;
    max-width: 50px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(223, 30, 83, 0.2));
    display: none;
}

.navbar-brand:hover {
    text-decoration: none;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(223, 30, 83, 0.3));
}

/* TEXTO DEL LOGO COREDUCACIÓN */
.navbar-brand .logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 0.75rem;
    text-shadow: 0 2px 4px rgba(223, 30, 83, 0.2);
    letter-spacing: -0.5px;
}

.logo-text {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    background: var(--primary-gradient);
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.logo-text {
    font-size: 2.5rem;         /* ajusta el tamaño del texto */
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;     /* soporte para otros navegadores */
    color: transparent;
}
.logo-text .highlight-edu {
    color: var(--secondary-dark) !important;
    background-clip: unset;
}
/* ================================================
   TOP BAR FIJO CON OCULTACIÓN AL SCROLL
   ================================================ */
.top-mini-menu {
    background-color: #8c0a49;
    padding: 0.4rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.top-mini-menu.hidden {
    transform: translateY(-100%);
}

.mini-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.mini-menu-links li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.mini-menu-links li a:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.mini-menu-links li a i {
    font-size: 0.7rem;
}


/* AJUSTAR EL HEADER PRINCIPAL - CON TRANSICIÓN */
header.navbar {
    background-color: var(--navbar-bg) !important;
    box-shadow: 0 4px 20px rgba(223, 30, 83, 0.15);
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    border-bottom: 3px solid var(--primary-color);
    transition: top 0.3s ease;
}

header.navbar.top-bar-hidden {
    top: 0; /* Se mueve hacia arriba cuando el top bar se oculta */
}

/* AJUSTAR EL BODY */
body {
    padding-top: calc(var(--header-height) + 35px);
}
@media (max-width: 768px) {
    .top-mini-menu {
        padding: 0.2rem 0;
        font-size: 0.7rem;
    }
    
    .mini-menu-links {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .mini-menu-links li a {
        font-size: 0.65rem;
        padding: 0.1rem 0.2rem;
        gap: 0.2rem;
    }
    
    .mini-menu-links li a i {
        font-size: 0.6rem;
    }
    
    .social-contact-links {
        gap: 0.2rem;
    }
    
    .social-mini-link {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    header.navbar {
        top: 25px; /* Reducir espacio */
        padding: 0.7rem 0; /* Reducir padding del header */
    }
    
    header.navbar.top-bar-hidden {
        top: 0;
    }
    
    body {
        padding-top: calc(65px + 25px); /* Header más pequeño + top bar más pequeño */
    }
    
    :root {
        --header-height: 65px; /* Reducir altura del header en tablet */
    }
}

@media (max-width: 576px) {
    .top-mini-menu {
        padding: 0.15rem 0;
        font-size: 0.65rem;
    }
    
    /* Cambiar a layout de una sola fila compacta */
    .top-mini-menu .row {
        align-items: center;
        margin: 0;
    }
    
    .top-mini-menu .col-md-8 {
        padding: 0 0.25rem;
    }
    
    .top-mini-menu .col-md-4 {
        padding: 0 0.25rem;
    }
    
    .mini-menu-links {
        gap: 0.3rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
    }
    
    .mini-menu-links::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .mini-menu-links li a {
        font-size: 0.6rem;
        padding: 0.1rem 0.15rem;
        white-space: nowrap;
        border-radius: 2px;
    }
    
    .mini-menu-links li a i {
        display: none; /* Ocultar iconos completamente */
    }
    
    .social-contact-links {
        justify-content: flex-end;
        gap: 0.15rem;
    }
    
    .social-mini-link {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
        border-radius: 2px;
    }
    
    header.navbar {
        top: 20px; /* Aún más pequeño */
        padding: 0.5rem 0;
    }
    
    header.navbar.top-bar-hidden {
        top: 0;
    }
    
    body {
        padding-top: calc(55px + 20px); /* 75px total */
    }
    
    :root {
        --header-height: 55px; /* Header muy compacto en móvil */
    }
    
    /* Hacer el logo más pequeño en móvil */
    .navbar-brand img.logo-mobile {
        height: 30px;
        max-width: 40px;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 375px) {
    .top-mini-menu {
        padding: 0.1rem 0;
    }
    
    .mini-menu-links li a {
        font-size: 0.55rem;
        padding: 0.05rem 0.1rem;
    }
    
    .social-mini-link {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    header.navbar {
        top: 18px;
    }
    
    body {
        padding-top: calc(50px + 18px); /* 68px total */
    }
    
    :root {
        --header-height: 50px;
    }
}
/* ================================================
   NAVEGACIÓN
   ================================================ */
.navbar-toggler {
    padding: 0.25rem 0.5rem;
    border-color: rgba(223, 30, 83, 0.3);
    display: none;
    align-self: center;
    order: 3;
    margin: 0 0 0 auto;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28223, 30, 83, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:hover {
    border-color: rgba(223, 30, 83, 0.5);
    background-color: rgba(223, 30, 83, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(223, 30, 83, 0.25);
    border-color: rgba(223, 30, 83, 0.5);
}

/* Enlaces de navegación */
.navbar-nav .nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(223, 30, 83, 0.05);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    background-color: rgba(223, 30, 83, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ================================================
   CONTENIDO PRINCIPAL
   ================================================ */
main {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

/* ================================================
   BOTÓN BACK TO TOP
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(223, 30, 83, 0.3);
    z-index: 99;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
    text-decoration: none;
    font-size: 1.1rem;
}

.back-to-top.active {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-3px) scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(223, 30, 83, 0.4);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-brand img.logo-desktop {
        height: 45px;
        max-width: 180px;
    }

    .navbar-brand .logo-text {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 70px;
    }

    :root {
        --header-height: 70px;
    }

    header.navbar {
        padding: 0.75rem 0;
        min-height: var(--header-height);
    }

    .navbar-brand {
        font-size: 1.1rem;
        margin-right: 0;
        flex: 1;
        max-width: calc(100% - 50px);
    }

    .navbar-brand img.logo-desktop {
        display: none !important;
    }

    .navbar-brand img.logo-mobile {
        display: block !important;
        height: 35px;
        max-width: 45px;
    }

    .navbar-brand .logo-text {
        font-size: 1.3rem;
        margin-left: 0.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        position: relative;
        margin: 0 0 0 auto;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background-color: rgba(223, 30, 83, 0.1);
        transition: all 0.3s ease;
        flex-shrink: 0;
        border: 1px solid rgba(223, 30, 83, 0.3);
    }

    .navbar-collapse {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--navbar-bg);
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(223, 30, 83, 0.2);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        border-top: 2px solid rgba(223, 30, 83, 0.2);
    }

    .navbar-nav .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(223, 30, 83, 0.1);
        border-radius: 0;
        margin: 0;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 65px;
    }

    :root {
        --header-height: 65px;
    }

    header.navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img.logo-mobile {
        height: 32px;
        max-width: 42px;
    }

    .navbar-brand .logo-text {
        font-size: 1.2rem;
        margin-left: 0.4rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .navbar-toggler {
        height: 36px;
        width: 36px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ================================================
   FOOTER LIMPIO Y ORGANIZADO
   ================================================ */
.footer-coreducacion {
    background: var(--footer-bg);
    color: white;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Decoración superior del footer */
.footer-coreducacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

/* Layout principal */
.footer-main {
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Sección institucional */
.footer-institutional {
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-container {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.footer-logo-img {
    max-width: 50px;
    max-height: 50px;
    filter: brightness(1.2);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Redes sociales */
.social-networks {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(251, 125, 58, 0.4);
}

/* Títulos de sección */
.footer-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(251, 125, 58, 0.3);
    padding-bottom: 0.5rem;
}

/* Columnas de enlaces */
.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
    text-decoration: none;
}

.footer-link i {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 16px;
}

/* Sección de contacto */
.contact-foter {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(251, 125, 58, 0.2);
}

.contact-itemfooter{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-itemfooter:last-child {
    margin-bottom: 0;
}

.contact-itemfooter:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-iconfooter {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detailsfoter h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-detailsfoter p,
.contact-detailsfoter a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Footer bottom */
.footer-bottom {
    background: var(--footer-secondary-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.copyright-info {
    text-align: center;
}

.copyright-text {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.institutional-text {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design para Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-institutional {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-networks {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-institutional {
        grid-column: span 1;
    }

    .contact-info {
        text-align: left;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 1.5rem 0 1rem;
    }

    .footer-logo-text {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ================================================
   MEJORAS DE ACCESIBILIDAD
   ================================================ */
.btn:focus,
.form-control:focus,
.navbar-toggler:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Soporte para modo de alto contraste */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 4px solid var(--primary-color);
    }
    
    .navbar-nav .nav-link {
        font-weight: 600;
    }
}

/* Soporte para movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .navbar-brand img,
    .navbar-nav .nav-link,
    .back-to-top {
        transition: none;
    }
}
.logo-img {
    max-height: 100px; /* ajusta tamaño */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-text {
    font-weight: bold;
    font-size: 1.3rem;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #555;
}
/* ================================================
   ELEMENTOS ADICIONALES
   ================================================ */
.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 30, 83, 0.3);
}

.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(223, 30, 83, 0.08);
    border-radius: var(--border-radius);
}

.card:hover {
    box-shadow: 0 8px 30px rgba(223, 30, 83, 0.12);
    transform: translateY(-2px);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(223, 30, 83, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Dropdown menu styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(223, 30, 83, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    color: #495057;
}

.dropdown-item:hover {
    background-color: rgba(223, 30, 83, 0.05);
    color: var(--primary-color);
}

.dropdown-item i {
    color: var(--primary-color);
    opacity: 0.7;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(223, 30, 83, 0.1);
}
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}