* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #0B3C5D;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 60px 20px;
  background: 
    linear-gradient(
      rgba(255, 255, 255, 0.85), 
      rgba(126, 201, 230, 0.85)
    ),
    url("Massagem Coradelli.png") center center / 500px no-repeat; /* Tamanho fixo para não estourar as margens */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  padding: 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0B3C5D;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about, .location {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  border: 2px solid #1FA4D8;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 2px solid #1FA4D8;
  color: #0B3C5D;
  text-decoration: none;
  border-radius: 50px;
}

footer {
  background: #0B3C5D;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.floating-lines::before,
.floating-lines::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  animation: float 10s linear infinite;
}

.floating-lines::after {
  top: 60%;
  animation-duration: 14s;
}

@keyframes float {
  from { transform: translateX(-50%); }
  to { transform: translateX(50%); }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/* Seção de Tratamentos */
.treatments {
  padding: 80px 20px;
  background: #f4fbff;
  text-align: center;
}

.treatments h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #0B3C5D;
}

.seo-helper {
  font-size: 0;
  height: 0;
  overflow: hidden;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: auto;
}

.treatment-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.treatment-card h3 {

  margin-bottom: 20px;
  text-align: center;
  color: #1FA4D8;
}

.treatment-card p {
  margin-bottom: 12px;
}

.treatment-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.btn-treatment {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  background: #1FA4D8;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  align-self: center;
}

.btn-treatment:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(31,164,216,0.4);
}

.location i {
  margin-right: 8px;
  color: var(--primary-color, #2a7f62); /* usa sua cor principal */
}

.location p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.location .contact-links a {
  color: inherit;
  text-decoration: none;
}

.location .contact-links a:hover {
  text-decoration: underline;
}

.phones {
  display: flex;
  gap: 10px;
}

.phones a::after {
  content: " /";
}

.phones a:last-child::after {
  content: "";
}

/* Mobile */
@media (max-width: 600px) {
  .location p {
    flex-direction: column;
  }

  .phones {
    flex-direction: column;
    gap: 6px;
  }

  .phones a::after {
    content: "";
  }
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 999;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.instagram-embed {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.location p {
  justify-content: center;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
}

.social-links a {
  font-size: 2rem;
  color: #0B3C5D;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #1FA4D8;
}
