/* ============================================================
   MARIA MENDES — MASSAGENS DE RELAXAMENTO
   styles.css v2 · Redesign Feminino & Sensorial
   Mobile-first · Glassmorphism · Animações suaves
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. VARIÁVEIS CSS
   ───────────────────────────────────────────────────────────── */
:root {
  /* Paleta base */
  --bg:        #FDF8F5;
  --surface:   #FFFFFF;
  --pink-1:    #F6D7DD;
  --pink-2:    #CFA1A7;
  --text:      #2C2020;
  --gold:      #C9A24A;

  /* Paleta expandida */
  --blush:        #F9E8EC;
  --blush-deep:   #EBBFC7;
  --rose-dark:    #A8737A;
  --cream:        #FDF4EF;
  --champagne:    #F5E6C8;
  --gold-soft:    #E8D4A0;
  --gold-light:   #FAF0D4;
  --text-muted:   #8A6E72;
  --border:       #F0D9DD;
  --border-soft:  rgba(207, 161, 167, 0.25);

  /* Gradientes */
  --grad-hero:     linear-gradient(135deg, #FFF0F3 0%, #FDF4EF 40%, #F9F0E8 100%);
  --grad-blush:    linear-gradient(135deg, #F9E8EC 0%, #F6D7DD 100%);
  --grad-gold:     linear-gradient(135deg, #F5E6C8 0%, #EDD9A3 100%);
  --grad-silk:     linear-gradient(160deg, rgba(255,255,255,0.9) 0%, rgba(249,232,236,0.6) 100%);
  --grad-text:     linear-gradient(135deg, #B8767E 0%, #C9A24A 50%, #CFA1A7 100%);
  --grad-btn:      linear-gradient(135deg, #CFA1A7 0%, #B8767E 100%);
  --grad-btn-gold: linear-gradient(135deg, #D4AA5A 0%, #C9A24A 100%);

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur:   20px;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  /* Tamanhos fluidos — recalibrados para 320px → 1600px */
  --fs-xs:   clamp(0.68rem, 1.9vw,  0.80rem);
  --fs-sm:   clamp(0.83rem, 2.1vw,  0.95rem);
  --fs-base: clamp(0.93rem, 2.3vw,  1.05rem);
  --fs-md:   clamp(1.02rem, 2.6vw,  1.20rem);
  --fs-lg:   clamp(1.20rem, 3.2vw,  1.50rem);
  --fs-xl:   clamp(1.55rem, 4.0vw,  2.20rem);
  --fs-2xl:  clamp(2.00rem, 5.0vw,  3.00rem);
  --fs-3xl:  clamp(2.50rem, 6.5vw,  4.00rem);
  --fs-4xl:  clamp(2.80rem, 7.0vw,  5.00rem);

  /* Espaçamentos */
  --space-xs:  0.4rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;
  --space-3xl: clamp(4.5rem, 9vw, 8rem);

  /* Aliases de tipografia */
  --font-body: var(--font-sans);

  /* Bordas */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   40px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-glow:  0 0 40px rgba(207, 161, 167, 0.2);
  --shadow-soft:  0 2px 16px rgba(176, 100, 110, 0.08);
  --shadow-card:  0 8px 40px rgba(176, 100, 110, 0.12);
  --shadow-float: 0 20px 60px rgba(176, 100, 110, 0.18);
  --shadow-gold:  0 4px 24px rgba(201, 162, 74, 0.25);

  /* Transições */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-silk:   cubic-bezier(0.22, 1, 0.36, 1);
  --dur-xs:  150ms;
  --dur-sm:  280ms;
  --dur-md:  500ms;
  --dur-lg:  800ms;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
  --header-h:      64px;
  --touch-min:     44px;  /* acessibilidade: alvo mínimo de toque */
}

/* ─────────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:       0.01ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size:   var(--fs-base);
  font-weight: 300;
  line-height: 1.75;
  color:       var(--text);
  background:  var(--bg);
  overflow-x:  hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%,   rgba(246,215,221,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(245,230,200,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%,  rgba(253,244,239,0.35) 0%, transparent 70%);
  background-attachment: fixed;
}

img, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }
ul[role="list"],
ol[role="list"] { list-style: none; }

a {
  color: var(--rose-dark);
  text-decoration: none;
  transition: color var(--dur-sm) var(--ease);
}
a:hover { color: var(--gold); }

blockquote { font-style: italic; }

/* Foco */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────────────────────
   3. LAYOUT
   ───────────────────────────────────────────────────────────── */
.container {
  width:     100%;
  max-width: var(--container-max);
  margin:    0 auto;
  padding:   0 var(--container-pad);
}

section {
  padding-top:    clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  position:       relative;
}

/* ─────────────────────────────────────────────────────────────
   4. TIPOGRAFIA
   ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family:  var(--font-serif);
  font-weight:  400;
  line-height:  1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); font-weight: 500; }

/* Gradient text em headings */
.gradient-text {
  background:             var(--grad-text);
  -webkit-background-clip: text;
  background-clip:        text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.italic-accent { font-style: italic; font-weight: 300; }

/* Etiqueta de secção */
.section-eyebrow {
  display:     inline-flex;
  align-items: center;
  gap:         0.5em;
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:       var(--gold);
  margin-bottom: var(--space-sm);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content:    '';
  display:    block;
  width:      1.8rem;
  height:     1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity:    0.7;
}
.section-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-sub {
  font-size:   var(--fs-md);
  color:       var(--text-muted);
  max-width:   50ch;
  line-height: 1.7;
  margin-top:  var(--space-sm);
  font-weight: 300;
}

/* Centrar cabeçalho de secção */
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────────
   5. BOTÕES
   ───────────────────────────────────────────────────────────── */
.btn {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5em;
  padding:         0.78em 1.9em;
  min-height:      var(--touch-min);
  border-radius:   var(--radius-pill);
  font-family:     var(--font-sans);
  font-size:       var(--fs-sm);
  font-weight:     500;
  letter-spacing:  0.04em;
  text-decoration: none;
  border:          1.5px solid transparent;
  cursor:          pointer;
  position:        relative;
  overflow:        hidden;
  white-space:     nowrap;
  transition:
    transform    var(--dur-sm) var(--ease-spring),
    box-shadow   var(--dur-sm) var(--ease),
    background   var(--dur-sm) var(--ease),
    color        var(--dur-sm) var(--ease),
    border-color var(--dur-sm) var(--ease);
}

/* Shimmer ao hover */
.btn::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform:  translateX(-100%);
  transition: transform var(--dur-md) var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover        { transform: translateY(-2px); }
.btn:active       { transform: translateY(0) scale(0.98); }

/* Primário */
.btn-primary {
  background:  var(--grad-btn);
  color:       white;
  box-shadow:  0 4px 20px rgba(184, 118, 126, 0.38);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(184,118,126,0.48); color: white; }

/* Gold */
.btn-gold {
  background: var(--grad-btn-gold);
  color:      white;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 8px 30px rgba(201,162,74,0.42); color: white; }

/* Ghost */
.btn-ghost {
  background:   rgba(255,255,255,0.65);
  color:        var(--rose-dark);
  border-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(246,215,221,0.8); border-color: var(--pink-2); color: var(--text); }

/* Subtil */
.btn-subtle {
  background:   var(--glass-bg);
  color:        var(--rose-dark);
  border-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-subtle:hover {
  background:   var(--grad-btn);
  color:        white;
  border-color: transparent;
  box-shadow:   0 4px 20px rgba(184,118,126,0.3);
}

.btn-large { padding: 0.9em 2.5em; font-size: var(--fs-base); }
.btn-sm    { padding: 0.45em 1.1em; font-size: var(--fs-xs); }
.btn-full  { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   6. HEADER FIXO — GLASS
   ───────────────────────────────────────────────────────────── */
/* Header */
#site-header {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    200;
  height:     var(--header-h);
  background: rgba(253,248,245,0.92);
  backdrop-filter:    saturate(180%) blur(28px);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  border-bottom: 1px solid rgba(207,161,167,0.15);
  transition:
    box-shadow var(--dur-md) var(--ease),
    background var(--dur-md) var(--ease);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(176,100,110,0.08);
  background: rgba(253,248,245,0.97);
}

.header-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          100%;
  gap:             var(--space-md);
}

/* Logo */
.logo {
  display:         flex;
  align-items:     center;
  gap:             0.5em;
  text-decoration: none;
  flex-shrink:     0;
  max-width: 200px;
}

/* Logo: imagem personalizada (src preenchido) ou SVG de reserva */
.logo-svg  { display: block; flex-shrink: 0; }
.logo-img  {
  display:     none;
  max-height:  200px;      /* ← Altura máxima do logotipo */
  width:       auto;
  max-width:   200px;     /* ← Largura máxima do logotipo */
  object-fit:  contain;
}
/* Quando o src estiver preenchido, mostra img e esconde SVG */
.logo-img[src]:not([src=""]) { display: block; }
.logo-img[src]:not([src=""]) ~ .logo-svg { display: none; }
.logo-text {
  font-family:  var(--font-serif);
  font-size:    clamp(1rem, 2.5vw, 1.15rem);
  font-weight:  400;
  color:        var(--text);
  letter-spacing: 0.01em;
}

/* Nav desktop */
#main-nav { display: flex; align-items: center; gap: var(--space-lg); }

#main-nav ul { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.4rem); list-style: none; }

#main-nav ul a {
  font-size:   var(--fs-sm);
  font-weight: 400;
  color:       var(--text-muted);
  position:    relative;
  padding:     0.3em 0;
  letter-spacing: 0.02em;
}
#main-nav ul a::after {
  content:    '';
  position:   absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background:   var(--grad-text);
  border-radius: 2px;
  transition:   width var(--dur-sm) var(--ease-silk);
}
#main-nav ul a:hover { color: var(--rose-dark); }
#main-nav ul a:hover::after,
#main-nav ul a[aria-current]::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display:        none;
  flex-direction: column;
  justify-content: center;
  gap:            5px;
  background:     transparent;
  border:         none;
  cursor:         pointer;
  padding:        0.5rem;
  border-radius:  var(--radius-sm);
}
.hamburger-line {
  display:       block;
  width: 22px; height: 1.5px;
  background:    var(--pink-2);
  border-radius: 2px;
  transition: transform var(--dur-md) var(--ease), opacity var(--dur-md) var(--ease);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   7. HERO — IMERSIVO E SENSORIAL
   ───────────────────────────────────────────────────────────── */
/* Hero */
#hero {
  position:       relative;
  min-height:     100svh;
  min-height:     100dvh;
  display:        flex;
  align-items:    center;
  overflow:       hidden;
  padding-top:    calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(5rem, 10vw, 7rem);
  background:     var(--grad-hero);
}

/* Imagem de fundo do hero */
.hero-bg-img {
  display:    none;
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center;
  z-index:    0;
}
.hero-bg-img[src]:not([src=""]) {
  display: block;
}
/* Véu translúcido sobre a imagem (mantém texto legível) */
.hero-bg-veil {
  display:    none;
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    105deg,
    rgba(255,245,248,0.92) 0%,
    rgba(253,244,239,0.88) 40%,
    rgba(254,248,236,0.78) 70%,
    rgba(253,244,239,0.55) 100%
  );
}
.hero-bg-img[src]:not([src=""]) ~ .hero-bg-veil {
  display: block;
}
/* Quando há imagem de fundo, os blobs ficam mais subtis */
.hero-bg-img[src]:not([src=""]) ~ .hero-blob {
  opacity: 0.35;
}

/* Blobs decorativos animados */
.hero-blob {
  position:      absolute;
  border-radius: 50%;
  filter:        blur(80px);
  pointer-events: none;
  animation:     blobFloat 14s ease-in-out infinite;
  will-change:   transform;
  z-index:       2;
}
.hero-blob-1 {
  width:  clamp(320px, 55vw, 680px);
  height: clamp(320px, 55vw, 680px);
  background: radial-gradient(circle, rgba(246,215,221,0.75), rgba(235,191,199,0.3));
  top: -15%; right: -18%;
  animation-delay: 0s;
}
.hero-blob-2 {
  width:  clamp(200px, 38vw, 440px);
  height: clamp(200px, 38vw, 440px);
  background: radial-gradient(circle, rgba(245,230,200,0.55), rgba(201,162,74,0.15));
  bottom: 5%; left: -10%;
  animation-delay: -5s;
  animation-duration: 18s;
}
.hero-blob-3 {
  width:  clamp(140px, 22vw, 280px);
  height: clamp(140px, 22vw, 280px);
  background: radial-gradient(circle, rgba(249,232,236,0.85), rgba(230,180,190,0.2));
  top: 35%; left: 25%;
  animation-delay: -9s;
  animation-duration: 22s;
}

/* Pétalas flutuantes (geradas por JS) */
.petal {
  position:   absolute;
  pointer-events: none;
  opacity:    0;
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  z-index:  3;
}

.hero-eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            0.6em;
  font-size:      var(--fs-xs);
  font-weight:    500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  var(--space-lg);
  background:     rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding:        0.45em 1.1em;
  border-radius:  var(--radius-pill);
  border:         1px solid rgba(201,162,74,0.3);
}

.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background:    #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  }
  50% { 
    transform: scale(1.3); 
    box-shadow: 0 0 0 8px rgba(34,197,94,0);
  }
}

#hero h1 {
  font-size:      var(--fs-4xl);
  max-width:      13ch;
  line-height:    1.05;
  margin-bottom:  var(--space-lg);
  letter-spacing: -0.025em;
  animation:      heroReveal var(--dur-lg) var(--ease-silk) 0.1s both;
}

