#imgPrincipal{
    height: var(--tamano-imgPrincipal);
    width: var(--tamano-imgPrincipal);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contenido
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80vw;
}

.texto{
    width: 60vw;
}

.lista {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 15px;
    padding-left: 0;
}

.lista li {
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.lista li:hover {
    background-color: #c8e6c9;
    transform: scale(1.05);
}

.carrusel{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 80vh;
}

.imagenes{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.slide img{
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, .85);
    height: 550px;
    width: 750px;
    margin: 5px;
    object-fit: contain;
    filter: saturate(175%);
    display: block; /* o flex si necesitas centrar cosas */
    width: 100%;
    text-align: center;
}

.puntos{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0px;
}

.puntos p{
    font-size: 100px;
    font-weight: 500;
    margin-top: -50px;
    color: black;
}

.puntos .bold{
    font-weight: 700;
    color: purple;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease forwards;
}

@media screen and (max-width: 768px) {
    #imgPrincipal{
        height: 250px;
        width: 250px;
    }
}