@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* LOGO */
.logo-escola {
    width: 50px;
    height: auto;
    position: absolute;
    left: 20px;
    top: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-escola:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: grab;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* HEADER */
header {
    width: 100%;
    height: 80px;
    background-color: #0A500B;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
    padding: 0 20px;
}

/* MENU HORIZONTAL (DESKTOP) */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 27px 32px;
    display: inline-flex;
    color: #FFFFFF;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
}

a:hover {
    color: #38A71A;
}

/* BOTÃO HAMBURGUER */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 24px;
}

body {
    width: 100%;
    height: 100%;
}

h1,
h2 {
    font-family: "Montserrat", sans-serif;
    color: #0E4B2A;
    font-size: 32px;
    padding-top: 12px;
}

p {
    margin-top: 16px;
    color: #000000;
}

b {
    color: #0E4B2A;
}

.container {
    width: 100%;
    display: flex;
}

.img-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.img-school {
    width: 100%;
    height: 100vh;
    max-width: 100%;
}

.title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FEFF00;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.50);
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 700;
}

.button-container {
    display: inline-block;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
}

.button-img {
    width: 160px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    border-radius: 10px;
    border: none;
    background: #0A500B;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.button-img:hover {
    background-color: #38A71A;
    color: #0A500B;
    cursor: pointer;
}

.container-presentation {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    background-color: #38A71A;
    box-sizing: border-box;
}