.hero-sub {
  font-size:     var(--fs-md);
  color:         var(--text-muted);
  max-width:     40ch;
  line-height:   1.7;
  font-weight:   300;
  margin-bottom: var(--space-xl);
  animation:     heroReveal var(--dur-lg) var(--ease-silk) 0.3s both;
}

.hero-ctas {
  display:       flex;
  flex-wrap:     wrap;
  gap:           var(--space-md);
  margin-bottom: var(--space-xl);
  animation:     heroReveal var(--dur-lg) var(--ease-silk) 0.5s both;
}

/* Benefícios */
.hero-benefits {
  display:   flex;
  flex-wrap: wrap;
  gap:       0.5rem;
  list-style: none;
  animation:  heroReveal var(--dur-lg) var(--ease-silk) 0.65s both;
}
.hero-benefits li {
  display:      flex;
  align-items:  center;
  gap:          0.55em;
  font-size:    var(--fs-xs);
  font-weight:  400;
  color:        var(--text-muted);
  background:   rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:       1px solid rgba(207,161,167,0.3);
  padding:      0.55em 1em;
  border-radius: var(--radius-pill);
}
.hero-benefits li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Widget de respiração */
.breathe-widget {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            var(--space-sm);
  margin-top:     var(--space-2xl);
  padding-top:    var(--space-lg);
  border-top:     1px solid rgba(207,161,167,0.2);
  animation:      heroReveal var(--dur-lg) var(--ease-silk) 0.8s both;
  max-width:      300px;
}

.breathe-ring-outer {
  width: 72px; height: 72px;
  border-radius: 50%;
  background:    linear-gradient(135deg, var(--pink-1), var(--blush-deep));
  display:       flex;
  align-items:   center;
  justify-content: center;
  box-shadow:    0 0 0 0 rgba(207,161,167,0.4), var(--shadow-soft);
  will-change:   transform, box-shadow;
  transition:    box-shadow var(--dur-md) var(--ease);
}

.breathe-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:    linear-gradient(135deg, var(--blush-deep), var(--rose-dark));
  will-change:   transform;
}

.breathe-label {
  font-family:  var(--font-serif);
  font-size:    clamp(1.1rem, 2.5vw, 1.4rem);
  font-style:   italic;
  color:        var(--rose-dark);
  min-height:   1.5em;
  letter-spacing: 0.03em;
}

.breathe-btn {
  font-size:    var(--fs-xs);
  color:        var(--text-muted);
  background:   rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border:       1px solid var(--border);
  padding:      0.4em 1em;
  border-radius: var(--radius-pill);
  cursor:       pointer;
  letter-spacing: 0.03em;
  transition:
    background   var(--dur-sm) var(--ease),
    color        var(--dur-sm) var(--ease),
    border-color var(--dur-sm) var(--ease);
}
.breathe-btn:hover,
.breathe-btn[aria-pressed="true"] {
  background:   var(--blush);
  border-color: var(--pink-2);
  color:        var(--text);
}

