/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CORREÇÃO DEFINITIVA PARA TODOS OS DISPOSITIVOS */
html, body {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #4a4a4a;
  background: linear-gradient(135deg, #fdf2f8 0%, #f472b6 0.1%, #fce7f3 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilitários */
.gradient-text {
  background: linear-gradient(135deg, #be185d, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #fbcfe8;
  box-shadow: 0 2px 20px rgba(244, 114, 182, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f472b6, #ec4899, #db2777);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(244, 114, 182, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #be185d, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 12px;
  color: #ec4899;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #be185d;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #f472b6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f472b6;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #db2777, #ec4899);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(219, 39, 119, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #ec4899;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid #fbcfe8;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  text-decoration: none;
  color: #be185d;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #fbcfe8;
}

.mobile-cta {
  margin-top: 16px;
  justify-content: center;
}


/* ======================================================= */
/* =====            HERO SECTION (AJUSTADA)          ===== */
/* ======================================================= */

.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 207, 232, 0.3) 0%,
    rgba(244, 114, 182, 0.1) 50%,
    rgba(252, 231, 243, 0.4) 100%
  );
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* Aumentei o blur para um efeito mais suave */
  animation: float 8s ease-in-out infinite;
}

.decoration-1 {
  width: 250px;
  height: 250px;
  background: rgba(251, 207, 232, 0.4);
  top: 15%;
  left: 5%;
}

.decoration-2 {
  width: 350px;
  height: 350px;
  background: rgba(244, 114, 182, 0.2);
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.05);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fce7f3, #fdf2f8);
  color: #be185d;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f9a8d4;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #be185d; /* Cor sólida para a primeira parte do texto */
}

.hero-description {
  font-size: 18px;
  color: #be185d; /* Tom mais escuro para melhor leitura */
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px; /* Limita a largura do texto */
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #db2777, #ec4899);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(219, 39, 119, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(219, 39, 119, 0.4);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: #be185d;
  border: 1px solid #f9a8d4;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-hero-secondary:hover {
  background: #fce7f3;
  transform: translateY(-2px);
  border-color: #f472b6;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #be185d;
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f472b6;
}

.hero-image {
  animation: slideInRight 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* Limita o tamanho máximo */
  aspect-ratio: 1 / 1; /* Mantém proporção quadrada */
  background: #f8fafc; /* Cor de fundo para o placeholder */
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(45deg, rgba(251, 207, 232, 0.8), rgba(244, 114, 182, 0.6));
  border-radius: 58px; /* Maior que o container */
  filter: blur(30px);
  z-index: -1;
  opacity: 0.8;
}

.image-container::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23d1d5db' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='feather feather-image'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21 15 16 10 5 21'%3E%3C/polyline%3E%3C/svg%3E");
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%; /* Ajuste principal aqui */
  object-fit: cover;
  border-radius: 48px;
  position: relative; /* Para ficar sobre o placeholder */
  z-index: 1;
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.2);
}

.sparkle-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 72px; /* Ajustado */
  height: 72px; /* Ajustado */
  background: linear-gradient(135deg, #f472b6, #db2777);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px; /* Ajustado */
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.4);
  animation: pulse 2s ease-in-out 0.5s infinite;
  z-index: 2;
}


/* ======================================================= */
/* =====        DEMAIS SEÇÕES (SEM ALTERAÇÃO)        ===== */
/* ======================================================= */

/* Treatments Section */
.treatments {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #be185d, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  color: #be185d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.treatment-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(244, 114, 182, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.treatment-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.3);
}

.treatment-card:hover .treatment-icon {
  transform: scale(1.1);
}

