/* =========================================
   Ana Moreira Esthetics - Stylesheet
   ========================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Roboto', sans-serif;
  color: #3d3d3d;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: capitalize;
}

/* --- Primary Button: exact pink rose gradient + shimmer --- */
.btn-primary {
  background: linear-gradient(135deg, #e8b4b4 0%, #d4868a 40%, #e8b4b4 70%, #d4868a 100%);
  color: #4a2c2c;
  box-shadow: 0 3px 12px rgba(200, 130, 130, 0.35);
}

/* Shimmer overlay element */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  animation: btn-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%   { left: -100%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 130, 130, 0.5);
}

.btn-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.85;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #fdf5f3; /* Fundo sólido elegante à esquerda */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url('images/easy-bg-1771986863035-scaled.webp');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 60%; /* Ocupa apenas o lado esquerdo no desktop */
  padding: 60px 40px 60px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-content {
  max-width: 520px;
  animation: fadeInUp 0.9s ease forwards;
}

.hero-logo {
  margin-bottom: 28px;
}

.logo-img {
  width: 200px;
  max-width: 100%;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 500;
  color: #2c2020;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4a3838;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* =========================================
   HERO FORM (lado direito do hero)
   ========================================= */
.hero-inner {
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.hero-content {
  flex: 0 0 45%;
  max-width: 480px;
}

.hero-form-col {
  flex: 0 0 48%;
  max-width: 500px;
  animation: fadeInRight 0.9s ease 0.2s both;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(160, 100, 100, 0.18), 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8b4b4, #d4868a, #e8b4b4);
  background-size: 200%;
  animation: gradient-shift 3s ease infinite;
}

.hero-form-header {
  text-align: center;
  margin-bottom: 22px;
}

.hero-form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f9ece9, #f3ddd8);
  color: #9e6a6a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(196,160,160,0.3);
}

.hero-form-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #2c2020;
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-form-header p {
  font-size: 12px;
  color: #9e8080;
}

/* =========================================
   EXPERIENCE SECTION
   ========================================= */
.experience-section {
  padding: 90px 0;
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  animation: fadeInRight 0.8s ease forwards;
}

.exp-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.exp-img:hover {
  transform: scale(1.02);
}

.experience-text {
  animation: fadeInLeft 0.8s ease 0.2s forwards;
}

.section-title {
  font-size: clamp(24px, 3vw, 38px);
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 600;
}

.experience-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ---------- Check List ---------- */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.check-icon {
  width: 16px;
  height: 16px;
  fill: #c4a0a0;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================
   RESULTS SECTION
   ========================================= */
.results-section {
  padding: 80px 0;
  background: #fafafa;
}

.results-title {
  font-size: clamp(22px, 3vw, 34px);
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.results-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.results-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.results-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.results-slide.active {
  display: block;
}

.result-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
  background: #c4a0a0;
  border-color: #c4a0a0;
}

.carousel-btn:hover svg {
  fill: #fff;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: #555;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #c4a0a0;
}
/* =========================================
   TREATMENTS SECTION
   ========================================= */
.treatments-section {
  padding: 90px 0;
  background: #a98276; /* Fundo rosa-terroso igual à imagem */
}

.treatments-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas elegantes no desktop */
  gap: 30px;
  margin-bottom: 48px;
}

/* Card e Animação de Rolagem */
.treatment-card {
  background: #fdf1ee; /* Fundo rosa-creme suave igual à imagem */
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.3s ease;
}

.treatment-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.treatment-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px; /* Cantos arredondados na imagem idênticos */
}

.treatment-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #2b3a4a; /* Tom azul-slate/charcoal escuro idêntico */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.treatment-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
}

.treatments-cta {
  display: flex;
  justify-content: center;
}
/* =========================================
   DIFFERENTIALS SECTION
   ========================================= */
.differentials-section {
  padding: 90px 0;
  background: #fff;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.differentials-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 600px;
}

.differentials-label {
  font-size: 13px;
  color: #c4a0a0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.differentials-title {
  font-size: clamp(26px, 3.5vw, 42px);
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 600;
}

.differentials-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  padding: 90px 0;
  background: #fdf8f6;
}

