.fullscreen-bg {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-bg__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
}

.logo-slogan-container {
    position: relative;
    z-index: 10;
}

.logo.initial-logo {
    width: 350px; /* Ajusta el tamaño inicial del logo */
}

.logo.small-logo {
    width: 160px; /* Ajusta el tamaño del logo sticky */
    transition: width 0.9s ease-in-out;
}

.slogan {
    font-size: 1.5rem; /* Ajusta el tamaño del slogan */
    font-weight: bold; 
}

.mt-5 { /* Ajuste para que la primera sección de contenido no quede detrás del header sticky */
    margin-top: 20px !important; /* Ajusta este valor según la altura de tu header sticky */
}

.fixed-top {
    background-color: rgba(224, 240, 255, 0.8);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); /* Borde inferior ligero */
}

.fixed-top.visible {
    opacity: 1;
    transform: translateY(0);
}


/* INTRO */

/* TARJETAS */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, opacity 0.5s ease-out, transform 0.5s ease-out;
    opacity: 0;
    transform: translateY(20px);
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-primary, .btn-outline-success, .btn-outline-warning, .btn-outline-info {
    border-width: 2px;
    transition: all 0.3s ease-in-out;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

.btn-outline-success:hover {
    background-color: #198754;
    color: white;
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    color: black;
}

.btn-outline-info:hover {
    background-color: #0dcaf0;
    color: white;
}