/* Estilo automático para a página: sobre */
section.historia {
    span {
        background-color: #00687C;
        color: #fff;
        padding: 15px 36px;
        font-weight: 600;
        font-size: 16px;
        border-radius: 10px;
        text-transform: none;
        width: fit-content;
    }

    h2 {
        font-weight: 700;
        font-size: 56px;
        line-height: 63px;
        margin-top: -24px;
        margin: 0;
    }

    p {
        font-weight: 400;
        font-size: 20px;
        line-height: 160%;
        margin: 0;
    }

    .textos {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .card {
        background-color: #F5F5F5;
        border: 1px solid #E8E8E8;
        padding: 36px 24px;
        box-shadow: 4px 4px 6px 3px #C4C4C41A;
    }

    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

section.diretores {
    background-color: #00687C;
    color: #fff;

    h2 {
        color: #fff;
        text-transform: uppercase;
        font-size: 56px;
        font-weight: 900;
    }

    span {
        color: #fff;
    }

    .textos {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 56px;
    }

    .container {
        position: relative;

        &::after {
            content: '';
            position: absolute;
            display: block;
            height: 300px;
            width: 100%;
            border-radius: 10px;
            background:
                linear-gradient(#006A7E, #006A7E) padding-box,
                linear-gradient(to right, #44A9B5, #00687C, #0091A0) border-box;
            border: 1px solid transparent;
            top: 45%;
            left: 0;
        }
    }

    .swiper.diretores {
        .swiper-slide {
            .card {
                background: transparent;
                border: none;
            }

            .card-thumb {
                border-radius: 10px;

                img {
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                    border-radius: 10px;
                }
            }

            .card-body {
                background: transparent;
                background-color: transparent;
                padding: 24px 0px;

                h3 {
                    font-size: 22px;
                    font-weight: 600;
                    color: #fff;
                }

                p {
                    font-size: 16px;
                    font-weight: 400;
                    color: #fff;
                }
            }
        }
    }
}

section.valores {
    align-content: center;

    .card-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;

        .card {
            flex: 1 1 calc(30% - 8px);
            padding: 24px;
            background-color: #f5f5f5;

            .card-title {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 8px;
                margin-bottom: 16px;

                .num-card {
                    /* padding: 10px; */
                    font-size: 18px;
                    font-weight: 700;
                    color: #fff;
                    background-color: #00687e;
                    border-radius: 4px;
                    width: 38px;
                    height: 38px;
                    align-content: center;
                    text-align: center;
                }

                h3 {
                    font-weight: 600;
                    font-size: 22px;
                    line-height: 160%;
                    letter-spacing: 0;
                    text-wrap-mode: nowrap;
                    margin: 0;
                }
            }

            p {
                margin: 0;
            }
        }
    }
}

@media (width <= 992px) {
    section.historia {
        .textos {
            gap: 40px;
        }

        h2 {
            font-size: 36px;
            line-height: 130%;
        }

        p {
            font-size: 16px;
        }
    }

    section.valores {
        & .card-wrapper {
            .card {
                flex: 1 1 auto;
                padding: 24px;
                background-color: #f5f5f5;
            }
        }
    }
}