/* INÍCIO SEÇÃO SOBRE NÓS */
.sobre-nos {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 5% 10%;
    color: #fff;
    align-items: center;
    justify-content: center;
}
/* FIM SEÇÃO SOBRE NÓS */

/* INÍCIO IMAGEM DESTAQUE */
.img-destaque {
    flex: 1 1 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.img-destaque img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: transparent;
}

.destaque {
    color: #28b3ff;
    font-size: 40px;
}
/* FIM IMAGEM DESTAQUE */

/* INÍCIO CONTEÚDO SOBRE */
.sobre {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin: 0;
    line-height: 1.2;
}

.sobre p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #ddd;
}
/* FIM CONTEÚDO SOBRE */

/* INÍCIO ÍCONES */
.icones-destaque {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    background-color: transparent;
}

.icones {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    background-color: transparent;
}

.icones img {
    width: 70px;
    height: auto;
    object-fit: contain;
    background-color: #28b3ff;
    border-radius: 10px;
}

.icones span {
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
}

.icones p {
    font-weight: 400;
    font-size: 16px;
    color: #bbb;
    margin: 0;
}
/* FIM ÍCONES */

/* INÍCIO BOTÃO */
.btn {
    margin-top: 30px;
    background-color: #0569ff;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    width: fit-content;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn:hover {
    background-color: #ffffff;
}
/* FIM BOTÃO */

/* INÍCIO RESPONSIVIDADE */
/* Tablets (até 1024px) */
@media (max-width: 1024px) {
    .sobre-nos {
        padding: 5% 5%;
    }

    .sobre-nos>div {
        flex: 1 1 100%;
    }

    .sobre h2 {
        font-size: 28px;
    }

    .sobre p {
        font-size: 15px;
    }
}

/* Celulares (até 413px) */
@media (max-width: 413px) {
    .sobre-nos {
        padding: 5% 3%;
    }

    .sobre h2 {
        font-size: 24px;
    }

    .sobre p {
        font-size: 14px;
    }

    .icones {
        flex-direction: column;
        align-items: flex-start;
    }

    .icones span {
        font-size: 18px;
    }

    .icones p {
        font-size: 14px;
    }
}
/* FIM RESPONSIVIDADE */