/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Header */
.topo {
  background-color: #aa4491;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  flex-wrap: wrap;
  height: 100px; /* ou o valor atual desejado */
  overflow: hidden; /* garante que nada "vaze" pra fora */
}

.logo img {
  height: 80px; /* aumente conforme desejar */
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu a:hover {
  color: #fff0f7;
}

.btn-agendar {
  background-color: white;
  color: #c75bac;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-agendar:hover {
  background-color: #fff0f7;
}

/* Hero */
#hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  background-color: #fef0f7;
}

.hero-texto {
  flex: 1;
}

.hero-texto h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-texto p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn-cta {
  background-color: #c75bac;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-cta:hover {
  background-color: #a94791;
}

.hero-imagem img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
}

/* Seções */
section {
  padding: 60px 10%;
  text-align: center;
}

.tratamentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.tratamento-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 280px;
  text-align: left;
}

.tratamento-card h3 {
  margin-bottom: 10px;
  color: #c75bac;
}

.tratamento-card p {
  color: #555;
}

.faq-item {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
}

.faq-item h3 {
  margin-bottom: 5px;
  color: #c75bac;
}

.faq-item p {
  color: #444;
}

/* WhatsApp */
.whatsapp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-flutuante img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-flutuante img:hover {
  transform: scale(1.1);
}

/* Animações */
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.section-trabalho {
  background-color: #aa4491;
  padding: 60px 20px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.container-trabalho {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.imagem-profissional img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}

.texto-trabalho {
  max-width: 600px;
}

.texto-trabalho h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.texto-trabalho ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.texto-trabalho li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.texto-trabalho li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #f3dfc1;
}

.botao-whatsapp {
  background: linear-gradient(to right, #e0a070, #d18b5a);
  padding: 12px 20px;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.botao-whatsapp:hover {
  background: linear-gradient(to right, #cf8754, #bb6f3d);
}


.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  background-image: url(./img/niteroi.jpg);
  background-size: cover;
  background-position: center;
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65); 
  z-index: 1;
  font-weight: bold;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  font-weight: bold;
}

.hero-content h1 {
  font-size: 28px;
  color: #7e5e35;
  margin-bottom: 10px;
  font-weight: bold;
}

.tag {
  background-color: #aa4491;
  color: #fff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero-content ul {
  list-style: none;
  padding: 0;
  color: #7e5e35;
  font-weight: 500;
}

.hero-content li {
  margin-bottom: 8px;
}

.final-text {
  margin-top: 20px;
  font-size: 18px;
  color: #7e5e35;
  font-weight: bold;
}

.whatsapp-button {
  display: inline-block;
  background-color: #aa4491;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.15);
  font-weight: bold;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #b8876d;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}


.especialidades-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fefef9;
}

.titulo-central {
  font-size: 28px;
  color: #7b5e3f;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: center;
}

#especialidades-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.especialidade-box {
  background-color: #fffdf9;
  border: 1px solid #c79a62;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 350px;
  height: 160px;
  padding: 20px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.especialidade-box h3 {
  color: #7c511c;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.especialidade-box p {
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}


.agendar-btn-wrapper {
  margin-top: 40px;
}

.agendar-btn {
  display: inline-block;
  background-color: #e9a57a;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
}

.agendar-btn:hover {
  background-color: #d48a5c;
}

.sobre {
  background-color: #fdf7fc;
  padding: 60px 20px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.imagem {
  flex: 1 1 300px;
  max-width: 400px;
}

.imagem img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.texto {
  flex: 1 1 400px;
  background-color: #aa4491;
  color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
}

.texto h2 {
  margin-top: 0;
  font-size: 28px;
}

.crp {
  font-weight: bold;
  margin-bottom: 20px;
}

.texto p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.texto .destaque {
  font-weight: bold;
  color: #fffbd1;
}

.formacoes {
  background-color: white;
  color: #333;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
}

.formacoes .titulo {
  color: #c19784;
  font-weight: bold;
  margin-bottom: 10px;
}

.formacoes ul {
  padding-left: 20px;
  margin: 0;
  text-align: left;
}

.botao {
  display: inline-block;
  margin-top: 25px;
  background-color: #c19784;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.botao:hover {
  background-color: #a87d6b;
}

.depoimentos {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.depoimentos h2 {
  font-size: 28px;
  color: #a87d6b;
  margin-bottom: 40px;
}

.cards-depoimentos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  border: 1px solid #a87d6b;
  padding: 24px;
  max-width: 320px;
  flex: 1 1 280px;
  text-align: left;
}

.card h3 {
  color: #5d5c3d;
  margin-top: 0;
  font-size: 18px;
}

.card .estrelas {
  color: #f4b400;
  font-size: 18px;
  margin: 8px 0;
}

.card p {
  color: #4d4d4d;
  line-height: 1.5;
  font-size: 15px;
}

.faq-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.faq {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  color: #866840;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid;
}

.faq-question:hover {
  background-color: #f6f6f0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #4a4a4a;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

.faq-item .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}



@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .logo {
    padding: 20px;
  }

  .btn-agendar{
    visibility: collapse;
  }

  .menu ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .container-trabalho {
    flex-direction: column;
  }

  .hero-section,
  #hero {
    padding: 40px 5%;
  }

  .faq-container {
    flex-direction: column;
  }

  .faq-item {
    flex: 1 1 100%;
  }

  .whatsapp-flutuante {
    bottom: 15px;
    right: 15px;
    padding: 10px;
    position: fixed ;
    padding-right: 70px;
  }

  .whatsapp-flutuante img {
    width: 32px;
    height: 32px;
  }
}
