* {
    font-family: "Montserrat", sans-serif;
}

.container__box {
    display: flex;
    justify-content: center;
}

.container__items {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 4rem;
    padding: 0 1rem;
}

.columna:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease-in-out;
}

.item__box {
    justify-content: center;
    align-items: center;
}

.btnIngresar {
    text-decoration: none;
    background: none;
    border: 2px solid #fff;
    padding: 8px 60px;
}

.letra-1 {
    line-height: 20px;
    color: #fff;
    font-weight: 500;
    font-family: Helvetica;
}

.letra-2 {
    line-height: 0px;
    font-size: 42px;
    color: #fff;
    font-weight: bold;
    font-family: Helvetica;
}

.text-informativo {
    color: #fff;
}

.col-fondo {
    background-attachment: inherit;
    background-clip: border-box;
    background-position: center;
    background-repeat: no-repeat no-repeat;
    background-size: cover;
}



.navbar-nav .nav-link {
    margin-right: 60px;
    /* Espacio adicional entre las opciones */
}


.columna img {
    width: 100%;
    /* Ajusta la imagen para que ocupe todo el espacio dentro de la tarjeta */
    border-radius: 44px;
    /* Ajusta el radio del borde de la imagen para que coincida con el de la tarjeta */
}

/* Estilos para las tarjetas */
.columna {
    margin-top: 4rem;
    /* Margen negativo para que las tarjetas bajen y parezca que están dentro del borde */
}

.footer {
    padding: 30px 45px;
    background-color: #282829;
    color: #fff;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
}



.col-md-auto {
    color: #fff
}


.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeSlideUp 0.8s ease-out both;
}
