h4 {
	color: #DA8300 !important;
	font-weight: 700 !important;
}
/* Container principal */
.gl-container {
    display: flex;
    gap: 35px;
}
.gl-filter-wrapper {
    width: 100%;
    max-width: 300px;
}

/* Botões de cidades para desktop */
.gl-cidade-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gl-cidade-button {
    padding: 10px 15px;
    background-color: #DA8300;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.gl-cidade-button:hover {
    background-color: #292929;
}

/* Dropdown de cidades para mobile */
.gl-select {
    display: none;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Campo de busca */
.gl-search-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
}

.gl-search-field {
    width: 100%;
    padding: 10px 40px 10px 10px; /* Espaço para o ícone à direita */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
}

.gl-search-icon {
    position: absolute;
    right: 10px; /* Espaçamento do lado direito */
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 18px;
    pointer-events: none; /* Não interfere na digitação */
}

.gl-search-field:focus + .gl-search-icon {
    color: #0073aa; /* Alteração da cor ao focar */
}

/* Unidades */
.gl-geral {
	align-items: center;
    gap: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
	margin-bottom: 15px;
}
.gl-unidade {
    display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}
.gl-unidades-campo {
    display: flex;
	align-items: center;
    gap: 20px;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
}
.gl-unidade-image img {
    max-width: 220px !important;
	width: 100%;
    border-radius: 5px;
}

.gl-unidade-content {
    flex: 1;
}
.gl-unidade-buttons {
    display: flex;
    justify-content: space-evenly;
}
.gl-unidade-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    width: 100%;
	font-weight: 400;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .gl-container {
        flex-direction: column;
    }

    .gl-cidade-buttons {
        display: none;
    }

    .gl-select {
        display: block;
    }

    .gl-unidade {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
	.gl-unidade-buttons {
    flex-direction: column;
    row-gap: 10px;
	}

    .gl-unidade-image img {
        max-width: 100%;
    }
}
/* Estilos básicos para os botões */
.gl-button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

/* Botão do WhatsApp */
.gl-button-whatsapp {
    background-color: #00A01B;
	border: solid 1px #00A01B;
	border-radius: 5px;
}
.gl-button-whatsapp:hover {
    background-color: #00A01B;
}

/* Botão de Telefone */
.gl-button-phone {
    background-color: transparent;
	border: solid 1px #000000;
	border-radius: 5px;
	color: #000000 !important;
}
.gl-button-phone:hover {
    background-color: #000000;
	color: #ffffff !important;
}

/* Botão de Ver Loja */
.gl-button-store {
    background-color: #DA8300;
	border: solid 1px #DA8300;
	border-radius: 5px;
}
.gl-button-store:hover {
    background-color: #DA8300;
}