.web {
    background-color: black;
}

.mainHeader {
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 100;
}

.mainHeader .mainNav .navList {
    list-style-type: none;
    padding: 1rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 4rem;
    justify-items: center;
    align-items: center;
}

.mainHeader .mainNav .navList .navListElem a {
    color: inherit;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    padding: 8px 12px;
}

.mainHeader .mainNav .navList .navListElem:hover span {
    font-weight: bold;
    transition: font-weight 0.3s ease;
}

.mainHeader .mainNav .navList .navListElemActive span {
    font-weight: bold;
}

.mainWeb {
    padding-top: 10px;
}

.info h1 {
    text-align: center;
    background-color: #D34236;
    color: white;
    padding: 1rem 0;
    margin: 0;
    font-size: 3rem;
    width: 100%;
}


.info1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 4rem;
}


.info1 p {
    color: white;
    column-count: 2;
    column-gap: 2rem;
    line-height: 1.5;
    text-align: justify;
    font-size: 0.90rem;
    max-width: 6350px;
    margin-top: 3.5rem;
    margin-right: 2rem;
}

.slider {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    width: 300%;
    animation: slide 9s infinite;
}


.slide {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transform: scale(1);
    display: block;
}

/* animación */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(-100%);
    }

    66.66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}



.info2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 4rem;
}

.info2 p {
    color: white;
    column-count: 2;
    column-gap: 2rem;
    line-height: 1.5;
    text-align: justify;
    font-size: 0.90rem;
    max-width: 6350px;
    margin-top: 3.5rem;
    margin-left: -1rem;
}

.slider2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: -2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track2 {
    display: flex;
    width: 300%;
    animation: slide 9s infinite;
}

.slide2 {
    flex: 0 0 100%;
    box-sizing: border-box;
}

.slide2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transform: scale(1);
    display: block;
}

/* animación */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(-100%);
    }

    66.66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}


.hoverText {
    display: block;
    padding: 2rem;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.5s ease, border-color 0.5s ease;
    border: 2px solid transparent;
    width: 100%;
    margin-top: 2rem;
    background-color: transparent;
    font-style: italic;
}

.hoverText .textContainer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hoverText:hover {
    background-color: #D34236;
}