/* Imagem hero circular (desktop) */
.hero-visual {
  position:   absolute;
  right:      clamp(1rem, 3vw, 3rem);
  top:        50%;
  transform:  translateY(-50%);
  width:      clamp(160px, 22vw, 280px);
  height:     clamp(160px, 22vw, 280px);
  border-radius: 50%;
  overflow:   hidden;
  border:     2px solid rgba(255,255,255,0.80);
  box-shadow:
    var(--shadow-float),
    0 0 0 10px rgba(246,215,221,0.18),
    0 0 0 20px rgba(246,215,221,0.06);
  animation:  heroReveal var(--dur-lg) var(--ease-silk) 0.2s both;
  z-index:    3;
  display:    none;
}
.hero-visual-inner {
  width:   100%;
  height:  100%;
  background:
    linear-gradient(160deg, rgba(246,215,221,0.45) 0%, rgba(245,230,200,0.3) 100%),
    radial-gradient(ellipse at 40% 40%, rgba(255,255,255,0.85) 0%, rgba(235,191,199,0.6) 100%);
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        relative;
}

/* Hero media: imagem ou vídeo personalizado */
.hero-media {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    none;
}
/* Mostrar imagem quando src estiver preenchido e esconder medalhão */
.hero-media[src]:not([src=""]) { display: block; }
.hero-media[src]:not([src=""]) ~ .hero-medallion { display: none; }
/* Vídeo: visível logo que descomentado no HTML */
video.hero-media { display: block; }
video.hero-media ~ .hero-medallion { display: none; }
.hero-medallion {
  display:   block;
  opacity:   0.95;
  width:     clamp(140px, 58%, 175px);
  height:    auto;
  filter:    drop-shadow(0 6px 24px rgba(184,118,126,0.35)) drop-shadow(0 2px 8px rgba(201,162,74,0.22));
  animation: introLotusBreath 5s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────
   8. DIVISORES DE SECÇÃO (ONDAS SVG)
   ───────────────────────────────────────────────────────────── */
.wave-divider {
  position:    absolute;
  left: 0; right: 0;
  overflow:    hidden;
  line-height: 0;
  pointer-events: none;
}
.wave-divider--top    { top: -1px; }
.wave-divider--bottom { bottom: -1px; }
.wave-divider svg     { display: block; width: 100%; }

/* ─────────────────────────────────────────────────────────────
   9. SECÇÃO — PROCESSO (3 PASSOS)
   ───────────────────────────────────────────────────────────── */
#processo { background: var(--surface); overflow: hidden; }
#processo h2 { margin-bottom: var(--space-xl); }

.steps-list {
  display:    grid;
  grid-template-columns: 1fr;
  gap:        var(--space-lg);
  list-style: none;
  margin-top: var(--space-xl);
  align-items: stretch;
}

.step-card {
  background:    var(--glass-bg);
  backdrop-filter:    blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border:        1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding:       clamp(1.75rem, 4vw, 2.75rem);
  position:      relative;
  overflow:      hidden;
  box-shadow:    var(--shadow-card);
  display:       flex;
  flex-direction: column;
  height:        100%;
  transition:    box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
}
.step-card::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     3px;
  background: var(--grad-text);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity:    0;
  transition: opacity var(--dur-md) var(--ease);
}
.step-card:hover { box-shadow: var(--shadow-float); transform: translateY(-5px); }
.step-card:hover::before { opacity: 1; }

.step-number {
  position:    absolute;
  top: 0.3rem; right: 1rem;
  font-family: var(--font-serif);
  font-size:   clamp(4.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  background:  var(--grad-blush);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color:       transparent;
  pointer-events: none;
  user-select: none;
}
.step-icon { margin-bottom: var(--space-md); }
.step-card h3 { margin-bottom: var(--space-sm); font-size: var(--fs-lg); color: var(--text); }
.step-card p  { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.8; flex-grow: 1; }

/* ─────────────────────────────────────────────────────────────
   10. SECÇÃO — SERVIÇOS (TRATAMENTOS)
   ───────────────────────────────────────────────────────────── */
#servicos { background: var(--cream); position: relative; }

.treatments-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.treatments-cat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  opacity: 0.65;
  padding-bottom: 0.7rem;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.treatments-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}

.treatment-item {
  background:    var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border:        1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding:       clamp(1.35rem, 3vw, 1.8rem);
  display:       flex;
  flex-direction: column;
  gap:           0.7rem;
  position:      relative;
  overflow:      hidden;
  box-shadow:    var(--shadow-soft);
  height:        100%;
  transition:
    box-shadow var(--dur-md) var(--ease),
    transform  var(--dur-md) var(--ease);
}
.treatment-item::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad-blush);
  opacity: 0;
  transition: opacity var(--dur-md) var(--ease);
}
.treatment-item:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.treatment-item:hover::before { opacity: 1; }

.treatment-item--featured {
  background: linear-gradient(145deg, rgba(255,255,255,0.92) 0%, rgba(250,240,212,0.85) 100%);
  border:     1.5px solid rgba(201,162,74,0.38);
  box-shadow: var(--shadow-gold), var(--shadow-soft);
  flex-direction: column;
  gap: 0;
}
.treatment-item--featured::before { background: var(--grad-gold); }
.treatment-item--featured:hover { box-shadow: 0 12px 50px rgba(201,162,74,0.28), var(--shadow-float); }

/* Head Spa editorial layout */
.headspa-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.headspa-content h3 {
  font-family: var(--font-serif);
  font-size:   clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}
.headspa-content > p {
  font-size:  var(--fs-sm);
  color:      var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 46ch;
}

.headspa-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  counter-reset: step;
}
.headspa-steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  color:       var(--text-muted);
  font-weight: 300;
}
.headspa-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-size:   0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color:       rgba(201,162,74,0.7);
  flex-shrink: 0;
  width: 1.4rem;
  text-align: right;
}

.headspa-aside {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            0.75rem;
  padding-top:    var(--space-md);
  border-top:     1px solid rgba(201,162,74,0.2);
  margin-top:     var(--space-md);
}

.headspa-price {
  display:     flex;
  align-items: baseline;
  gap:         0.5rem;
}
.headspa-price-value {
  font-family: var(--font-serif);
  font-size:   clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color:       #8c6e20;
  line-height: 1;
}
.headspa-price-note {
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  color:       var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.btn-headspa {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5em;
  font-family:     var(--font-sans);
  font-size:       var(--fs-xs);
  font-weight:     600;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  color:           #fff;
  background:      var(--grad-btn-gold);
  border:          none;
  border-radius:   var(--radius-pill);
  padding:         0.85em 2em;
  min-height:      var(--touch-min);
  box-shadow:      var(--shadow-gold);
  cursor:          pointer;
  transition:
    box-shadow var(--dur-xs) var(--ease),
    transform  var(--dur-xs) var(--ease),
    filter     var(--dur-xs) var(--ease);
}
.btn-headspa:hover {
  box-shadow: 0 8px 28px rgba(201,162,74,0.45);
  transform:  translateY(-1px);
  filter:     brightness(1.06);
}
.btn-headspa::after { content: '\2192'; font-weight: 400; }

.headspa-tip {
  font-family: var(--font-sans);
  font-size:   0.68rem;
  color:       var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.treatment-badge {
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:       white;
  background:  var(--grad-btn-gold);
  padding:     0.22em 0.85em;
  border-radius: var(--radius-pill);
  width:       fit-content;
  box-shadow:  var(--shadow-gold);
}

.treatment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.treatment-item h3 {
  font-family: var(--font-serif);
  font-size:   var(--fs-md);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  flex: 1;
}

.treatment-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.treatment-prices span {
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  font-weight: 500;
  color:       var(--rose-dark);
  background:  rgba(246,215,221,0.6);
  border:      1px solid rgba(207,161,167,0.28);
  padding:     0.25em 0.7em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.treatment-price--consult {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  background: rgba(255,255,255,0.6);
  border-color: var(--border);
}

.treatment-item > p {
  font-size:  var(--fs-sm);
  color:      var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: auto;
}

.treatment-cta {
  display:     inline-flex;
  align-items: center;
  justify-content: center;
  gap:         0.4em;
  font-family: var(--font-sans);
  font-size:   var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color:       var(--rose-dark);
  background:  rgba(246,215,221,0.45);
  border:      1px solid rgba(207,161,167,0.32);
  border-radius: var(--radius-pill);
  padding:     0.55em 1.2em;
  min-height:  var(--touch-min);
  margin-top:  0.4rem;
  align-self:  flex-start;
  transition:  background var(--dur-xs) var(--ease), border-color var(--dur-xs) var(--ease), color var(--dur-xs) var(--ease);
}
.treatment-cta:hover {
  background:   rgba(246,215,221,0.75);
  border-color: rgba(181,101,112,0.45);
  color:        var(--text);
}
.treatment-cta--gold {
  color:        #8c6e20;
  background:   rgba(245,230,200,0.55);
  border-color: rgba(201,162,74,0.35);
}
.treatment-cta--gold:hover {
  background:   rgba(245,230,200,0.85);
  border-color: var(--gold);
  color:        #5e4c14;
}

/* ─────────────────────────────────────────────────────────────
   11. SECÇÃO — PREÇOS (SPA MENU)
   ───────────────────────────────────────────────────────────── */
#precos { background: var(--surface); }

.spa-menu {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.spa-menu-cat {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  opacity: 0.65;
  padding-bottom: 0.6rem;
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border);
}

.spa-menu-entry {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(240,217,221,0.4);
}
.spa-menu-entry:last-child { border-bottom: none; }

.spa-menu-entry--featured {
  background: rgba(245,230,200,0.22);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  margin: 0.2rem -0.75rem 0;
  border-bottom: none;
}

.spa-menu-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw + 0.6rem, 1.2rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  flex-shrink: 1;
  min-width: 0;
}

.spa-menu-variants {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  margin-top: 0.3rem;
  padding-left: 0.5rem;
}

.spa-menu-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.8rem;
}

.spa-menu-sub {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.spa-menu-dots {
  flex: 1;
  min-width: 0.75rem;
  border-bottom: 1px dotted rgba(181,101,112,0.25);
  align-self: center;
  margin-bottom: 0.12em;
}

.spa-menu-price {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--rose-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.spa-menu-price--consult {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  font-size: var(--fs-xs);
}

.spa-menu-book {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(181,101,112,0.2);
  text-underline-offset: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.15em 0;
  transition: color var(--dur-xs) var(--ease), text-decoration-color var(--dur-xs) var(--ease);
}
.spa-menu-book:hover { color: var(--rose-dark); text-decoration-color: var(--rose-dark); }
.spa-menu-book--gold { color: #8c6e20; }
.spa-menu-book--gold:hover { color: #5e4c14; }

.price-note {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   12. SECÇÃO — TESTEMUNHOS
   ───────────────────────────────────────────────────────────── */
#feedbacks {
  background: linear-gradient(165deg, #3d2a2e 0%, #2a1d20 35%, #1f1518 100%);
  position: relative;
  overflow: hidden;
}
#feedbacks::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(207,161,167,0.12) 0%, transparent 55%);
  pointer-events: none;
  animation: feedbackGlow 8s ease-in-out infinite alternate;
}
#feedbacks::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(201,162,74,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: feedbackGlow 10s ease-in-out infinite alternate-reverse;
}
@keyframes feedbackGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}
/* Override the default section heading colors for dark bg */
#feedbacks .section-eyebrow { 
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2em;
}
#feedbacks h2 { 
  color: #fff;
  text-shadow: 0 2px 30px rgba(207,161,167,0.3);
}
#feedbacks .section-sub {
  color: rgba(255,248,248,0.7);
}

