.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

.banner-topo2 img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin: 10px auto;
    display: block;
}

.banner-topo2 h1 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.action-buttons {
    text-align: center;
    margin-top: 10px;
}

.action-buttons a {
    display: inline-block;
    margin: 0 5px;
    padding: 10px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.action-buttons a.ligar {
    background-color: #28a745;
}

.action-buttons a.rota {
    background-color: #007bff;
}

.action-buttons a.whatsapp {
    background-color: #25d366;
}

.info-chave .item {
    margin-bottom: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
}

.info-chave .item i {
    margin-right: 10px;
    color: #ff6600;
    /* Cor laranja */
}



.galeria-masonry {
    display: flex;
    margin: 0 auto;
}

.galeria-item {
    margin: 5px;
    width: calc(33.333% - 10px);
    /* Ajuste para 3 colunas */
    float: left;
}

.galeria-item img {
    width: 100%;
    height: auto;
    display: block;
}




.mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
}










.horario-container {
    width: 100%;
    border: none;
    /* Removido estilo de drop */
    padding: 0;


}

.horario-resumo {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: flex-start; /* Alinha à esquerda */
    gap: 10px; /* Espaçamento entre os elementos */
    font-size: 16px;
    font-weight: bold;
    color: var(--cor-secundaria);
}

.horario-resumo i {
    color: #ff6600; /* Cor do ícone laranja */
    margin-right: 5px; /* Reduz o espaçamento do ícone */
}

.horario-resumo .status {
    color: red; /* Fechado */
    font-weight: bold;
}

.horario-resumo .abre-horario {
    color: var(--cor-secundaria); /* Cor padrão */
    font-weight: bold;
}







.btn-expandir {
    background: none;
    border: none;
    /* Removido estilo de drop */
    font-size: 16px;
    cursor: pointer;
    color: #ff6600;
    /* Cor laranja */
}

.lista-horarios {
    margin-top: 10px;
}

#horarios-detalhados {
    list-style: none;
    margin: 0;
    padding: 0;
}

#horarios-detalhados li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f2f2f2;
}

#horarios-detalhados li:last-child {
    border-bottom: none;
}

#horarios-detalhados .dia {
    text-align: left;
    font-weight: bold;
    color: #555;
    margin-right: 10px;
}

#horarios-detalhados .horario {
    text-align: right;
    color: #007bff;
    flex-grow: 1;
}







.tabs {
    display: flex;
    flex-wrap: wrap;
    /* Permite que as abas quebrem para a próxima linha */
    justify-content: center;
    /* Centraliza os itens no container */
    gap: 10px;
    /* Espaçamento entre as abas */
    background-color: #ffffff;
    padding: 10px 0;

}

.tabs a {
    text-decoration: none;
    padding: 10px 15px;
    color: #585858;
    /* Texto cinza */
    font-weight: normal;
    /* Sem bold */
    font-size: 14px;
    /* Tamanho da fonte */
    border: 1px solid #818181;
    /* Cor da borda */
    border-radius: 20px;
    background-color: #ffffff;
    /* Fundo branco */
    display: flex;
    align-items: center;
    gap: 5px;
    /* Espaço entre ícone e texto */
    text-align: center;
}

.tabs a i {
    color: var(--cor-primaria);;
    /* Ícone em laranja */
    font-size: 20px;
    /* Tamanho do ícone */
}



.tabs a#secao-extra-bt {
    text-decoration: none;
    border: none;
    padding: 10px 15px;
    font-weight: normal;
    font-size: 14px;
    border-radius: 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tabs a#secao-extra-bt i {
    color: #fff; /* Ícone branco */
    font-size: 20px;
}



.item {
    display: flex;
    align-items: flex-start;
    /* Alinha o ícone ao início */
}

.endereco {
    display: flex;
    flex-direction: column;
    /* Exibe os spans um abaixo do outro */
    margin-left: 5px;
    /* Espaçamento entre o ícone e os endereços */
}

/* Barra divisória acima do horário */
.divisor-barra {
    border-top: 1px solid #c5c5c5;
    margin: 20px 0;
}

.divisor {
    margin: 20px 0;
}

.divisor25 {
    margin: 25px 0;
}

.divisor10 {
    margin: 10px 0;
}