.gradient-1 { background: linear-gradient(135deg,#f9a8d4, #f472b6); }
.gradient-2 { background: linear-gradient(135deg,#f9a8d4, #f472b6); }
.gradient-3 { background: linear-gradient(135deg,#f9a8d4, #f472b6); }
.gradient-4 { background: linear-gradient(135deg, #f9a8d4, #f472b6); }
.gradient-5 { background: linear-gradient(135deg,#f9a8d4, #f472b6); }
.gradient-6 { background: linear-gradient(135deg,#f9a8d4, #f472b6); }

.treatment-title {
  font-size: 20px;
  font-weight: 700;
  color: #be185d;
  margin-bottom: 16px;
}

.treatment-description {
  color: #ec4899;
  line-height: 1.6;
  margin-bottom: 24px;
}

.treatment-price {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #db2777, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.btn-treatment {
  width: 100%;
  background: linear-gradient(135deg, #db2777, #ec4899);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.3);
}

.btn-treatment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(219, 39, 119, 0.4);
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #fce7f3 0%, #f472b6 0.1%, #fbcfe8 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  animation: slideInLeft 1s ease-out;
}

.about-description {
  margin-bottom: 32px;
}

.about-description p {
  color: #be185d;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #db2777, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #ec4899;
  font-weight: 500;
}

.about-image {
  animation: slideInRight 1s ease-out;
}

.about-image .image-container {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 48px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.3);
}

.rating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(244, 114, 182, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-badge .stars {
  color: #f472b6;
}

.rating-badge span {
  font-size: 14px;
  font-weight: 500;
  color: #be185d;
}

/* Results Section */
.results {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.result-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.5s ease;
  border: 1px solid rgba(244, 114, 182, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.result-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.2);
}

.result-header {
  text-align: center;
  margin-bottom: 24px;
}

.result-title {
  font-size: 18px;
  font-weight: 700;
  color: #be185d;
  margin-bottom: 8px;
}

.result-duration {
  color: #ec4899;
  font-size: 14px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.before,
.after {
  text-align: center;
}

.label {
  font-size: 14px;
  font-weight: 600;
  color: #ec4899;
  margin-bottom: 12px;
}

.before img,
.after img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.before img:hover,
.after img:hover {
  transform: scale(1.05);
}

.after {
  position: relative;
}

.new-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(244, 114, 182, 0.9);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #fce7f3 0%, #f472b6 0.1%, #fbcfe8 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s ease;
  border: 1px solid rgba(244, 114, 182, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(244, 114, 182, 0.2);
}

.testimonial-header {
  margin-bottom: 16px;
}

.testimonial-header .stars {
  color: #f472b6;
  font-size: 20px;
}

.testimonial-text {
  color: #be185d;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fbcfe8;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: #be185d;
  font-size: 14px;
  margin-bottom: 4px;
}

.author-treatment {
  font-size: 12px;
  color: #ec4899;
  margin-bottom: 2px;
}

.author-location {
  font-size: 12px;
  color: #f43f5e;
}

/* Final CTA Section */
.final-cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #db2777, #ec4899, #be185d);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-decorations .decoration-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  top: 10%;
  left: 10%;
}

.cta-decorations .decoration-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  bottom: 10%;
  right: 10%;
  animation-delay: 4s;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: white;
  color: #be185d;
  border: none;
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: pulse 2s ease-in-out infinite;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #be185d, #9d174d);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #be185d, #9d174d);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.footer-logo .logo-subtitle {
  color: #fbcfe8;
}

.footer-description {
  color: #fbcfe8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbcfe8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(244, 114, 182, 0.3);
  color: white;
  transform: translateY(-2px);
}

.footer-title {
  color: white;
}

.contact-info,
.schedule,
.certifications {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item,
.schedule-item,
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fbcfe8;
  font-size: 14px;
}

.contact-item a {
  color: #fbcfe8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
}

.contact-item i,
.cert-item i {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.schedule-item {
  justify-content: space-between;
}

.cert-item i {
  color: #f9a8d4;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 114, 182, 0.3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.copyright {
  color: #f9a8d4;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #f9a8d4;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f472b6;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
}

.whatsapp-sonar {
  position: absolute;
  inset: 0;
  background: #25d366;
  border-radius: 50%;
  animation: sonar 1.5s ease-out infinite;
}

@keyframes sonar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.whatsapp-btn {
  position: relative;
  width: 64px;
  height: 64px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #db2777, #ec4899);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(219, 39, 119, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(219, 39, 119, 0.4);
}

/* ======================================================= */
/* =====            DESIGN RESPONSIVO                  ===== */
/* ======================================================= */

@media (max-width: 992px) { /* Ponto de quebra ajustado para melhor transição */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    order: 2; /* Texto fica abaixo da imagem no mobile */
  }

  .hero-image {
    order: 1; /* Imagem fica acima do texto no mobile */
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons, .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }
  
  .nav, .btn-primary {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem); 
  }

  .hero-stats {
    flex-direction: column; 
    gap: 16px; 
    align-items: center;
  }

  .about-content,
  .treatments-grid,
  .results-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .rating-badge {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    display: inline-flex;
    margin-top: 24px;
    margin-bottom: -16px;
  }

  .about-content, .stats-grid {
    gap: 40px; 
    text-align: center;
  }

  .stats-grid {
    gap: 16px;
  }
  
  .cta-buttons, .cta-features, .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }

  .back-to-top {
    bottom: 24px;
    left: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .treatments,
  .about,
  .results,
  .testimonials,
  .final-cta {
    padding: 60px 0;
  }

  .footer {
    padding: 60px 0 20px;
  }

  .treatment-card,
  .testimonial-card,
  .result-card {
    padding: 24px;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-image img {
    height: auto;
    max-height: 450px;
  }
}