.testimonials-carousel { 
  position: relative; 
  margin-top: var(--space-xl);
  z-index: 1;
}

.carousel-controls {
  display:         flex;
  justify-content: center;
  gap:             var(--space-md);
  margin-bottom:   var(--space-lg);
}

.carousel-btn {
  background:    linear-gradient(145deg, rgba(207,161,167,0.2) 0%, rgba(207,161,167,0.08) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border:        2px solid rgba(207,161,167,0.3);
  border-radius: 50%;
  width: 54px; height: 54px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  cursor:        pointer;
  color:         rgba(255,255,255,0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  transition:
    background var(--dur-md) var(--ease),
    border-color var(--dur-md) var(--ease),
    color var(--dur-md) var(--ease),
    transform  var(--dur-md) var(--ease-spring),
    box-shadow var(--dur-md) var(--ease);
}
.carousel-btn svg { 
  stroke: currentColor; 
  width: 24px;
  height: 24px;
}
.carousel-btn:hover {
  background:   linear-gradient(145deg, rgba(207,161,167,0.4) 0%, rgba(207,161,167,0.2) 100%);
  border-color: rgba(207,161,167,0.7);
  color:        #fff;
  transform:    scale(1.12);
  box-shadow: 0 8px 30px rgba(207,161,167,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.testimonials-track {
  max-width:  780px;
  margin:     0 auto;
  min-height: 280px;
}

.testimonial-card {
  background: linear-gradient(160deg, 
    rgba(255,255,255,0.12) 0%, 
    rgba(255,255,255,0.04) 50%,
    rgba(207,161,167,0.06) 100%);
  backdrop-filter:    blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border:        1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding:       clamp(2rem, 5vw, 3rem);
  box-shadow:    
    0 25px 60px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  display:       flex;
  flex-direction: column;
  gap:           var(--space-md);
  position:      relative;
  overflow:      hidden;
  transition:    box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
}
/* Large decorative quote */
.testimonial-card::before {
  content:     '\201C';
  position:    absolute;
  top:         -1rem; right: 2rem;
  font-family: var(--font-serif);
  font-size:   14rem;
  line-height: 1;
  color:       rgba(207,161,167,0.1);
  pointer-events: none;
  z-index: 0;
}
/* Golden accent bar */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--gold) 0%, 
    rgba(207,161,167,0.8) 50%,
    var(--gold) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.testimonial-card:hover { 
  box-shadow: 
    0 35px 80px rgba(0,0,0,0.45), 
    0 15px 35px rgba(207,161,167,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15); 
  transform: translateY(-8px); 
}

/* Stars at top */
.testimonial-stars { 
  flex-shrink: 0; 
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}
.testimonial-stars svg {
  filter: drop-shadow(0 2px 8px rgba(201,162,74,0.4));
}

.testimonial-card p {
  font-size:   clamp(1rem, 2vw, 1.2rem);
  font-style:  italic;
  font-family: var(--font-serif);
  line-height: 1.9;
  color:       rgba(255,252,252,0.92);
  flex-grow:   1;
  font-weight: 400;
  position:    relative;
  z-index:     1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonial-card footer {
  display:    flex;
  align-items: center;
  gap:        var(--space-md);
  flex-wrap:  wrap;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(207,161,167,0.2);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: var(--fs-base);
  color: #fff;
  letter-spacing: .03em;
  position: relative;
  padding-left: 1rem;
}
.testimonial-card cite::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--gold);
  border-radius: 2px;
}
.testimonial-service {
  font-size:   var(--fs-xs);
  color:       var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,162,74,0.15);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
}
.testimonial-card.carousel-hidden { display: none; }

.carousel-dots {
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             var(--space-xs);
  margin-top:      var(--space-lg);
  position: relative;
  z-index: 1;
}
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background:    rgba(255,255,255,0.2);
  border:        2px solid rgba(207,161,167,0.3);
  cursor:        pointer;
  padding:       0;
  display:       flex;
  align-items:   center;
  justify-content: center;
  position:      relative;
  min-width:     var(--touch-min);
  transition:
    background   var(--dur-md) var(--ease),
    transform    var(--dur-md) var(--ease-spring),
    border-color var(--dur-md) var(--ease),
    box-shadow   var(--dur-md) var(--ease);
}
.carousel-dot:hover {
  background: rgba(207,161,167,0.4);
  border-color: rgba(207,161,167,0.6);
  transform: scale(1.2);
}
.carousel-dot.active {
  background: linear-gradient(135deg, var(--gold) 0%, rgba(207,161,167,0.9) 100%);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(201,162,74,0.5);
}

/* ─────────────────────────────────────────────────────────────
   13. SECÇÃO — AGENDA
   ───────────────────────────────────────────────────────────── */
#agenda {
  background: linear-gradient(145deg, var(--cream) 0%, var(--surface) 100%);
  overflow: hidden;
}

.agenda-form-wrapper {
  background:    rgba(255,255,255,0.85);
  backdrop-filter:    blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border:        1px solid rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  padding:       clamp(1.5rem, 5vw, 2.8rem);
  box-shadow:    var(--shadow-card);
  max-width:     620px;
  margin:        var(--space-xl) auto 0;
}