/* Ajustes adicionais */
.footer-space {
    height: 50px;
    width: 100%;
    background-color: transparent;
    /* Fundo transparente */
    margin-bottom: 60px;
    /* Espaço extra abaixo */
}




#rede-social {
    list-style: none;
    /* Remove os pontos pretos da lista */
    display: flex;
    /* Exibe os itens em linha */
    gap: 10px;
    /* Espaçamento entre os ícones */
    padding: 0;
    /* Remove o padding padrão da lista */
    margin: 0;
    /* Remove o margin padrão da lista */
}

#rede-social li {
    display: inline-block;
    /* Mantém os itens em linha */
}

#rede-social img {
    width: 50px;
    /* Define a largura dos ícones */
    height: auto;
    /* Mantém a proporção da altura */
    cursor: pointer;
    /* Exibe o cursor como ponteiro ao passar sobre os ícones */
    transition: transform 0.2s;
    /* Adiciona um efeito ao passar o mouse */
}

#rede-social img:hover {
    transform: scale(1.1);
    /* Aumenta o tamanho ligeiramente ao passar o mouse */
}


#descricao-anunciante {
    text-align: justify; /* Justifica o texto */
    text-align-last: left; /* Garante que a última linha seja alinhada à esquerda */
    text-indent: 0px; /* Sem indentação */
    line-height: 1.6; /* Espaçamento entre linhas */
    max-width: 700px;
    margin: 0 auto;
    padding: 0px;
    font-size: 16px;
    font-weight: 400;
    color: var(--cor-secundaria); /* Cor suave */
}

.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    /* Faz com que os itens se ajustem em várias linhas */
    gap: 0;
    /* Remove o espaçamento entre os itens */
    justify-content: flex-start;
    /* Alinha os itens à esquerda */
}

.payment-item {
    flex: 0 0 20%;
    /* Cada item ocupa 25% da largura, 4 por linha */
    display: flex;
    justify-content: center;
    /* Centraliza as imagens horizontalmente */
    align-items: center;
    /* Centraliza as imagens verticalmente */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margens */
}

.payment-item img {
    width: 80px;
    /* Tamanho fixo da imagem */
    height: auto;
    /* Mantém a proporção correta */
    border: none;
    /* Remove qualquer borda */
    outline: none;
    /* Remove outline */
}

.payment-description {
    text-align: left;
    margin-top: 20px;
}

#mapa-container {
    width: 100%;
    height: 350px;
}

.waze-link {
    text-align: center;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    color: inherit;
    /* Garante que a cor do texto herde o valor padrão */
}

.waze-icon {
    width: 60px;
    height: 60px;
    background-image: url('../../images/waze.png');
    /* Caminho para o ícone do Waze */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    /* Centraliza o ícone */
    display: block;
    /* Garante que seja tratado como um bloco */
}

.waze-link div {
    margin-bottom: 10px;
    display: block;
    /* Garante que o texto fique abaixo do ícone */
}

.waze-link:hover {
    text-decoration: underline;
    /* Adiciona um efeito de sublinhado ao passar o mouse */
}


/* Modal */
.modal-share {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content-share {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    position: relative;
}

.modal-content-share a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    color: var(--cor-secundaria);
    font-size: 18px;
}

.modal-content-share a i {
    margin-right: 8px;
}

.link-copy-share {
    margin-top: 10px;
    cursor: pointer;
    color: #007BFF;
    text-decoration: underline;
}

.close-btn-share {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

@media (min-width: 1024px) {
    .payment-methods-container {
        display: flex;
        flex-wrap: wrap;
        gap: 5px; /* Espaçamento mínimo entre os ícones */
        justify-content: flex-start; /* Alinha tudo à esquerda */
        align-items: center;
        padding: 0; /* Remove padding extra */
        margin: 0; /* Remove margens adicionais */
    }
    
    .payment-item {
        flex: 0 0 auto; /* Mantém o tamanho exato do conteúdo */
        display: flex;
        align-items: center;
        margin: 0; /* Remove qualquer margem lateral */
    }
    
    .payment-item img {
        width: 70px; /* Define o tamanho dos ícones */
        height: auto; /* Mantém a proporção */
    }
    
}
