@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --font: 'Montserrat', sans-serif;
    --header-color: #F5EDDB;
    --bg-color: #FFFEF2;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--bg-color);
    font-family: var(--font);
}

.cabecalho{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--header-color);
    gap: 20em;
}

.icones{
    display: flex;
    gap: 10px;
}

#banner{
    display: flex;
    background-image: url(../img/mosaico.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
}

#banner__elementos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 554px;
}

#titulo-h1 {
    color: var(--bg-color);
    font-size: 48px;
    font-weight: 500;
}

#subtitulo {
    color: var(--bg-color);
    font-size: 26px;
    font-weight: 400;
}

#logo-banner{
    width: 50%;
}

#btn-agendamento{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--header-color);
    border-radius: 15px;
    padding: 1.1em 2.3em;
    border: solid 2px #ffffff;
    margin-top: 2em;
    box-shadow: rgba(0, 0, 0, 0.955) 3px 3px 3px; 
    cursor: pointer;
}

a{
    text-decoration: none;
}

#btn-agendamento:hover{
    background-color: #f1e7cf;
    transition: 0.5s;
}

#txt-btn {
    color: #5c5c5c;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
}

#mapa{
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#consulta-telefone{
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#mapa h1{
    margin: 1.5em 0;
    font-size: 40px;
    font-weight: 400;
    font-family: var(--font);
}

#mapa p{
    font-size: 1em;
    text-align: start;
    color: #737373;
    margin-bottom: 5em;
}

.rodape{
    display: flex;
    justify-content: center;
}

.rodape__imagem{
    padding: 2em;
    width: 200px;
    height: 200px;
}

.rodape__lista{
    text-align: center;
    list-style: none;
    justify-content: space-between;
    padding: 2em 3em;
}

.rodape__lista-titulo{
    font-weight: 500;
    padding-bottom: 0.7em;
    font-size: 24px;
}


.rodape__lista-item{
    display: flex;
    align-items: center;
    padding: 0.5em 0;
}

.rodape__lista-item a{
    color: var(--cor-preto);
    text-decoration: none;
}

.rodape__lista-icone{
    margin-right: 0.5em;
    width: 20px;

}
#sobre_nos{
    font-family: var(--font);
    font-weight: 400;
}

#direitos{
    background-color: var(--bg-color);
    text-align: center;
    font-family: var(--font);
    font-weight: 500;

}

@media (max-width: 510px) {
    .cabecalho {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--header-color);
        gap: 10px; 
      }
      
      .icones {
        display: flex;
        gap: 10px;
      }
      
      #banner {
        display: flex;
        background-image: url(../img/banner-celular\ 1.svg);
        background-size: cover; 
        background-repeat: no-repeat;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-family: var(--font);
      }
      
      #banner__elementos {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }
      
      #titulo-h1 {
        color: var(--bg-color);
        font-size: 2.5rem; 
        font-weight: 500;
      }
      
      #subtitulo {
        color: var(--bg-color);
        font-size: 1.2rem;
        font-weight: 400;
      }
      
      #logo-banner {
        width: 45%; 
      }
      
      #btn-agendamento {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: var(--header-color);
        border-radius: 15px;
        padding: 1em 1.5em; 
        border: solid 2px #ffffff;
        margin-top: 2em;
        box-shadow: rgba(0, 0, 0, 0.955) 3px 3px 3px;
      }
      
      a {
        text-decoration: none;
      }
      
      #btn-agendamento:hover {
        background-color: #f1e7cf;
        transition: 0.5s;
      }
      
      #txt-btn {
        color: #5c5c5c;
        font-family: var(--font);
        font-size: 16px;
        font-weight: 600;
      }
      
      #mapa {
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      #map_elements h1 {
        font-size: 1.2rem; 
        font-weight: 400;
        font-family: var(--font);
      }
      
      #mapa p {
        font-size: 0.8em;
        text-align: start;
        color: #737373;
        margin-bottom: 5em;
      }
      
    .rodape__lista{
        display: none;
    }

    iframe{
        width: 340px;
        height: 300px;
    }
    
}