/* Two-column field rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-wa-note {
  font-size:   var(--fs-xs);
  color:       var(--text-muted);
  text-align:  center;
  margin-top:  0.75rem;
  font-style:  italic;
  font-weight: 300;
}

.form-group {
  display:        flex;
  flex-direction: column;
  gap:            0.45rem;
  margin-bottom:  1.25rem;
}
.form-group:last-child { margin-bottom: 0; }

label { font-size: var(--fs-sm); font-weight: 500; color: var(--text); letter-spacing: 0.01em; }
label .optional { font-weight: 300; font-size: var(--fs-xs); color: var(--text-muted); }

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width:      100%;
  padding:    0.78em 1.1em;
  min-height: var(--touch-min);
  border:     1.5px solid rgba(207,161,167,0.32);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.82);
  color:      var(--text);
  font-size:  var(--fs-base);
  font-weight: 300;
  backdrop-filter: blur(8px);
  transition:
    border-color var(--dur-sm) var(--ease),
    box-shadow   var(--dur-sm) var(--ease),
    background   var(--dur-sm) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  outline:      none;
  border-color: var(--pink-2);
  box-shadow:   0 0 0 3px rgba(207,161,167,0.18), var(--shadow-soft);
  background:   white;
}
input.error, select.error, textarea.error {
  border-color: #C0392B;
  box-shadow:   0 0 0 3px rgba(192,57,43,0.1);
}
textarea { resize: vertical; min-height: 90px; }

.select-wrapper { position: relative; }
.select-wrapper select { padding-right: 2.8em; cursor: pointer; }
.select-arrow {
  position:    absolute;
  right: 0.85rem; top: 50%;
  transform:   translateY(-50%);
  pointer-events: none;
}

input::placeholder,
textarea::placeholder { color: var(--text-muted); font-style: italic; font-weight: 300; opacity: 0.7; }

.field-error  { font-size: var(--fs-xs); color: #C0392B; min-height: 1.2em; display: block; }
.field-hint   { font-size: var(--fs-xs); color: var(--text-muted); font-style: italic; }

label span[aria-hidden="true"] { color: var(--gold); margin-left: 0.1em; }

/* Resumo ao vivo */
.booking-summary {
  background:    linear-gradient(145deg, rgba(246,215,221,0.5) 0%, rgba(245,230,200,0.38) 100%);
  backdrop-filter:    blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border:        1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-lg);
  padding:       clamp(1.25rem, 4vw, 2rem);
  box-shadow:    var(--shadow-soft);
  height:        fit-content;
}
.booking-summary h3 {
  font-size:     var(--fs-md);
  display:       flex;
  align-items:   center;
  gap:           0.5em;
  margin-bottom: var(--space-md);
  color:         var(--text);
  font-weight:   500;
}

.summary-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-md); }

.summary-row {
  display:        flex;
  justify-content: space-between;
  align-items:    baseline;
  gap:            0.5em;
  padding-bottom: var(--space-xs);
  border-bottom:  1px solid rgba(207,161,167,0.2);
}
.summary-row:last-child { border-bottom: none; padding-bottom: 0; }

.summary-row dt {
  font-size:  var(--fs-xs);
  font-weight: 500;
  color:      var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.summary-row dd { font-size: var(--fs-sm); font-weight: 400; color: var(--text); text-align: right; }

.summary-price dd {
  font-family: var(--font-serif);
  font-size:   var(--fs-xl);
  background:  var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.summary-note { font-size: var(--fs-xs); color: var(--text-muted); font-style: italic; line-height: 1.6; }

/* Painel de sucesso */
.booking-success {
  text-align:    center;
  max-width:     480px;
  margin:        var(--space-xl) auto 0;
  padding:       clamp(2rem, 5vw, 3rem);
  background:    rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border:        1px solid rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  box-shadow:    var(--shadow-float);
}
.booking-success[hidden] { display: none; }
.success-icon { display: flex; justify-content: center; margin-bottom: var(--space-md); }
.booking-success h3 { font-size: var(--fs-xl); margin-bottom: var(--space-sm); }
.booking-success p { color: var(--text-muted); margin-bottom: var(--space-lg); font-weight: 300; }

.success-actions {
  display:        flex;
  justify-content: center;
  flex-wrap:      wrap;
  gap:            var(--space-sm);
  margin-bottom:  var(--space-md);
}

.copy-feedback { display: block; font-size: var(--fs-xs); color: var(--gold); min-height: 1.4em; font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   14. SECÇÃO — CONTACTO
   ───────────────────────────────────────────────────────────── */
#contacto { background: var(--surface); }

.contact-layout {
  display:    grid;
  grid-template-columns: 1fr;
  gap:        var(--space-xl);
  margin-top: var(--space-xl);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
address { font-style: normal; display: flex; flex-direction: column; gap: var(--space-md); }

.contact-item {
  display:     flex;
  align-items: flex-start;
  gap:         var(--space-md);
  padding:     var(--space-md);
  background:  var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border:      1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-md);
  box-shadow:  var(--shadow-soft);
  transition:  box-shadow var(--dur-sm) var(--ease), transform var(--dur-sm) var(--ease);
}
.contact-item:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }

.contact-icon {
  flex-shrink:  0;
  width: 44px; height: 44px;
  background:   var(--grad-blush);
  border-radius: 50%;
  display:      flex;
  align-items:  center;
  justify-content: center;
  box-shadow:   var(--shadow-soft);
}
.contact-item strong {
  display:    block;
  font-size:  var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:      var(--text-muted);
  margin-bottom: 0.2em;
}
.contact-item p { font-size: var(--fs-sm); color: var(--text); line-height: 1.65; font-weight: 300; }

.contact-link {
  color:          var(--rose-dark);
  font-weight:    400;
  border-bottom:  1px solid var(--border);
  transition: color var(--dur-sm) var(--ease), border-color var(--dur-sm) var(--ease);
}
.contact-link:hover { color: var(--gold); border-color: var(--gold); }

/* Mapa Google Maps embed */
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow:      hidden;
  border:        1px solid rgba(207,161,167,0.28);
  box-shadow:    var(--shadow-card);
  display:       flex;
  flex-direction: column;
  min-height:    360px;
  background:    var(--surface);
  transition:    box-shadow var(--dur-md) var(--ease);
}
.map-embed-wrap:hover { box-shadow: var(--shadow-float); }
.map-embed-frame {
  flex-grow: 1;
  width:     100%;
  min-height: 280px;
  border:    none;
  display:   block;
  /* Tint suave para harmonizar com o design */
  filter: saturate(0.82) hue-rotate(330deg) brightness(1.04);
}
.map-caption {
  background:  var(--surface);
  padding:     0.72rem 1rem;
  border-top:  1px solid var(--border);
  flex-shrink: 0;
}
.map-link {
  display:     inline-flex;
  align-items: center;
  gap:         0.4em;
  font-size:   var(--fs-xs);
  color:       var(--rose-dark);
  font-weight: 400;
  transition:  color var(--dur-sm) var(--ease);
}
.map-link:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   15. FOOTER — REDESIGN
   ───────────────────────────────────────────────────────────── */
#site-footer {
  background: linear-gradient(165deg, #1E1515 0%, #281A1A 50%, #1A1515 100%);
  color:      rgba(255,255,255,0.6);
  position:   relative;
  overflow:   hidden;
}
/* Ornamentos de fundo */
#site-footer::before,
#site-footer::after {
  content:       '';
  position:      absolute;
  border-radius: 50%;
  pointer-events: none;
}
#site-footer::before {
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(207,161,167,0.07) 0%, transparent 70%);
}
#site-footer::after {
  bottom: -20%; left: -5%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201,162,74,0.05) 0%, transparent 70%);
}