/* Parte de cima: imagem + texto */
.presentation-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.container-img-left {
    order: 1;
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.container-img-left:hover {
    transform: scale(1.1);
}

.container-img-left img.img-presentation {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

aside {
    order: 2;
    flex: 1 1 55%;
    max-width: 800px;
    padding: 10px;
    margin: 0;
    color: #0E4B2A;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.img-presentation {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Galeria com 4 imagens ou iframes */
.container-box-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.container-box-home .box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.container-box-home:hover,
.box:hover {
    transform: scale(1.05);
}

.container-box-home .box .box-number {
    font-size: 48px;
    font-weight: bold;
    color: #0A500B;
}

.container-box-home .box p {
    margin-top: 10px;
    font-size: 16px;
    color: #0E4B2A;
}

.container-about-us {
    width: 100%;
    padding: 20px 40px;
    font-size: 14px;
    text-align: justify;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-direction: row;
}

/* Texto à esquerda */
.about-us-left {
    flex: 2 1 60%;
    font-size: 14px;
    order: 1;
}

.about-us-right {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    color: #0E4B2A;
    font-size: 20px;
    order: 2;
}

.about-us-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 3 / 5;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.about-us-img:hover {
    transform: scale(1.05);
}

.about-us-p {
    font-family: "Montserrat", sans-serif;
    color: #0E4B2A;
    font-size: 20px;
    font-weight: 600;
    margin-top: 12px;
}

.quote-box {
    position: relative;
    margin-top: 15px;
    padding: 15px 20px;
    background-color: #f4f4f4;
    border-left: 4px solid #0E4B2A;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: Georgia, serif;
}

.quote-box::before {
    content: "“";
    font-size: 50px;
    color: #0E4B2A;
    position: absolute;
    top: 0;
    left: 15px;
    line-height: 1;
}

.quote-box::after {
    content: "”";
    font-size: 50px;
    color: #0E4B2A;
    position: absolute;
    bottom: -10px;
    right: 5px;
    line-height: 1;
}

.quote-box .quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin: 0;
    padding: 0 10px;
    z-index: 1;
}

.quote-box .author {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #0E4B2A;
}

h3 {
    font-family: "Montserrat", sans-serif;
    color: #0E4B2A;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

ul {
    margin-top: 10px;
    padding-bottom: 10px;
}

.container-structure {
    width: 100%;
    min-height: 100%;
    text-align: center;
    background-color: #38A71A;
    padding: 40px 0;
}

.container-structure h1 {
    font-size: 32px;
    color: #0E4B2A;
    margin-bottom: 20px;
}

.container-box {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
}

/* Estilo geral do box */
.box {
    border-radius: 16px;
    background-color: #0E4B2A;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    will-change: transform;
}

.box:hover {
    transform: scale(1.05);
}

.top-box {
    transition: opacity 0.3s ease;
}

/* Boxes com números */
.top-box .box-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.top-box .box-title {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 8px;
}

/* Boxes com imagem */
.image-box {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    cursor: pointer;
    will-change: transform;
}

.image-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.image-box:hover {
    transform: scale(1.05);
}

.box-label {
    margin-top: 8px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

/* Modal */
.modal {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    flex-direction: column;
    padding: 0;
}

.modal.hidden {
    display: none;
}

.modal-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

.close,
.prev,
.next {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

.close {
    top: 20px;
    right: 30px;
}

.prev {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

.next {
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.doubts {
    width: 100%;
    padding: 40px 10px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.doubts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.doubts h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0E4B2A;
    margin-bottom: 30px;
    text-align: center;
}

.faq {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq p {
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
}

.faq li {
    width: 100%;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    list-style: none;
}

.faq li:hover {
    transform: scale(1.02);
}

.faq li label {
    background-color: #38A71A;
    color: #0E4B2A;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    padding-left: 40px;
    transition: background-color 0.3s;
}

.faq li label:hover {
    background-color: #2cbd2e;
}

.faq li label::before {
    content: '+';
    position: relative;
    left: 10px;
    font-size: 20px;
    color: #0E4B2A;
    margin-right: 15px;
    font-weight: bold;
}

.faq li label span {
    display: inline-block;
    background-color: #0E4B2A;
    color: #FFFFFF;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 5px;
    margin: 0;
}

.faq input[type="checkbox"] {
    display: none;
}

.faq .resposta {
    background-color: #FFFFFF;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    line-height: 1.6;
    border-left: 3px solid #0E4B2A;
}

.faq input[type="checkbox"]:checked+label::before {
    content: '-';
}

.faq input[type="checkbox"]:checked+label+.resposta {
    max-height: 500px;
    padding: 15px 20px 20px;
}


.container-contact {
    width: 100%;
    text-align: center;
    background-color: #38A71A;
    padding-bottom: 20px;
}

.maps iframe {
    width: 100%;
    height: 300px;
    margin-top: 5px;
    border: none;
}

.contato-conteudo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-right: 15px;
    margin-left: 15px;
}

/* Colunas */
.info-contato,
.form-contato {
    flex: 1 1 45%;
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cada item de informação */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Ícone circular */
.icon-circle img {
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #d6e9da;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

/* Bloco de texto */
.info-texto {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

/* Título (ex: Endereço:) */
.info-texto h3 {
    color: #0E4B2A;
    font-weight: 700;
    margin: 0;
    text-align: left;
    font-size: 18px;
}

/* Texto abaixo do título */
.info-texto p {
    margin: 4px 0 0;
    font-size: 16px;
    font-weight: 400;
    color: #0E4B2A;
}

.telefone-link,
.email-contact {
    color: #0E4B2A;
    text-decoration: none;
    font-weight: 400;
}

.telefone-link:hover,
.telefone-link:focus,
.telefone-link:active,
.email-contact:hover,
.email-contact:focus,
.email-contact:active {
    color: #0E4B2A !important;
    text-decoration: none !important;
}


/* Formulário */
.form-contato {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin: 15px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

.form-contato input,
.form-contato textarea {
    padding: 10px;
    border: 1px solid #38A71A;
    border-radius: 5px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-contato textarea {
    resize: vertical;
    min-height: 100px;
}

.form-contato input:focus,
.form-contato textarea:focus {
    border-color: #F6FF00;
    outline: none;
}

.botao-container {
    text-align: center;
}

.form-contato button {
    background-color: #0E4B2A;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
}

.form-contato button:hover {
    color: #38A71A;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.info-item img {
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #0E4B2A;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    object-fit: contain;
}

footer {
    width: 100%;
    background-color: #0E4B2A;
    color: #FFFFFF;
    padding: 20px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.container-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
    padding: 0 20px;
}

.redes-sociais-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.titulo-redes {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.logo-footer {
    grid-column: 1;
    justify-self: start;
    width: 60px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.1);
}

.hamburguer-footer {
    display: none;
    font-size: 26px;
    color: #FFFFFF;
    cursor: pointer;
}

.center-content {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.container-footer-li {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links {
    list-style: none;
    font-size: 16px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #38A71A;
}

.copyright {
    max-width: 740px;
    line-height: 1.4;
}

.logos-footer {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 15px;
}

#logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

#logo:hover {
    transform: scale(1.1);
}

/* === Botão Voltar ao Topo === */
#btnTop {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    background: #0E4B2A;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    display: none;
    /* escondido por padrão */
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#btnTop:hover {
    background: #38A71A;
    transform: translateX(-50%) scale(1.1);
}


/* Telas até 1024px */
@media (max-width: 1024px) {

    .container {
        display: none;
    }

    .presentation-top {
        flex-direction: column;
        gap: 20px;
    }

    .container-box {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: auto;
        height: auto;
        padding: 20px;
    }

    .container-about-us {
        padding: 20px;
    }

    .doubts {
        margin: 0 auto;
        box-sizing: border-box;
    }

    .faq li label span {
        display: none;
    }

    .container-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .logo-footer {
        justify-self: center;
    }

    .container-footer-li {
        display: none;
    }

    .hamburguer-footer {
        display: block;
    }

    .center-content {
        order: 2;
        width: 100%;
    }

    .logos-footer {
        order: 3;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}

/* Telas até 768px */
@media (max-width: 768px) {

    /* Ativa botão hambúrguer e esconde menu */
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #0A500B;
        width: 100%;
        z-index: 999;
        transition: all 0.3s ease-in-out;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }

    .container-img-left,
    aside {
        flex: 1 1 100%;
        order: unset;
        text-align: justify;
    }

    .img-presentation {
        max-width: 90%;
    }

    .container-box-home {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .container-about-us {
        flex-direction: column;
        align-items: center;
    }

    .about-us-left,
    .about-us-right {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-us-left {
        text-align: justify;
    }

    .about-us-img {
        width: 70%;
        height: auto;
    }

    .doubts {
        margin: 0 auto;
        box-sizing: border-box;
    }

    .contato-conteudo {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 25px;
        margin: 20px 10px;
    }

    .info-contato,
    .form-contato {
        width: 100%;
        max-width: 100%;
    }

    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-texto {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-texto h3,
    .info-texto p {
        margin: 0;
        text-align: center;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input,
    .form-contato input,
    .form-contato textarea {
        width: 100%;
    }

    .form-contato {
        padding: 0 10px;
        margin: 0;
    }

    .form-contato button {
        width: 100%;
    }

    .faq {
        padding: 0 10px;
        margin-right: 40px;
    }

    .faq li label {
        font-size: 14px;
    }

    .container {
        display: none;
    }

    footer {
        font-size: 13px;
    }

    .logo-footer {
        width: 50px;
    }

    #logo {
        width: 30px;
        height: 30px;
    }

    .copyright {
        font-size: 13px;
        padding: 0 10px;
    }

    .hamburguer-footer {
        font-size: 24px;
    }
}

/* Telas até 390px */
@media (max-width: 390px) {
    .doubts {
        padding: 20px 10px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .faq {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }

    .faq li label {
        font-size: 12px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
    }

    .faq li label span {
        display: none;
        /* Esconde os números */
    }

    .faq li label::before {
        font-size: 18px;
        margin-right: 12px;
    }

    .faq p {
        font-size: 12px;
    }

    h3,
    .about-us-p {
        font-size: 18px;
    }

    .about-us-left {
        font-size: 13px;
    }

    .about-us-img {
        width: 90%;
    }

    .container-img-left img.img-presentation {
        max-width: 100%;
    }
}

/* Telas até 414px */
@media (max-width: 414px) {
    .logo-escola {
        width: 40px;
    }

    nav ul {
        transition: all 0.3s ease-in-out;
    }

    .container {
        display: none;
    }

    .container-img-left img.img-presentation {
        max-width: 90%;
    }

    .about-us-img {
        width: 90%;
    }

    h3,
    .about-us-p {
        font-size: 18px;
    }

    .about-us-left {
        font-size: 13px;
    }

    .maps iframe {
        height: 200px;
    }

    .contato-conteudo {
        gap: 20px;
    }

    .info-contato,
    .form-contato {
        width: 100%;
        max-width: 100%;
    }

    .info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .info-texto {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .info-texto h3,
    .info-texto p {
        text-align: center;
        margin: 0;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input,
    .form-contato input,
    .form-contato textarea {
        width: 100%;
    }

    .form-contato {
        padding: 0 5px;
    }

    .form-contato button {
        width: 100%;
    }

    .container-box {
        grid-template-columns: 1fr;
        height: auto;
    }

    .container-footer-li {
        flex-direction: column;
        gap: 10px;
    }

    .doubts {
        padding: 30px 15px;
        margin: 0 auto;
    }

    .faq {
        padding: 0 10px;
    }

    .faq li label span {
        display: none;
    }

    .faq li label::before {
        margin-right: 10px;
    }

    .faq li label {
        font-size: 16px;
        padding: 12px 15px;
    }

    .faq .resposta {
        font-size: 14px;
        line-height: 24px;
    }

    .logo-footer {
        width: 40px;
    }

    #logo {
        width: 26px;
        height: 26px;
    }

    .copyright {
        font-size: 12px;
    }

    .hamburguer-footer {
        font-size: 22px;
    }
}

/* Telas entre 415px e 767px */
@media (min-width: 415px) and (max-width: 767px) {
    .container-img-left img.img-presentation {
        max-width: 85%;
    }

    .about-us-img {
        width: 80%;
    }

    h3,
    .about-us-p {
        font-size: 20px;
    }

    .about-us-left {
        font-size: 14px;
    }

    .container-box {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .faq li label {
        font-size: 13px;
        padding: 12px 15px;
    }

    .faq li label span {
        display: none;
        /* esconde o número */
    }

    .faq li label::before {
        margin-right: 10px;
    }

    .faq p {
        font-size: 13px;
    }

    .doubts {
        padding: 30px 10px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .faq {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
}