.testimonials-title {
  font-size: clamp(22px, 3vw, 34px);
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.stars {
  color: #c4a0a0;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  flex: 1;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c4a0a0;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #2c2c2c;
  font-weight: 600;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  padding: 80px 0;
  background: #a98276; /* Tom terroso rosa-marrom idêntico */
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 32px;
}

.about-image-col {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 3.2 / 4;
  object-fit: cover;
  object-position: center top; /* Evita que a cabeça seja cortada no topo */
  border-radius: 80px 10px 80px 10px; /* Corte assimétrico idêntico */
  border: 3px solid #ffffff; /* Borda branca idêntica */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.about-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about-label {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: #ffffff; /* Texto branco */
  margin-bottom: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-quote {
  border-left: none; /* remove borda anterior */
  padding-left: 0;
  text-align: center;
}

.about-quote p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95); /* Texto branco limpo */
  line-height: 1.8;
  font-style: normal; /* Sem itálico */
  font-weight: 400;
  margin-bottom: 0;
}

.about-quote strong {
  color: #ffffff;
  font-weight: 700;
}

/* =========================================
   LEAD FORM SECTION
   ========================================= */
.lead-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f9ece9 0%, #f3ddd8 40%, #fdf6f4 100%);
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,175,165,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.lead-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,160,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lead-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- Left text side --- */
.lead-text {
  padding-right: 20px;
}

.lead-badge {
  display: inline-block;
  background: rgba(196,160,160,0.18);
  color: #9e6a6a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(196,160,160,0.3);
}

.lead-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 50px);
  color: #2c2020;
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.lead-subtitle {
  font-size: 16px;
  color: #6e5555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.lead-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #5a3a3a;
  font-weight: 500;
}

.lead-benefits svg {
  width: 16px;
  height: 16px;
  fill: #c4a0a0;
  flex-shrink: 0;
}

/* --- Right form card --- */
.lead-form-wrapper {
  position: relative;
}

.lead-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(180, 120, 120, 0.15), 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8b4b4, #d4868a, #e8b4b4);
  background-size: 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0%; }
  50% { background-position: 100%; }
  100% { background-position: 0%; }
}

.lead-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.lead-form-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #2c2020;
  margin-bottom: 6px;
}

.lead-form-header p {
  font-size: 13px;
  color: #9e8080;
}

/* --- Form fields --- */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #6b4a4a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e8f5e9;
  color: #25D366;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.whatsapp-tag svg {
  width: 10px;
  height: 10px;
  fill: #25D366;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 14px;
  height: 14px;
  fill: #c4a0a0;
  pointer-events: none;
  flex-shrink: 0;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #e8d5d0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #3d2a2a;
  background: #fdfaf9;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: #c4a0a0;
  box-shadow: 0 0 0 3px rgba(196,160,160,0.15);
  background: #fff;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #c0a8a8;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 14px;
  width: 10px;
  height: 10px;
  fill: #c4a0a0;
  pointer-events: none;
}

.input-wrapper input.input-error,
.input-wrapper select.input-error {
  border-color: #e57373;
}

.field-error {
  font-size: 11px;
  color: #e57373;
  display: none;
  padding-left: 4px;
}

.field-error.show {
  display: block;
}

.btn-form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-top: 6px;
  border-radius: 10px;
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: #b09090;
  margin-top: 2px;
}

/* --- Success state --- */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 14px;
}

.form-success.show {
  display: flex;
}

.success-icon {
  font-size: 52px;
  animation: bounceIn 0.6s ease;
}

.form-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #2c2020;
}

.form-success p {
  font-size: 15px;
  color: #6e5555;
  line-height: 1.7;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-col {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.contact-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-us-h {
  margin-top: 32px;
}

.hours-list {
  margin-bottom: 32px;
}

.hours-list p {
  font-size: 14px;
  color: #555;
  line-height: 2;
}

.contact-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #fdf1ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg,
.contact-info-icon a svg {
  width: 16px;
  height: 16px;
  fill: #c4a0a0;
}

.contact-info-item strong {
  display: block;
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 13px;
  color: #777;
}

.contact-link {
  color: #2c2c2c;
  transition: color 0.2s;
}
.contact-link:hover {
  color: #c4a0a0;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #1a1a1a;
  padding: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.7;
}

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.footer-text strong {
  color: rgba(255,255,255,0.85);
}

/* =========================================
   FLOATING PHONE BUTTON
   ========================================= */
.floating-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #c4a0a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(196, 160, 160, 0.5);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: transform 0.2s ease;
}

.floating-phone:hover {
  transform: scale(1.1);
}

.floating-phone svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

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

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(196,160,160,0.5); }
  50% { box-shadow: 0 6px 30px rgba(196,160,160,0.8); }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE - TABLET
   ========================================= */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .experience-grid,
  .differentials-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-images {
    order: -1;
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-img {
    height: 340px;
  }
}