/* Faixa superior com citação */
.footer-top-band {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-top-quote {
  font-family:    var(--font-serif);
  font-size:      clamp(1rem, 2vw, 1.25rem);
  font-weight:    400;
  font-style:     italic;
  letter-spacing: 0.03em;
  background:     linear-gradient(90deg, var(--pink-1) 0%, var(--gold) 60%, var(--pink-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Corpo principal — grid 3 colunas */
.footer-body {
  display:   grid;
  grid-template-columns: 1fr;
  gap:       var(--space-xl);
  padding-top:    clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position:  relative; z-index: 1;
}
/* Divisórias entre colunas em mobile */
.footer-body > .footer-col:not(:first-child) {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .footer-body { grid-template-columns: 1.6fr 1fr 1.3fr; gap: var(--space-2xl, 4rem); }
  .footer-body > .footer-col:not(:first-child) {
    padding-top: 0;
    border-top: none;
  }
}

.footer-col-title {
  font-family:    var(--font-serif);
  font-size:      var(--fs-md);
  font-weight:    400;
  color:          var(--gold);
  margin-bottom:  var(--space-md);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* Coluna 1 — Marca */
.footer-logo-img {
  max-height: 100px;
  width:      auto;
  max-width:  180px;
  object-fit: contain;
  color:#FFF0F3;
  margin-bottom: var(--space-md);
  display:    block;
  filter: brightness(1.1);
}
.footer-desc {
  font-size:   var(--fs-sm);
  font-weight: 300;
  line-height: 1.75;
  color:       rgba(255,255,255,0.42);
  margin-bottom: var(--space-md);
  max-width:   36ch;
}
.footer-wa-btn {
  display:     inline-flex;
  align-items: center;
  gap:         0.5em;
  background:  rgba(37,211,102,0.12);
  border:      1px solid rgba(37,211,102,0.28);
  color:       rgba(255,255,255,0.75);
  font-size:   var(--fs-sm);
  font-weight: 400;
  padding:     0.55em 1.1em;
  border-radius: var(--radius-pill);
  transition:
    background var(--dur-sm) var(--ease),
    color      var(--dur-sm) var(--ease),
    border-color var(--dur-sm) var(--ease);
  text-decoration: none;
}
.footer-wa-btn:hover {
  background:  rgba(37,211,102,0.22);
  color:       #fff;
  border-color: rgba(37,211,102,0.55);
}

/* Coluna 2 — Nav */
.footer-nav-list { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 0.85rem; 
}
.footer-nav-list a {
  font-size:   var(--fs-sm);
  font-weight: 300;
  color:       rgba(255,255,255,0.5);
  transition:  color var(--dur-sm) var(--ease), padding-left var(--dur-sm) var(--ease);
  display:     block;
  padding: 0.2em 0;
}
.footer-nav-list a:hover { color: var(--gold); padding-left: 0.5em; }

/* Coluna 3 — Contacto */
.footer-contact-list {
  list-style: none;
  display:    flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: var(--space-md);
}
.footer-contact-list li {
  display:     flex;
  align-items: flex-start;
  gap:         0.7em;
  font-size:   var(--fs-sm);
  font-weight: 300;
  color:       rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 0.2em; }
.footer-contact-list a {
  color:       rgba(255,255,255,0.6);
  transition:  color var(--dur-sm) var(--ease);
  word-break:  break-word;
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-hours { border-top: 1px solid rgba(255,255,255,0.07); padding-top: var(--space-sm); }
.footer-hours h4 {
  font-size:      var(--fs-xs);
  font-weight:    500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.35);
  margin-bottom:  0.4rem;
}
.footer-hours p { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); line-height: 1.7; }

/* Barra inferior legal */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding:    1.1rem 0;
  position:   relative; z-index: 1;
}
.footer-bottom-inner {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  gap:             0.65rem;
  text-align:      center;
}
@media (min-width: 720px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align:     left;
  }
}
.footer-copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.28); font-weight: 300; }
.footer-policy-links {
  list-style:  none;
  display:     flex;
  flex-wrap:   wrap;
  justify-content: center;
  gap:         0.3em 1.2em;
}
.footer-policy-links a {
  font-size:   var(--fs-xs);
  color:       rgba(255,255,255,0.32);
  font-weight: 300;
  transition:  color var(--dur-sm) var(--ease);
}
.footer-policy-links a:hover { color: var(--pink-1); }

/* Créditos de desenvolvimento */
.footer-credits {
  background: linear-gradient(165deg, #1E1515 0%, #281A1A 50%, #1A1515 100%);
  padding: 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-credits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(207,161,167,0.3) 50%, transparent 100%);
}
.credits-text {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
}
.credits-link {
  color: var(--pink-1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color var(--dur-sm) var(--ease), text-shadow var(--dur-sm) var(--ease);
}
.credits-link:hover {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,162,74,0.5);
}

/* ─────────────────────────────────────────────────────────────
   16. BOTÃO "VOLTAR AO TOPO"
   ───────────────────────────────────────────────────────────── */
.back-to-top {
  position:   fixed;
  bottom: 1.5rem; right: 1.25rem;
  z-index:    50;
  width: 48px; height: 48px;
  border-radius: 50%;
  background:  var(--grad-btn);
  color:       white;
  border:      none;
  cursor:      pointer;
  display:     flex;
  align-items: center;
  justify-content: center;
  box-shadow:  0 4px 20px rgba(184,118,126,0.45);
  transition:
    background var(--dur-sm) var(--ease),
    transform  var(--dur-sm) var(--ease-spring),
    opacity    var(--dur-md) var(--ease);
  opacity:     0;
}
.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top[hidden]       { display: none; }
.back-to-top:hover { background: var(--grad-btn-gold); transform: translateY(-3px) scale(1.08); }

/* ─────────────────────────────────────────────────────────────
   17. ANIMAÇÕES KEYFRAMES
   ───────────────────────────────────────────────────────────── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(22px,-18px) scale(1.04); }
  66%       { transform: translate(-12px, 12px) scale(0.97); }
}

@keyframes petalFall {
  0%   { opacity: 0; transform: translateY(-30px) rotate(0deg) scale(0.6); }
  8%   { opacity: 0.75; }
  88%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(110vh) rotate(400deg) scale(1.1); }
}

@keyframes petalSway {
  0%, 100% { margin-left: 0; }
  25%  { margin-left: 40px; }
  75%  { margin-left: -40px; }
}

@keyframes breatheIn  { from { transform: scale(1); } to { transform: scale(1.55); } }
@keyframes breatheHold { from { transform: scale(1.55); } to { transform: scale(1.55); } }
@keyframes breatheOut { from { transform: scale(1.55); } to { transform: scale(1); } }

@keyframes breatheGlow {
  from { box-shadow: 0 0 0 0 rgba(207,161,167,0.5), var(--shadow-soft); }
  to   { box-shadow: 0 0 0 24px rgba(207,161,167,0), var(--shadow-soft); }
}

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

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

/* Classes de reveal (Intersection Observer) */
.reveal { opacity: 0; }
.reveal.visible { animation: cardReveal 0.65s var(--ease-silk) both; }

/* ─────────────────────────────────────────────────────────────
   18. ESTADOS DA RESPIRAÇÃO
   ───────────────────────────────────────────────────────────── */
.breathe-circle.inhale { animation: breatheIn  4s ease-in-out forwards; }
.breathe-circle.hold   { animation: breatheHold 2s ease-in-out forwards; }
.breathe-circle.exhale { animation: breatheOut 4s ease-in-out forwards; }
.breathe-ring-outer.inhale { animation: breatheGlow 4s ease-in-out infinite; }

/* ─────────────────────────────────────────────────────────────
   19. RESPONSIVE — TELEFÓVEL PEQUENO (≤ 479px)
   Extra móvel: telas muito estreitas (iPhone SE, Galaxy A02)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  :root {
    --header-h: 56px;
    --space-xl: 2.5rem;
  }

  /* Logo maior em mobile */
  .logo-img {
    max-height: 140px !important;
    max-width: 160px !important;
  }
  .logo {
    max-width: 170px;
  }

  #hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); max-width: 100%; }
  .hero-sub { font-size: var(--fs-sm); max-width: 100%; }

  .hero-ctas {
    flex-direction: column;
    align-items:   stretch;
    gap:           var(--space-md);
  }
  .hero-ctas .btn { justify-content: center; }

  .breathe-widget {
    align-items:    center;
    text-align:     center;
    max-width:      100%;
    margin-top:     var(--space-xl);
    padding-top:    var(--space-md);
    border-top:     1px solid rgba(207,161,167,0.25);
  }

  .hero-benefits { justify-content: center; }

  .section-eyebrow { font-size: 0.65rem; letter-spacing: 0.12em; }

  .steps-list { gap: var(--space-sm); }
  .spa-menu { gap: var(--space-sm); }

  .agenda-form-wrapper { padding: 1rem; }
  
  /* Formulário mais compacto em mobile */
  .form-group {
    gap: 0.3rem;
    margin-bottom: 0.9rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  input[type="text"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    padding: 0.6em 0.9em;
    font-size: 0.9rem;
    min-height: 44px;
  }
  textarea {
    min-height: 70px;
  }
  .form-wa-note {
    margin-top: 0.5rem;
    font-size: 0.72rem;
  }

  .success-actions { flex-direction: column; }
  .success-actions .btn { justify-content: center; }

  .back-to-top { bottom: 1rem; right: 0.85rem; width: 44px; height: 44px; }
}

/* ─────────────────────────────────────────────────────────────
   20. RESPONSIVE — MÓVEL (< 640px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 639px) {
  /* Widget de respiração: centrado */
  .breathe-widget {
    align-items: center;
    text-align:  center;
    max-width:   100%;
  }

  /* Mapa em mobile */
  .map-embed-frame { min-height: 240px; }

  /* Hero texto */
  .hero-sub { max-width: 100%; }

  /* Preços spa menu: fundo ligeiramente opaco para separar do bg */
  .spa-menu-entry {
    border-radius: var(--radius-sm);
  }

  /* Testemunhos */
  .testimonials-track { min-height: auto; }

  /* Galeria */
  .gallery-carousel { height: clamp(240px, 60vw, 400px); }
}

