/* Definición de fuentes según manual de marca */

/* LT Wave Medium - Para logo y títulos principales */
@font-face {
    font-family: 'LT Wave';
    src: url('Fuentes/LTWave-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Century Gothic Regular - Para texto general */
@font-face {
    font-family: 'Century Gothic';
    src: url('Fuentes/07558_CenturyGothic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Aplicación de fuentes según manual de marca */
body {
    font-family: 'Century Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-weight: 400;
}

/* Clase para usar LT Wave Medium (logos, títulos principales) */
.font-lt-wave {
    font-family: 'LT Wave', sans-serif;
    font-weight: 500;
}

/* Clase para usar Century Gothic Regular */
.font-century-gothic {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 400;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animaciones personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Estilos adicionales para mejorar la experiencia */
.container {
    max-width: 1200px;
}

/* Estilos para los enlaces del footer */
footer a {
    transition: transform 0.2s ease;
}

footer a:hover {
    transform: scale(1.1);
}

/* Estilos para las tarjetas de servicios */
.bg-\[#efefef\] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-\[#efefef\]:hover {
    transform: translateY(-5px);
}

/* Estilos para el slider principal */
section#inicio {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ajustes para la barra de redes sociales en móvil */
@media (max-width: 1023px) {
    section#inicio .absolute.left-0 {
        display: none;
    }
}

/* Estilos para el slider de Misión, Visión y Valores */
#mvv-slider {
    display: flex;
    height: 100%;
    will-change: transform;
}

#mvv-slider > div {
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 0;
}

/* Animación para los iconos del slider */
#mvv-slider > div svg {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animación para los iconos de valores */
.valor-icono {
    transition: transform 0.3s ease;
}

.valor-icono:hover {
    transform: scale(1.15) translateY(-5px);
}

.valor-icono svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.mvv-indicator {
    transition: all 0.3s ease;
}

.mvv-indicator.active {
    background-color: white !important;
    width: 2rem !important;
}

/* Estilos para el scrollbar de la sección de Valores */
#mvv-slider > div:last-child .overflow-y-auto {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

#mvv-slider > div:last-child .overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

#mvv-slider > div:last-child .overflow-y-auto::-webkit-scrollbar-track {
    background: transparent;
}

#mvv-slider > div:last-child .overflow-y-auto::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

#mvv-slider > div:last-child .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Estilos para el select/dropdown de roles */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2321224c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

