:root {
  --verde-escuro: #3e6e2d;
  --laranja-claro: #d75516;
  --marrom-escuro: #793b2f;
  --fundo-claro: #fdf8f5;
  --fundo-muito-claro: #fefbf8;
  --cinza-claro: #f9f9f9;
  --cinza-medio: #e9e1da;
  --cinza-texto: #555;
  --verde-wpp: #25d366;
  --verde-wpp-hover: #128c4a;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--fundo-claro);
  color: var(--marrom-escuro);
  line-height: 1.6;
  margin: 0;
}

.topo {
  background: var(--verde-escuro);
  color: #fff;
  padding: 8px;
  text-align: center;
  font-size: 14px;
}

.topo a {
  color: #fff;
  text-decoration: underline;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--fundo-muito-claro);
  padding: 10px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: var(--marrom-escuro);
  margin-right: 40px;
}

.logo-img {
  width: 190px;
  height: auto;
}

.menu-list {
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  position: relative;
}

.menu-item a,
.dropbtn {
  display: inline-block;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--laranja-claro);
  cursor: pointer;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
}

.menu-item.active > a {
  color: var(--laranja-claro);
  border-bottom: 2px solid var(--laranja-claro);
}

.menu-item:hover > a,
.menu-item.dropdown:hover > .dropbtn {
  color: var(--verde-escuro);
  border-bottom: 2px solid var(--verde-escuro);
}

.menu-item.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f5f0ec;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 150px;
  list-style: none;
  z-index: 1000;
}

.menu-item .dropdown-content li a {
  display: block;
  padding: 8px 20px;
  color: var(--laranja-claro);
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu-item .dropdown-content li a:hover {
  background-color: #e0d9d0;
}

.menu-item.dropdown:hover .dropdown-content {
  display: block;
}

.btn-agendar {
  background-color: var(--verde-escuro);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-agendar:hover {
  background-color: var(--laranja-claro);
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/fundobg1.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-texto {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.hero-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-texto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-contato {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-contato:hover {
  background-color: #fff;
  color: var(--verde-escuro);
}

.servicos {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--cinza-claro);
  color: #333;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: var(--verde-escuro);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-item {
  cursor: pointer;
  height: 320px;
  perspective: 1000px;
  background: transparent;
  box-shadow: none;
}

.card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

.service-item:hover .card {
  transform: rotateY(180deg);
}

.icon-cardes img,
.icon-banho img {
  width: 100px;
  height: auto;
  margin-top: 20px;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  background: #fff;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-front .icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--laranja-claro);
}

.card-front h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--laranja-claro);
  font-weight: 600;
}

.card-front p {
  font-size: 1rem;
  color: var(--cinza-texto);
}

.card-back {
  transform: rotateY(180deg);
  background-color: var(--cinza-claro);
  overflow: hidden;
  padding: 0;
}

.card-back img {
  width: 80%;
  height: 60%;
  border-radius: 12px;
  object-fit: cover;
  object-position: 11% center;
}

.whatsapp-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebd5a;
}

.menu-map {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.map-menu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 300px;
  max-width: 300px;
}

.mapa-container {
  flex: 1 1 600px;
  max-width: 600px;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.endereco,
.telefone-card {
  background: var(--fundo-muito-claro);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  transition: box-shadow 0.3s ease;
}

.endereco:hover,
.telefone-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sub-cards {
  background: var(--verde-escuro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.sub-cards svg,
.sub-cards .icon {
  width: 30px;
  height: 30px;
  color: #fff;
  stroke: currentColor;
}

.endereco p,
.telefone-card p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}

.btn-wpp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 64px;
  height: 64px;
  background-color: var(--verde-wpp);
  border-radius: 50%;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.btn-wpp:hover {
  background-color: var(--verde-wpp-hover);
  box-shadow: 0 10px 20px rgba(18, 140, 74, 0.6);
}

.btn-wpp img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #fff;
}

.sobre-texto {
  flex: 1 1 300px;
  max-width: 400px;
}

.sobre-texto .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--marrom-escuro);
}

.sobre-texto .highlight {
  font-size: 1.25rem;
  font-style: italic;
  color: #6a5d4d;
  margin-bottom: 25px;
  line-height: 1.6;
}

.sobre-texto .info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.sobre-texto strong {
  color: var(--verde-escuro);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--verde-escuro);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.whatsapp-link:hover {
  color: var(--laranja-claro);
  border-color: var(--laranja-claro);
}

.sobre-imagem-wrapper {
  flex: 1;
  max-width: 540px;
  height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sobre-imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: filter 0.3s ease;
}

.sobre-imagem-wrapper:hover .sobre-imagem {
  filter: blur(1.5px);
}

.imagem-desfoque {
  pointer-events: none;
  position: absolute;
  inset: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.sobre-imagem-wrapper:hover .imagem-desfoque {
  opacity: 1;
}

.footer {
  background-color: var(--cinza-medio);
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-logo-box {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.footer-logo {
  max-width: 140px;
  height: auto;
}

.footer-title {
  color: var(--laranja-claro);
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  color: var(--verde-escuro);
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #4caf50;
}

.footer-section {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  color: var(--laranja-claro);
  margin: 0 0 10px 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none; /* Remove as bolinhas */
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--verde-escuro);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--verde-escuro);
}

.footer-contact {
  color: var(--verde-escuro);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.footer-contact i {
  color: #25d366;
  font-size: 1.3rem;
}
