.intro {
    background-image: url(../img/praia-fundo.webp);
    background-size: cover;
    max-height: 100rem;
    color: var(--white);
    font-weight: 100;
}

.intro-content {
    top: 5rem;
}

.intro-text h2, .intro-text h1 {
    font-size: 10.6rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.intro-text p {
    font-family: Lora, sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.orange {
    background-color: var(--orange);
}

.blue {
    background-color: var(--blue);
}

.sobre p {
    font-family: Lora, sans-serif;
    font-size: 2.8rem;
    font-style: italic;
}

.intro-text ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    font-size: 2.3rem;
}

.intro-text ul li img {
    margin-right: 2rem;
}

.instituicao-img {
    display: flex;
    padding-top: 6rem;
    gap: 15rem;
}

.produtos {
    margin-top: 5rem;
}

.produtos h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-container {
    max-width: 112rem;
    width: 100%;
    padding: 4rem 0;
}

.slide-content {
    padding: 3rem 2rem;
    margin: 0 4rem;
    overflow: hidden;
    border-radius: 2.5rem;
}

.card {
    border-radius: 2.5rem;
    background-color: var(--white);
    border: 3px solid var(--purple);
    z-index: 0;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.4rem;
}

.image-content {
    position: relative;
    row-gap: 0.5rem;
    padding: 2.5rem 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--purple);
    border-radius: 1.5rem 1.5rem 0 2.5rem;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4rem;
    height: 4rem;
    width: 4rem;
    background-color: var(--purple);
}

.overlay::after {
    border-radius: 0 2.5rem 0 0;
    background-color: var(--white);
}

.card-image {
    position: relative;
    background-color: var(--white);
    border-radius: 2rem;
    padding: 1rem;
    font-size: 0rem;
}

.card-image,
.card-img {
    object-fit: cover;
}

.name {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--purple);
    text-transform: uppercase;
    margin: 1rem 0;
    z-index: 15;
}

.description {
    font-size: 1.6rem;
    text-align: justify;
    padding: 0 1.5rem;
}

.button {
    border: none;
    font-size: 1.6rem;
    color: var(--white);
    padding: 0.8rem 1.6rem;
    background-color: var(--orange);
    border-radius: 0.6rem;
    margin: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: var(--blue);
}

.swiper-navBtn {
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: var(--orange);
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 4rem;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination.bullet {
    background-color: var(--orange);
    opacity: 1;
}

.swiper-pagination.bullet-active {
    background-color: var(--orange);
}

.contato-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    top: 0;
    left: 0;
    height: auto;
    padding: 10px 15px;
}

@media screen and (max-width: 768px) {
    .intro {
        background-position: center
    }

    .slide-content {
        margin: 0 1rem;
    }

    .swiper-navBtn {
        display: none;
    }

    .instituicao-img {
        flex-direction: column;
        gap: 3rem;
        padding-top: 3rem;
        align-items: center;
    }

    .instituicao-img img {
        width: 60%;
        height: auto;
    }

    .contato-icons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
        padding: 10px 0;
        height: 10rem;
    }

    .contato-icons img{
        height: 8rem;
    }
}