/* Estilos para a página de endereço */
.address-main {
    background-color: white;
    padding: 20px 15px;
    margin: 15px;
    border-radius: 8px;
    max-width: 900px;
    margin: 15px auto;
}

.address-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.address-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.info-container h2 {
    font-size: 20px;
    color: #1A2B3C;
    margin-bottom: 10px;
}

.address-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.address-text i {
    margin-right: 8px;
    color: #1A2B3C;
}

.map-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1A2B3C;
    color: white;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: background-color 0.3s;
}

.map-link:hover {
    background-color: #4A4A4A;
}

.hours-title {
    font-size: 18px;
    margin-bottom: 10px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;

  /* Estilo do círculo */
  background-color: #25d366; /* sua cor principal */
  border-radius: 50%;
  width: 60px;  /* largura fixa do botão */
  height: 60px; /* altura fixa do botão */
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button img {
  width: 32px;   /* ícone proporcional */
  height: 32px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #4A4A4A; /* muda a cor no hover */
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}



/* Layout para telas maiores */
@media (min-width: 768px) {
    .address-card {
        flex-direction: row;
        align-items: flex-start;
    }
    .map-container {
        flex: 1;
        height: 400px;
    }
    .info-container {
        flex: 1;
    }
}
