@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:ital@1&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

header img {
  max-width: 260px;
  height: auto;
}

.hero {
  background-image: url('../images/fundo_floral.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  text-align: center;
  color: #444;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.85);
  padding: 1rem;
  border-radius: 8px;
}

section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #E6B800; /* dourado limonada */
  text-align: center;
}

section p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  line-height: 1.6;
}

.doctor {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .doctor img {
      max-width: 300px;
      border-radius: 8px;
      margin-bottom: 1rem;
    }
    .doctor h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }
    .doctor ul {
      list-style: none;
      padding: 0;
      margin-top: 1rem;
      text-align: left;
    }
    .doctor ul li {
      margin-bottom: 0.5rem;
    }

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.column {
  flex: 1 1 300px;
  background-color: #fdf9ec;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.column h3 {
  color: #E6B800;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.column p {
  font-size: 0.95rem;
  color: #555;
}

footer {
  background-color: #5A9ECF;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

.disease-section {
  text-align: center;
  padding: 4rem 2rem;
}

.disease-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.disease-buttons button {
  background-color: #E6B800;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.disease-buttons button:hover {
  background-color: #d4a600;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.modal-content {
  background: #fefcf7;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  width: 95%;
  max-width: 750px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-family: 'Montserrat', sans-serif;
}

.modal-content h3 {
  font-size: 1.6rem;
  color: #E6B800;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  text-align: center;
}

.modal-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.fechar {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.fechar:hover {
  color: #555;
}

.swiper {
  width: 100%;
  height: 320px;
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}




.contato-section {
  padding: 4rem 2rem;
  text-align: center;
}

.contato-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form input,
.contato-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: vertical;
}

.contato-form button {
  background-color: #E6B800;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contato-form button:hover {
  background-color: #d4a600;
}


.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-color: #25d366;
  border: none;
  border-radius: 16px; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-float:hover {
  background-color: #d4a600;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.whatsapp-float span {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.whatsapp-button {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-color: #25d366;
  border: none;
  border-radius: 16px; /* bordas mais arredondadas mas ainda com formato quadrado */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.whatsapp-button:hover {
  background-color: #1ebc59;
  transform: translateY(-50%) scale(1.05);
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}