/* =========================================
   RESPONSIVE — TABLET (até 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .hero-section::before {
    width: 35%;
  }
  .hero-inner {
    width: 65%;
    gap: 24px;
    padding: 50px 20px;
  }
  .hero-content { flex: 0 0 46%; }
  .hero-form-col { flex: 0 0 52%; }
  .hero-form-card { padding: 20px 16px; }
  .hero-form-header h2 { font-size: 16px; }

  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   RESPONSIVE — MOBILE (até 768px)
   ========================================= */
@media (max-width: 768px) {
  /* ---- Hero: Layout Editorial de Luxo (Foto no Topo + Texto e Form Abaixo) ---- */
  .hero-section {
    background: #fdf5f3;
    background-image: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    position: relative;
  }

  /* Banner Visual da Modelo: 100% limpo, rosto e mãos livres de qualquer texto */
  .hero-section::before {
    content: '';
    display: block;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: clamp(320px, 88vw, 420px);
    background: linear-gradient(to bottom, transparent 70%, #fdf5f3 100%),
                url('images/capa-mobile_01.webp') center top / cover no-repeat;
    order: 1;
    z-index: 1;
  }

  /* Bloco de Conteúdo: Posicionado com espaço próprio e 100% de contraste */
  .hero-inner {
    width: 100%;
    padding: 4px 20px 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
    order: 2;
    align-items: center;
    background: transparent;
  }

  .hero-content {
    flex: none;
    max-width: 100%;
    text-align: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }

  .logo-img { 
    width: 170px; 
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 6.8vw, 34px);
    font-weight: 600;
    color: #2b3a4a; /* Tom slate escuro elegante de alto contraste */
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-shadow: none;
  }

  .hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    margin-bottom: 16px;
    color: #4a3d3d; /* Terroso escuro 100% legível */
    font-weight: 400;
    line-height: 1.65;
    text-shadow: none;
    max-width: 95%;
  }

  /* Esconde o botão duplicado no mobile para foco no form */
  .hero-content .btn {
    display: none;
  }

  /* ---- Formulário posicionado logo abaixo ---- */
  .hero-form-col {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  .hero-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 20px;
    box-shadow: 0 16px 40px rgba(160, 100, 100, 0.12);
    border: 1.5px solid rgba(228, 180, 180, 0.35);
  }

  .hero-form-header h2 { font-size: 16px; }

  /* ---- Formulário hero: campos compactos ---- */
  .hero-form-col .lead-form { gap: 14px; }
  .hero-form-col .input-wrapper input,
  .hero-form-col .input-wrapper select {
    padding: 11px 14px 11px 38px;
    font-size: 13px;
  }

  /* ---- Botões globais ---- */
  .btn-form-submit {
    padding: 14px;
    font-size: 13px;
  }

  /* ---- Experience ---- */
  .experience-section { padding: 60px 0; }
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .experience-images {
    grid-template-columns: repeat(2, 1fr);
    order: -1;
  }

  /* ---- Results ---- */
  .results-section { padding: 60px 0; }
  .results-carousel-wrapper { gap: 10px; }
  .carousel-btn { width: 40px; height: 40px; }
  .result-img { height: 260px; }  /* ---- Treatments ---- */
  .treatments-section { padding: 60px 0; }
  .treatments-grid {
    grid-template-columns: 1fr; /* 1 coluna empilhada idêntica à imagem no mobile */
    gap: 24px;
    margin-bottom: 32px;
  }
  .treatment-card {
    padding: 16px;
    gap: 16px;
  }
  .treatment-img {
    height: 180px;
  }
  .treatment-name {
    font-size: 16px;
  }
  .treatment-desc {
    font-size: 12.5px;
  }
  /* ---- Differentials ---- */
  .differentials-section { padding: 60px 0; }
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ---- Testimonials ---- */
  .testimonials-section { padding: 60px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ---- About ---- */
  .about-section { padding: 60px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-img { max-height: 420px; }

  /* ---- Lead section (form secundário) ---- */
  .lead-section { padding: 60px 0; }
  .lead-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lead-text { padding-right: 0; }
  .lead-title { font-size: clamp(24px, 6vw, 34px); }
  .lead-form-card { padding: 28px 20px; }

  /* ---- Contact ---- */
  .contact-section { padding: 50px 0; }

  /* ---- Footer ---- */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* ---- Floating phone ---- */
  .floating-phone {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-phone svg { width: 20px; height: 20px; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (até 400px)
   ========================================= */
@media (max-width: 400px) {
  .hero-inner { padding: 0 16px 32px; }
  .hero-form-card { padding: 20px 16px; }
}

/* =========================================
   PROCEDURE LANDING PAGES (LP) STYLES
   ========================================= */

/* Top Nav Bar for LPs */
.lp-top-bar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 160, 160, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.lp-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.lp-logo-img {
  height: 42px;
  width: auto;
}

.lp-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-back-home {
  font-size: 12px;
  color: #7a5a5a;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-back-home:hover {
  color: #d4868a;
}

/* LP Hero Banner */
.lp-hero {
  position: relative;
  background: linear-gradient(135deg, #f9ece9 0%, #f3ddd8 50%, #fdf6f4 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 160, 160, 0.2);
  color: #8c5050;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(196, 160, 160, 0.3);
}

.lp-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.2vw, 48px);
  color: #2b3a4a;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
}

.lp-hero-subtitle {
  font-size: 15px;
  color: #4a3838;
  line-height: 1.7;
  margin-bottom: 24px;
}

.lp-hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(160, 100, 100, 0.18);
  border: 4px solid #ffffff;
  margin-bottom: 24px;
}

.lp-hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.lp-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.lp-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3d2c2c;
  font-weight: 500;
}

.lp-benefit-list svg {
  width: 18px;
  height: 18px;
  fill: #d4868a;
  flex-shrink: 0;
  margin-top: 2px;
}

/* LP Overview Section */
.lp-overview-section {
  padding: 90px 0;
  background: #ffffff;
}

.lp-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.lp-section-tag {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4868a;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.lp-section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #2b3a4a;
  font-weight: 600;
  margin-bottom: 12px;
}

.lp-section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lp-feature-card {
  background: #fdf5f3;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(228, 180, 180, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(180, 120, 120, 0.12);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8b4b4 0%, #d4868a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.lp-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.lp-feature-title {
  font-size: 18px;
  color: #2b3a4a;
  margin-bottom: 10px;
  font-weight: 600;
}

.lp-feature-desc {
  font-size: 13.5px;
  color: #5a4848;
  line-height: 1.6;
}

/* Steps Section */
.lp-steps-section {
  padding: 80px 0;
  background: #a98276;
  color: #ffffff;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.lp-step-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.lp-step-number {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #8c5050;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lp-step-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.lp-step-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* FAQ Section */
.lp-faq-section {
  padding: 80px 0;
  background: #fdf8f6;
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 40px auto 0;
}

.lp-faq-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(180, 120, 120, 0.06);
  border: 1px solid #f3ddd8;
}

.lp-faq-question {
  font-size: 16px;
  color: #2b3a4a;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-faq-question span {
  color: #d4868a;
  font-family: 'Cinzel', serif;
}

.lp-faq-answer {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}

/* Responsive LP */
@media (max-width: 900px) {
  .lp-hero-grid,
  .lp-features-grid,
  .lp-steps-grid,
  .lp-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lp-hero {
    padding: 30px 0 50px;
  }

  .lp-top-actions .btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}


/* =========================================
   PERFORMANCE: High-Speed Rendering Optimization
   ========================================= */
.experience-section,
.results-section,
.treatments-section,
.differential-section,
.testimonials-section,
.about-section,
.footer-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}
