/* ====================================
   UTILIDADES GENERALES
   ==================================== */
:root {
    --bs-primary: #20325E !important;
    --bs-primary-rgb: 32, 50, 94 !important;
    --bs-dark: #20325E !important;
    --bs-dark-rgb: 32, 50, 94 !important;
    --bs-danger: #E74487 !important;
    --bs-danger-rgb: 231, 68, 135 !important;
}


html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

p, a {
    font-family: 'HankenGrotesk-Light', sans-serif;
    line-height: 1.6;
}

    p b,
    p strong {
        font-family: 'HankenGrotesk-Black', sans-serif;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Novecento CondBold', sans-serif;
}

.btn {
    font-family: 'Novecento CondBold', sans-serif;
    font-size: 2rem;
}

/* ====================================
   TRANSICIONES SUAVES
   ==================================== */
.transition-transform {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   BOTONES CON HOVER EFFECTS
   ==================================== */
.btn:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ====================================
   CARDS CON HOVER EFFECTS
   ==================================== */
.ponente-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* ====================================
   OBJECT FIT SUPPORT PARA NAVEGADORES ANTIGUOS
   ==================================== */
.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

/* ====================================
   INDICADORES ACTIVOS
   ==================================== */
.active-dot {
    background-color: #e91e63 !important;
}

/* ====================================
   RESPONSIVE UTILITIES
   ==================================== */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem !important;
    }

    section[style*="min-height"] {
        min-height: 100vh !important;
    }
}

@media (max-width: 480px) {
    .display-1 {
        font-size: 2.5rem !important;
    }

    .fs-4 {
        font-size: 1.1rem !important;
    }
}

/* ====================================
   Z-INDEX UTILITIES EXTENDIDAS
   ==================================== */
.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/*
    ====================================
    FUENTES PERSONALIZADAS
    ====================================
*/

@font-face {
    font-family: 'Novecento WideMedium';
    src: url('../fonts/Novecento WideMedium.ttf') format('truetype'), url('fonts/Novecento WideMedium.otf') format('opentype'), url('fonts/Novecento WideMedium.cff') format('cff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Novecento CondBold';
    src: url('../fonts/Novecento CondBold.ttf') format('truetype'), url('fonts/Novecento CondBold.otf') format('opentype'), url('fonts/Novecento CondBold.cff') format('cff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Novecento Normal';
    src: url('../fonts/Novecento Normal.ttf') format('truetype'), url('fonts/Novecento Normal.otf') format('opentype'), url('fonts/Novecento Normal.cff') format('cff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HankenGrotesk-Light';
    src: url('../fonts/HankenGrotesk-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HankenGrotesk-Black';
    src: url('../fonts/HankenGrotesk-Black.ttf') format('truetype');
    font-weight: bolder;
    font-style: normal;
}