* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* corrigido para box-sizing correto */
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #FF66C4;
  
}

.header-icons {
  display: flex;
  gap: 14px;
  margin-top: -50px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #C9E265;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}

.header-button {
  border: 1px solid #C9E265;
  padding: 8px 24px;
  border-radius: 4px;
  color: #000000;
  background-color: transparent;
  transition: background-color 0.8s;
  position: relative;
  top: -30px;
}

.header-button:hover {
  border: 1px solid #C9E265;
  background-color: #C9E265;
  color: #000000;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  width: 300px;
  height: 300px;
  margin-left: 150px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }

  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }

  .header-button {
    display: none;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home:before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(248, 249, 235, 0.7), rgba(255, 228, 245, 0.7)), url("../img/fundo.png");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 30% 0;
  opacity: 0.9;
}

.hero {
  color: #343333;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.hero h1 {
  text-align: center;
  line-height: 100%;
  max-width: 940px;
  font-size: 48px;
  margin-bottom: 150px;
}

.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 34px;
  color: #ffffff;
  background-color: #FF66C4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  margin: 14px 0;
  margin-bottom: 150px;
  position: relative;
  top: -30px;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

@media screen and (max-width: 760px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }

  .hero p {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}

.about {
  background-image: url("../img/bgsobremim.png");
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}

.about-content img {
  max-width: 500px;
  background-color: transparent;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
  text-align: justify;
}

@media screen and (max-width: 760px) {
  .about-content {
    flex-direction: column;
  }
}

.services {
  background-image: url("../img/bgservicos.png");
  color: #515050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
  color: #000000;
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* colunas responsivas */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  justify-items: center;
}

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

.service img {
  width: 100%;
  max-width: 400px; /* máximo 400px */
  height: 400px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}



/* ATUALIZADO: Estilo da seção MASSAGENS em grade */
.massages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px 34px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  justify-items: center;
}

.massage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.massage img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: none;
}

.massage-info {
  padding: 0;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #515050;
}

/* RESPONSIVO */
@media screen and (max-width: 1024px) {
  .massages,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .massages,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.maps {
   background-image: url("../img/bgsobremim.png");
  color: #000000;
  text-align: center;
  padding-left: 60px; /* Aumenta o espaço da margem esquerda */
  padding-right: 40px; /* Mantém uma boa margem direita também */
    overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.maps h2 {
  padding: 38px 0;
  text-align: center;
}

.map-container {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 24px auto 40px auto;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  flex-wrap: wrap; /* permite quebrar linha */
}

/* iframe e endereço ficam lado a lado em desktop */
.map-container iframe {
  width: 400px;
  height: 350px;
  border: 0;
  flex-shrink: 0;
}

.map-address {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  flex-grow: 1;
  margin-bottom: 200px;
}

/* Em telas pequenas, empilha o conteúdo */
@media screen and (max-width: 768px) {
  .map-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .map-container iframe {
    width: 100%;
    max-width: 500px;
    height: 300px;
  }

  .map-address {
    max-width: 90%;
    width: 100%;
    margin-top: 0;
  }
}


.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
}


.footer .logo-footer {
  width: 200px;
  height: 200px;
}

.footer .p {
  color: #FF66C4;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #FF66C4;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}

.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}

.btn-whatsapp img:hover {
  transform: scale(1.15);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  background-color: #eff0de;
  color: #515050;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #fff9f0;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

jpg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  footer p {
    text-align: center;
  }
}