/* ─────────────────────────────────────────────────────────────
   21. RESPONSIVE — TABLET (640px – 899px)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .steps-list         { grid-template-columns: repeat(2, 1fr); }
  .treatments-items   { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-wrap: nowrap; }
  .hero-benefits { flex-wrap: nowrap; }

  /* Contact layout 2col from tablet */
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────────────
   22. RESPONSIVE — DESKTOP (900px+)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  :root { --header-h: 70px; }

  /* Nav */
  .nav-toggle { display: none !important; }
  #main-nav   { display: flex !important; }

  /* Hero */
  .hero-visual  { display: none; }
  .hero-content { max-width: 56%; }
  #hero h1      { font-size: clamp(3.2rem, 4.8vw, 5.2rem); }
  .hero-sub     { font-size: var(--fs-md); max-width: 44ch; }

  /* Grelhas */
  .steps-list       { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
  .treatments-items { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
  .spa-menu         { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg) var(--space-xl); }

  /* Head Spa: largura total, layout horizontal */
  .treatment-item--featured {
    grid-column:    1 / -1;
    flex-direction: row;
    align-items:    stretch;
    gap:            var(--space-xl);
    height:         auto;
  }
  .treatment-item--featured .headspa-content {
    border-right:   1px solid rgba(201,162,74,0.22);
    padding-right:  var(--space-xl);
    flex: 1;
  }
  .treatment-item--featured .headspa-aside {
    min-width:      200px;
    flex-shrink:    0;
    justify-content: center;
    padding-top:    0;
    border-top:     none;
    margin-top:     0;
  }

  /* Contacto */
  .contact-layout { grid-template-columns: 1.1fr 0.9fr; align-items: start; }

  /* About: imagem maior no desktop */
  .about-inner { grid-template-columns: 0.85fr 1fr; }
  .about-img   { aspect-ratio: 3 / 4; max-height: none; }

  /* Testemunhos: track mais largo */
  .testimonials-track { max-width: 800px; }
}

/* ─────────────────────────────────────────────────────────────
   23. RESPONSIVE — DESKTOP LARGO (1200px+)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  .hero-content { max-width: 52%; }
  #hero h1      { font-size: clamp(3.8rem, 4.5vw, 5.5rem); }

  /* About: coluna de imagem mais estreita, conteúdo mais largo */
  .about-inner { grid-template-columns: 0.8fr 1fr; gap: clamp(4rem, 8vw, 8rem); }

  /* 4 cards de tratamentos na mesma linha para certas categorias */
  .treatments-items { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────────────────────────
   24. RESPONSIVE — DESKTOP EXTRA LARGO (1440px+)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --container-max: 1340px; }

  section {
    padding-top:    clamp(6rem, 8vw, 9rem);
    padding-bottom: clamp(6rem, 8vw, 9rem);
  }

  #hero h1 { font-size: clamp(4rem, 5.5vw, 5.8rem); }

  .hero-visual {
    width:  min(300px, 22vw);
    height: min(300px, 22vw);
  }
}

/* ─────────────────────────────────────────────────────────────
   25. OVERLAY NAV MÓVEL (< 900px)
   ───────────────────────────────────────────────────────────── */
@media (max-width: 899px) {
  /* Sem menu móvel — apenas logótipo centrado */
  .nav-toggle { display: none !important; }
  #main-nav    { display: none !important; }
  .header-inner { justify-content: center; }

  /* Hero visual escondido em móvel */
  .hero-visual { display: none !important; }

}

@media print {
  #site-header, .back-to-top, .nav-toggle,
  .breathe-widget, .carousel-controls, .carousel-dots,
  .hero-blob, .petal, #intro-screen, #grain-overlay,
  #cursor-glow, #ambient-canvas { display: none !important; }
  body { background: white; color: black; }
  section { page-break-inside: avoid; }
}

/* ─────────────────────────────────────────────────────────────
   EFEITOS RELAXANTES — CAMADA SENSORIAL
   ───────────────────────────────────────────────────────────── */

/* ── ECRÃ DE ENTRADA ── */
#intro-screen {
  position:   fixed;
  inset:      0;
  z-index:    1000;
  display:    flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #FFF5F7 0%, #FDF4EF 60%, #FEF8EC 100%);
  pointer-events: all;
  transition: opacity 1s var(--ease-silk), visibility 1s var(--ease-silk);
}
#intro-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-inner {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            0.75rem;
  position:       relative;
  animation:      introFadeIn 1s var(--ease-silk) both;
}

/* Anéis de respiração ao redor do lotus */
.intro-ring {
  position:     absolute;
  border-radius: 50%;
  border:       1px solid rgba(207,161,167,0.35);
  animation:    introRingExpand 3s ease-out infinite;
  pointer-events: none;
}
.intro-ring-1 { width: 260px; height: 260px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.intro-ring-2 { width: 330px; height: 330px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0.6s; border-color: rgba(201,162,74,0.18); }
.intro-ring-3 { width: 405px; height: 405px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.2s; border-color: rgba(207,161,167,0.1); }

/* Intro logo image (substitui o SVG) */
.intro-logo-wrap {
  position:        relative;
  z-index:         1;
  width:           220px;
  height:          220px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  animation:       introLotusBreath 3s ease-in-out infinite;
}
.intro-logo-img {
  width:          220px;
  height:         220px;
  object-fit:     contain;
}
.intro-wordmark {
  font-family:    var(--font-serif);
  font-size:      1.6rem;
  font-weight:    400;
  color:          var(--text);
  letter-spacing: 0.05em;
  margin-top:     0.5rem;
}
.intro-sub {
  font-size:      var(--fs-xs);
  color:          var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes introFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes introRingExpand {
  0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(0.88); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(1.18); }
}
@keyframes introLotusBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

/* ── TEXTURA GRÃO EDITORIAL ── */
#grain-overlay {
  position:   fixed;
  inset:      0;
  z-index:    9;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity:    0.022;
  animation:  grainDrift 8s steps(3) infinite;
}
@keyframes grainDrift {
  0%   { background-position: 0 0; }
  33%  { background-position: 40px -20px; }
  66%  { background-position: -30px 15px; }
  100% { background-position: 10px -35px; }
}

/* ── CURSOR BRILHANTE ── */
#cursor-glow {
  position:      fixed;
  top:           0; left: 0;
  width:         28px; height: 28px;
  border-radius: 50%;
  pointer-events: none;
  z-index:       9999;
  background:    radial-gradient(circle, rgba(207,161,167,0.55) 0%, rgba(207,161,167,0) 70%);
  transform:     translate(-50%, -50%);
  transition:    width 0.35s var(--ease-silk), height 0.35s var(--ease-silk), opacity 0.35s var(--ease-silk), background 0.35s var(--ease-silk);
  mix-blend-mode: multiply;
  opacity:       0;
  will-change:   transform;
}
#cursor-glow.visible { opacity: 1; }
#cursor-glow.hover {
  width:      60px; height: 60px;
  background: radial-gradient(circle, rgba(201,162,74,0.4) 0%, rgba(201,162,74,0) 70%);
}
@media (hover: none) { #cursor-glow { display: none !important; } }

/* ── CANVAS DE PARTÍCULAS AMBIENTE ── */
#ambient-canvas {
  position:   fixed;
  inset:      0;
  z-index:    8;
  pointer-events: none;
  opacity:    1;
}

/* ── ONDA INFERIOR DO HERO ── */
.hero-wave {
  position:   absolute;
  bottom:     -1px; left: 0; right: 0;
  z-index:    3;
  line-height: 0;
  overflow:   hidden;
}
.hero-wave svg {
  display:    block;
  width:      100%;
  height:     clamp(50px, 7vw, 90px);
  animation:  waveShift 10s ease-in-out infinite alternate;
}
@keyframes waveShift {
  from { transform: translateX(0) scaleX(1); }
  to   { transform: translateX(-2%) scaleX(1.03); }
}

/* ── RIPPLE AO CLICAR ── */
.click-ripple {
  position:      fixed;
  border-radius: 50%;
  background:    radial-gradient(circle, rgba(207,161,167,0.4) 0%, rgba(207,161,167,0) 70%);
  pointer-events: none;
  z-index:       9998;
  transform:     translate(-50%, -50%) scale(0);
  animation:     rippleOut 0.8s var(--ease-silk) forwards;
}
@keyframes rippleOut {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ── BRILHO RESPIRATÓRIO NOS BOTÕES PRIMÁRIOS ── */
.btn-primary {
  animation: btnBreathGlow 4s ease-in-out infinite;
}
@keyframes btnBreathGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,118,126,0.38); }
  50%       { box-shadow: 0 4px 36px rgba(184,118,126,0.65), 0 0 0 6px rgba(207,161,167,0.12); }
}
/* Parar animação ao hover para não conflituar */
.btn-primary:hover { animation: none; }

