/* Estilos generales */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
}

.center, .carousel, .left, .right, .item {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

.carousel {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: white; 
}

.left {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 10;
    background-color: white; 
}

/* Tarjeta */
.left-item {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
}

.title {
    font-size: 110px;
    font-family: Poppins, sans-serif;
    font-weight: 200;
    color: rgb(5, 4, 4);
}

.text {
    font-size: 18px;
    font-family: Poppins, sans-serif;
    font-weight: 100;
    color: rgb(5, 4, 4);
}

.right {
    position: sticky;
    top: 0;
    right: 0;
    height: 100vh;
    flex-basis: 50%;
    background-color: white; 
}

/* Imagen */
.item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.10s;
    transform: scale(0.3);
    background-color: white; 
}

.item.active {
    transform: scale(1);
    opacity: 1;
}

.item img {
    width: 80%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.item button {
    background: white;
    padding: 1px 20px;
    font-family: Poppins, sans-serif;
    font-size: 10px;
    font-weight: 200;
    color: black;
    outline: none;
    border: none;
    border-radius: 7mm;
    margin-top: 20px;
}

.item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3px) saturate(50%);
    -webkit-backdrop-filter: blur(6px) saturate(50%);
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    background-color: white; 
}

.card a {
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.card a:hover {
    transform: scale(0.94);
}

.card-header {
    font-size: 50px;
}

.card-title {
    font-size: 50px;
}

.card-text, .card-body label, .card-body select, .card-footer {
    font-size: 30px;
}

.btn-primary-uniforme {
    font-size: 35px;
}
