/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #67072c;
  /* fundo principal */
  color: #f5f5f5;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #67072c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.logo {padding: 0px;line-height: 0px;}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffccd5;
}

/* Seções gerais */
main section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  color: #f0e6e6;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  line-height: 30px;
}

.whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Botões */
.btn_whatsapp,
.botao-cta,
button,
a.btn_whatsappFooter {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #ffffff;
  color: #67072c !important;
  padding: 0 10px;
  height: 50px;
  width: 150px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn_whatsapp:hover,
.botao-cta:hover,
button:hover,
a.btn_whatsappFooter:hover {
  background-color: #ffffff7a;
  color: white;
  text-decoration: none !important;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
}

/* Perfil / Hero */
#apresentacao .PerfilBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.subH101 {
  font-size: 2rem;
  font-weight: bold;
}

.subH102 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffccd5;
}

/* Tratamentos */
.textBox_tratamentos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.blockTratamentos {
  background: #710b32;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.blockTratamentos h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.blockTratamentos ul li {
  color: #f0e6e6;
  padding-left: 1rem;
  position: relative;
}

.blockTratamentos ul li::before {
  content: "•";
  color: #ffccd5;
  position: absolute;
  left: 0;
}

/* Resultados */
#resultados {
  text-align: center;
}

#resultados p {
  margin-bottom: 2rem;
}

/* Feedbacks */
#feedbacks ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

#feedbacks li {
  background: #710b32;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
}

/* Contato */
#contato .informacoes-contato {
  margin-top: 2rem;
  text-align: center;
}

#contato a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

#contato a:hover {
  color: #ffccd5;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: #67072c;
  color: #f0e6e6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer nav a {
  color: #f5f5f5;
  margin: 0 0.5rem;
  text-decoration: none;
}

footer nav a:hover {
  color: #ffccd5;
}

/* Responsividade */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .textBox_tratamentos {
    grid-template-columns: 1fr;
  }
}



/* ----------------------MENU--------------------- */
/* Botão hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Menu normal (desktop) */
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Estilo mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #67072c;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  nav ul li a {
    font-size: 1.5rem;
    color: #fff;
  }

  nav.active {
    left: 0;
  }

  /* Animação do X no botão */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}



/* ----------------------FIM MENU--------------------- */

/* ----------------------GOOGLEMAPS--------------------- */
.maps-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.maps-container h3 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.maps-container iframe {
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.maps-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}


.maps-links a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #ffffff;
  color: #67072c !important;
  padding: 0 10px;
  height: 50px;
  width: 180px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.maps-links a:hover {
  background-color: #ffffff7a;
  color: white;
  text-decoration: none !important;
}

.waze-icon {
  width: 20px;
  height: 20px;
}


/* ----------------------FIM GOOGLEMAPS--------------------- */