/* ── AURORA NO HERO ── */
#hero {
  animation: auroraShift 24s ease-in-out infinite;
}
@keyframes auroraShift {
  0%   { background: linear-gradient(135deg, #FFF0F3 0%, #FDF4EF 40%, #F9F0E8 100%); }
  25%  { background: linear-gradient(155deg, #FFF0F8 0%, #F8EFF8 40%, #EDF0FA 100%); }
  50%  { background: linear-gradient(135deg, #FEF8EF 0%, #FFF5F0 40%, #FBF0E8 100%); }
  75%  { background: linear-gradient(115deg, #F8F0FF 0%, #FDE8EF 40%, #FFFAF0 100%); }
  100% { background: linear-gradient(135deg, #FFF0F3 0%, #FDF4EF 40%, #F9F0E8 100%); }
}

/* ── BARRA DE SCROLL PERSONALIZADA ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background:    linear-gradient(180deg, var(--blush-deep), var(--gold));
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--pink-2), var(--gold)); }
* { scrollbar-width: thin; scrollbar-color: var(--pink-2) var(--cream); }

/* ── GLOW SUAVE NAS SECÇÕES INTERIORES ── */
#processo::before, #feedbacks::before {
  content:    '';
  position:   absolute;
  top: 0; left: 50%;
  transform:  translateX(-50%);
  width:      min(600px, 90vw);
  height:     300px;
  background: radial-gradient(ellipse, rgba(246,215,221,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index:    0;
}
#servicos::after, #agenda::after {
  content:    '';
  position:   absolute;
  bottom: 0; right: 0;
  width:      min(400px, 70vw);
  height:     300px;
  background: radial-gradient(ellipse at 100% 100%, rgba(245,230,200,0.28) 0%, transparent 65%);
  pointer-events: none;
  z-index:    0;
}

/* ── REVEAL MAIS SUAVE E LENTO ── */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.visible {
  animation:       cardReveal 0.85s var(--ease-silk) both;
  animation-delay: var(--reveal-delay, 0ms);
}

/* ════════════════════════════════════════════════════════════════
   APRESENTAÇÃO — SOBRE MIM
   ════════════════════════════════════════════════════════════════ */

.about-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  background: #FDFAF7;
  position: relative;
}
/* Spliced color band on right edge */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 42vw);
  height: 100%;
  background: linear-gradient(160deg, rgba(246,215,221,0.22) 0%, rgba(245,230,200,0.12) 100%);
  pointer-events: none;
  z-index: 0;
}
/* Soft radial glow bottom-left */
.about-section::after {
  content: '';
  position: absolute;
  bottom: -5%; left: -5%;
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  background: radial-gradient(ellipse at center, rgba(207,161,167,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: center;
  position: relative; z-index: 1;
}

/* ── Imagem ── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
/* elegant border frame */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(145deg, rgba(207,161,167,0.5) 0%, rgba(201,162,74,0.25) 100%);
  z-index: 0;
  pointer-events: none;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: #FDFAF7;
  z-index: 0;
  pointer-events: none;
}

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 90px rgba(100,50,55,.2), 0 8px 20px rgba(100,50,55,.1);
}

/* decoração: pill offset behind the photo */
.about-img-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 65%;
  height: 50%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(201,162,74,0.2) 0%, rgba(207,161,167,0.15) 100%);
  border: 1px solid rgba(201,162,74,0.18);
  z-index: 0;
  pointer-events: none;
}

/* ── Conteúdo ── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: .6rem 0 1.5rem;
}
.about-heading em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(207,161,167,0.4));
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.about-text {
  font-size: clamp(.92rem, 1.4vw, 1.02rem);
  font-weight: 300;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.about-cta {
  align-self: flex-start;
  margin-top: 1.75rem;
  background: var(--grad-btn);
  color: white;
  box-shadow: 0 6px 28px rgba(184,118,126,0.4);
  animation: btnBreathGlow 4s ease-in-out infinite;
  letter-spacing: .04em;
  padding: .85em 2.2em;
}
.about-cta:hover {
  box-shadow: 0 12px 36px rgba(184,118,126,0.5);
  color: white;
  animation: none;
  transform: translateY(-2px);
}

/* ── Responsive about ── */
@media (max-width: 799px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-img-wrap::before, .about-img-wrap::after { display: none; }
  .about-img {
    aspect-ratio: 4 / 3;
    max-height: 360px;
    width: 100%;
    object-position: center 15%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(100,50,55,.15);
  }
  .about-img-deco {
    bottom: -.75rem;
    right: -.75rem;
    border-radius: var(--radius-lg);
  }
  .about-content { text-align: center; }
  .about-divider { 
    margin-left: auto; 
    margin-right: auto;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--pink-1) 50%, var(--gold) 80%, transparent 100%);
    border-radius: 3px;
  }
  .about-cta { align-self: center; }
}


/* ════════════════════════════════════════════════════════════════
   GALERIA DE FOTOS — CAROUSEL FULL-WIDTH
   ════════════════════════════════════════════════════════════════ */

.photo-gallery {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* remove inline-block gap */
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: clamp(360px, 62vw, 820px);
  overflow: hidden;
  background: #0F0C0C;
  cursor: grab;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  margin: 0 auto;
  max-width: calc(100% - 2rem);
}
.gallery-carousel:active { cursor: grabbing; }

/* — track — */
.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* — individual slides — */
.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.gallery-slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* — photo — */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  line-height: 0;
  border-radius: var(--radius-xl);
}
/* hide broken/empty images */
.gallery-img[src=""],
.gallery-img:not([src]) {
  display: none;
}

/* — placeholder shown when no real image — */
.gallery-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #2a1f1f 0%, #1e1515 100%);
  color: rgba(255,255,255,.35);
  font-family: var(--font-body);
}
.gallery-img[src=""] ~ .gallery-placeholder,
.gallery-img:not([src]) ~ .gallery-placeholder {
  display: flex;
}
.gallery-placeholder p {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.gallery-placeholder small {
  font-size: .72rem;
  font-weight: 300;
  color: rgba(255,255,255,.22);
  text-align: center;
  max-width: 28ch;
  line-height: 1.6;
}
.gallery-placeholder code {
  font-family: monospace;
  background: rgba(255,255,255,.08);
  padding: .1em .4em;
  border-radius: 4px;
  font-size: .9em;
}

/* — dark gradient overlay at the bottom — */
.gallery-carousel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* — vignette sides — */
.gallery-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.35) 0%, transparent 12%, transparent 88%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 2;
}

/* — arrow buttons — */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(10,7,7,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,.8);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: background var(--dur-sm) var(--ease),
              border-color var(--dur-sm) var(--ease),
              color var(--dur-sm) var(--ease),
              box-shadow var(--dur-sm) var(--ease),
              transform .2s var(--ease-spring);
}
.gallery-btn:hover {
  background: rgba(207,161,167,.25);
  border-color: rgba(207,161,167,.55);
  color: #fff;
  box-shadow: 0 6px 28px rgba(0,0,0,.5), 0 0 0 1px rgba(207,161,167,.25);
  transform: translateY(-50%) scale(1.1);
}
.gallery-btn:active { transform: translateY(-50%) scale(0.96); }
.gallery-btn--prev { left: clamp(1rem, 3vw, 2.5rem); }
.gallery-btn--next { right: clamp(1rem, 3vw, 2.5rem); }

/* — bottom UI (counter + dots) — */
.gallery-ui {
  position: absolute;
  bottom: 1.25rem;
  left: 0; right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.gallery-counter {
  font-family: var(--font-serif);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  padding: .3em .9em;
  border-radius: var(--radius-pill);
}
.gallery-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .25s, width .3s, border-radius .3s;
}
.gallery-dot.gallery-dot--active {
  background: rgba(255,255,255,.9);
  width: 26px;
  border-radius: 4px;
  border-color: transparent;
}
.gallery-dot:not(.gallery-dot--active):hover {
  background: rgba(207,161,167,.7);
  transform: scale(1.2);
  border-color: rgba(207,161,167,.4);
}

/* — print: hide gallery decorations — */
@media print {
  .gallery-btn, .gallery-ui { display: none; }
  .photo-gallery { height: auto; }
}

/* ── HOVER MÁGICO NOS CARDS: BRILHO INTERNO ── */
.service-card:hover,
.step-card:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(249,232,236,0.7) 100%);
}
.service-card--featured:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(250,240,212,0.9) 100%);
}
