* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  padding: 20px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.header-logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #2a7de1;
  cursor: pointer;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.header-nav ul li a {
  text-decoration: none;
  color: #2a7de1;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.header-nav ul li a:hover {
  color: #174f9c;
}

/* Título da seção */
.titulo-atendimento {
  text-align: center;
  margin: 30px 0;
  color: #333;
  font-size: 2em;
}

/* Localização */
.localizacao-container {
  background-color: #ffffff;
  padding: 20px;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.localizacao-container h2 {
  color: #2a7de1;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.mapa-link {
  font-size: 1.1em;
  color: #1e90ff;
  text-decoration: none;
  transition: color 0.3s;
}

.mapa-link:hover {
  color: #174f9c;
  text-decoration: underline;
}

/* Mapa estilo cartão */
.map-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-frame {
  width: 100%;
  height: 300px;
  border: none;
}

.map-info {
  padding: 15px 20px;
  text-align: left;
}

.map-cidade {
  font-size: 14px;
  color: #777;
}

.map-titulo {
  margin: 5px 0;
  color: #2a7de1;
  font-size: 1.2em;
}

.map-endereco {
  margin: 0;
  color: #333;
}

.map-directions {
  display: inline-block;
  margin-top: 10px;
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.map-directions:hover {
  color: #174f9c;
  text-decoration: underline;
}

/* Horários */
.horarios-container {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px auto 40px;
  border-radius: 10px;
  max-width: 700px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.horarios-container h2 {
  color: #2a7de1;
  text-align: center;
  margin-bottom: 15px;
}

.horarios-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.horarios-box p {
  margin: 0;
  padding: 10px;
  border-left: 4px solid #2a7de1;
  background-color: #f0f7ff;
  border-radius: 4px;
}

/* Calendário */
.DataAtendimento {
  color: #2a7de1;
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: 150px;
  width: 100%;
  display: block;
  text-align: center;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.month {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.month h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #2a7de1;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.day, .day-name {
  padding: 8px 5px;
  margin: 2px;
  border-radius: 5px;
}

.day-name {
  font-weight: bold;
  color: #555;
  background-color: #e9e9e9;
}

.highlight {
  background-color: #1E90FF;
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

/* Footer */
.footer {
  background-color: #2a7de1;
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-top: 80px;
  text-align: center;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.footer-depoimento {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-depoimento a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
}

.footer-social a {
  font-size: 32px;
  color: #ffffff;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #d0e6ff;
}

.footer-copy {
  font-size: 15px;
  color: #e0e0e0;
  text-align: center;
}
   .footer-title {
    font-size: 26px;
  }

  .footer-depoimento {
    font-size: 16px;
    padding: 0 10px;
  }

  .footer-social a {
    font-size: 24px;
  }

  .footer-copy {
    font-size: 13px;
    padding: 0 10px;
  }


/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
    width: 100%;
    margin-top: 10px;
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
  }

  .header-nav ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .header-nav ul li a {
    text-align: center;
    width: 100%;
  }

  .calendar {
    grid-template-columns: 1fr;
  }

  
}

