.parallax-cidades{
    background-image: url("../images/bg-cidades.jpg");
    height: 40vh; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cidades-template .entry-header{
    color: #005CA6;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.cidades-template .entry-title{
    color: #005CA6;
    font-weight: 900;
}

.infos-city{
    max-width: var(--responsive--alignwide-width);
    margin-left: auto;
    margin-right: auto;
}

.infos-city .col-md-12 h2{
    font-size: 20px;
    font-weight: 900;
    color: #005CA6;
}

.infos-city .col-md-3{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.infos-city .col-md-3 img{
    margin-right: 1rem;
}

.infos-city .col-md-3 p{
    font-weight: 900;
    color: #0090DF;
    font-size: 15px;
}

.header-atendimento{
    position: relative;
    margin-bottom: 1rem;
}

.parallax-atendimento{
    background-image: url("../images/bg-atendimento.jpg");
    height: 40vh; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.cidades-atendidas{
    max-width: var(--responsive--alignwide-width);
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cidades-atendidas h1{
    color: #005CA6; /* Altere a cor conforme necessário */
    font-size: 4rem;
    font-size: 700;
    text-align: center;
}

.cidades-atendidas .row{
    justify-content: space-between;
}

.cidades-atendidas .row .col-md-4{
    width: 32.5%;
}

.card-city{
    background-color: #EEEEEE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.card-city h3{
    color: #005CA6;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 1rem;
}

.card-city .end-city-card,.card-city .whats-city-card{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: center;
}

.card-city .end-city-card img,.card-city .whats-city-card img{
    margin-right: 1rem;
}

.card-city .end-city-card p, .card-city .whats-city-card p{
    font-weight: 500;
    color: #0090DF;
    font-size: 15px;
}

.btn-city{
    background-color: #FF950B; /* cor de fundo para o hover */
    color: #fff; /* Cor do texto */
    text-decoration: none;
    padding: 10px 20px; /* Espaçamento interno */
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    display: inline-block; /* Permite estilizar como botão */
    border-radius: 5px; /* Bordas arredondadas */
    font-size: 16px; /* Tamanho do texto */
    font-weight: 700;
    display: flex;
    font-family: var(--global--font-secondary);
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s; /* para o efeito suave de hover */
  }
  
  .btn-city:hover {
    color: #fff; /* Cor do texto */
    background-color: #0090DF;
  }
  
  .btn-city svg{
    margin-left: 1.5rem;
  }
  
  .btn-city svg path {
    fill: #fff;
  }
  
    /* Estilo inicial para o ícone SVG */
    #btn-icon {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        transition: stroke-dashoffset 0.5s ease;
    }

    /* Estilo para o ícone SVG no hover */
    .btn-city:hover #btn-icon {
        stroke-dashoffset: 0;
    }

