/* Header & Navbar ajustados */

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foto-doutora {
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.info-doutora {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-doutora strong {
  font-size: 2rem;
  font-family: 'Dancing Script', cursive;
  margin: 0;
  color: #4b2e1e;
}

.info-doutora span {
  font-size: 1.2rem;
  margin-top: 0.3rem;
  color: #4b2e1e;
}


/* Container da seção de contato */
#contato {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Título e descrição */
#contato h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #4b2e1e;
}

#contato p {
  text-align: center;
  margin-bottom: 2rem;
  color: #4b2e1e;
}

/* Grade de contato */
.contato-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Formulário */
.contato-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form label {
  font-weight: 500;
  color: #4b2e1e;
}

.contato-form input,
.contato-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  background-color: #fdfdfd;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #9c694d;
  outline: none;
}

.contato-form button {
  background-color: #4b2e1e;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato-form button:hover {
  background-color: #3a2416;
}

/* Box de redes sociais */
.social-box {
  flex: 1 1 280px;
  background-color: #fdf9f6;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  color: #4b2e1e;
}

.social-box h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #4b2e1e;
}

.social-box p {
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  color: #4b2e1e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #a25e2c;
}

/* Mapa responsivo */
.mapa iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 700px) {
  .contato-grid {
    flex-direction: column;
  }

  .mapa iframe {
    height: 250px;
  }
}

/* MENU RESPONSIVO NAVBAR*/

.menu-navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.nav-list li a {
  padding: 0.6rem 1.2rem;
  background-color: #4b2e1e;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-list li a:hover {
  background-color: #7b4d35;
}

.nav-list li a.active {
  background-color: #9c694d;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 0.1rem;
  z-index: 1001;
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    right: 1rem;
    background-color: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    flex-direction: column;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #4b2e1e;
  }
}
