#home {
    background-color: #133050;

    position: relative;
    width: 100%;
}

#menu-mobile-button {
    display: none;
}

.menu-mobile{
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgb(230, 230, 230);
    border-bottom: 1px solid rgb(230, 230, 230);
    z-index: 30;
    background-color: white;
    display: none;
}

.menu-mobile ul{
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
}

.menu-mobile ul a{
    text-decoration: none;
    color: black;
    font-size: 25px;
    font-weight: 300;
}

.menu-mobile ul a:hover{
    color: rgb(150,150,150);
}

.menu-mobile li{
    padding: 15px 0;
}

.menu-mobile hr{
    max-width: 150px;
    margin: 0 auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/home-background.png') center center/cover no-repeat; /* URL e propriedades da imagem de fundo */
    opacity: 0.15; /* Nível de opacidade da imagem (20%) */
}

.content {
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima da imagem de fundo */
}

.logo {
    width: auto;
    height: 100px;
}

.blue-title {
    color: #133050;
}

.orange-title {
    color: #F2A516;
}

#services {
    background-color: #f2f2f2;
}

.dot-divider {
    background-color: #F2A516;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    margin: 20px 0;
}

.service-description {
    font-size: 20px;
    font-weight: 300;
    padding: 0 30px;
}

#about {
    background-color: #133050;
}

.about-text {
    font-size: 22px;
    text-align: center;
    font-weight: 300;
}

.about-image {
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

#mission {
    background-color: #f2f2f2;
}

.mission-col {
    padding: 0;
    margin: 0;
}

.vision-col {
    padding: 0;
    margin: 0;
}

.mission-text {
    font-size: 22px;
    padding: 10px 50px;
    font-weight: 300;
}

.vision-list {
    border-left: 2px solid #F2A516;
    padding: 10px 50px;
    padding-left: 70px;
    list-style: none;
}

.vision-list li {
    font-size: 22px;
    font-weight: 300;
    line-height: 50px;
}

.vision-list li::before {
    content: "\2022";
    color: #F2A516;
    font-weight: bold;
    display: inline-block;
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

#contact {
    background-color: #133050;
}

.contact-form {
    max-width: 768px;
}

.contact-button {
    background-color: #F2A516;
    font-size: 22px;
    padding: 5px 20px;
    font-weight: 500;
}

.contact-button:hover {
    background-color: #c37f00;
}

.contact-divider {
    width: 468px;
    height: 2px;
    background-color: white;
    max-width: 80%;
}

.map-container {
    position: relative;
    padding-bottom: 30%; /* Defina a proporção de aspecto do mapa (altura / largura) - neste caso, 16:9 */
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.address-info {
    font-weight: 300;
    font-size: 22px;
}

.social {
    text-align: center;
}

.social a {
    color: white;
    text-decoration: none;
    font-size: 40px;
    margin: 0 10px;
}

footer {
    background-color: #133050;
    color: white;
}

footer h4 {
    padding-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
}

footer a {
    color: white;
    font-weight: 300;
}

@media (max-width: 992px) {
    #home h1 {
        text-align: center;
    }

    .desktop-menu {
        display: none;
    }

    #menu-mobile-button {
        color: white;
        font-size: 40px;
        padding: 8px 0;
        float: right;
        cursor: pointer;
        display: block;
    }

    .vision-list {
        border: 0;
    }

    .mission-text {
        padding: 10px 15px;
        font-size: 18px;
    }

    .vision-list {
        padding: 10px 25px;
    }

    .vision-list li {
        font-size: 18px;
    }

    footer h4 {
        margin-bottom: 0;
    }

    footer h4:first-of-type {
        padding-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .service-description {
        padding: 0 !important;
        font-size: 16px;
    }

    .about-text {
        font-size: 18px;
    }

    .map-container {
        position: relative;
        padding-bottom: 80%; /* Defina a proporção de aspecto do mapa (altura / largura) - neste caso, 16:9 */
        overflow: hidden;
    }

    .social a {
        font-size: 30px;
        margin: 0 5px;
    }

    #contact h4 {
        font-size: 18px;
    }

    footer h4 {
        font-size: 16px;
        width: 100%;
    }
}