/* ============================================================
   FLOVITA — PREMIUM NAIL SALON
   style.css
   ============================================================ */

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

:root {
  /* ---- Nova Paleta Flovita ---- */
  /* Verde meia-noite  → fundos         */
  /* Magenta           → acento primário */
  /* Azul Egípcio      → acento secundário */
  /* Cinza Cadete      → texto secundário  */
  /* Rosa Chá          → destaques suaves  */

  --bg:        #001920;
  --bg2:       #002630;
  --bg3:       #003340;
  --rose:      #820940;          /* Magenta             */
  --rose-lt:   #b0124f;          /* Magenta claro        */
  --gold:      #4a6fd4;          /* Azul Egípcio suave   */
  --gold-lt:   #8fa5e8;          /* Azul Egípcio claro   */
  --cream:     #f4c2c2;          /* Rosa Chá             */
  --white:     #ffffff;
  --text:      #91a3b0;          /* Cinza Cadete         */
  --text-lt:   #c0cdd3;          /* Cinza Cadete claro   */
  --border:    rgba(130,9,64,.20);
  --border2:   rgba(74,111,212,.18);
  --shadow:    0 20px 60px rgba(0,0,0,.6);
  --font-s:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Jost', sans-serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(.0,0,.2,1);
  --ease-in:   cubic-bezier(.4,0,1,1);
  --r:         .2s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-lt);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { border: none; background: none; cursor: none; font-family: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

/* ---------- SELECTION ---------- */
::selection { background: var(--rose); color: #fff; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease);
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 30px; height: 30px;
  border: 1px solid rgba(130,9,64,.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease), width .3s var(--ease),
              height .3s var(--ease), opacity .3s var(--ease);
}
.cursor.hovered { width: 14px; height: 14px; background: var(--gold); }
.cursor-follower.hovered { width: 50px; height: 50px; opacity: .4; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-s);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--cream);
  display: flex;
}
.loader-logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn .6s var(--ease) forwards;
}
.loader-logo span:nth-child(1) { animation-delay: .1s; }
.loader-logo span:nth-child(2) { animation-delay: .18s; }
.loader-logo span:nth-child(3) { animation-delay: .26s; }
.loader-logo span:nth-child(4) { animation-delay: .34s; }
.loader-logo span:nth-child(5) { animation-delay: .42s; }
.loader-logo span:nth-child(6) { animation-delay: .5s; }
.loader-logo span:nth-child(7) { animation-delay: .58s; }

@keyframes letterIn {
  to { opacity: 1; transform: none; }
}

.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  animation: lineGrow 1.2s var(--ease) .8s forwards;
}
@keyframes lineGrow {
  to { width: 200px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0;
  transition: background .4s var(--ease), padding .4s var(--ease),
              backdrop-filter .4s var(--ease);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(0,25,32,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  width: 90%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}

.nav-logo {
  font-family: var(--font-s);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--cream);
  margin-right: auto;
  transition: color var(--r);
}
.nav-logo:hover { color: var(--gold-lt); }
.logo-f { color: var(--rose); }

.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--r);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--rose);
  color: var(--cream);
  transition: background var(--r), color var(--r);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--rose); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(0,8,12,.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.nav-mobile.open { max-height: 400px; padding: 20px 0 30px; }
.nav-mobile ul { width: 90%; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a { display: block; padding: 14px 0; font-size: .95rem; letter-spacing: .14em; font-weight: 500; color: var(--cream); border-bottom: 1px solid rgba(244,194,194,.15); text-transform: uppercase; }
.nav-mobile .mob-cta { margin-top: 12px; text-align: center; background: var(--rose); color: white; padding: 14px; border-bottom: none; letter-spacing: .2em; font-size: .8rem; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,25,32,.60) 0%,
    rgba(0,38,48,.50) 50%,
    rgba(16,52,166,.35) 100%
  );
}

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

.hero-content {
  position: relative; z-index: 2;
  width: 90%; max-width: 1200px; margin: 0 auto;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--rose);
}

.hero-title {
  font-family: var(--font-s);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--rose);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { transform: none; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(130,9,64,.4);
  color: var(--cream);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.btn-ghost:hover { border-color: var(--rose); background: rgba(130,9,64,.10); }

.btn-ghost-azul {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn-ghost-azul:hover { border-color: var(--gold-lt); background: var(--gold-lt); color: #fff; }

/* ---------- HERO SCROLL ---------- */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- HERO BADGE ---------- */
.hero-badge {
  position: absolute; right: 6%; bottom: 15%;
  z-index: 2;
  width: 110px; height: 110px;
}
.badge-inner {
  width: 100%; height: 100%;
  position: relative;
  animation: rotateBadge 12s linear infinite;
}
.badge-inner svg {
  width: 100%; height: 100%;
  fill: none;
}
.badge-inner text {
  font-family: var(--font-b);
  font-size: 7.5px;
  letter-spacing: 2.5px;
  fill: var(--text);
}
.badge-star {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  animation: rotateBadge 12s linear infinite reverse;
}
@keyframes rotateBadge {
  to { transform: rotate(360deg); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--rose);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}
.marquee-inner span:nth-child(even) { color: rgba(255,255,255,.45); font-size: .5rem; }

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

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.revealed .reveal-up,
.revealed .reveal-left,
.revealed .reveal-right,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--rose);
}
.section-eyebrow.light { color: var(--gold-lt); }
.section-eyebrow.light::before,
.section-eyebrow.light::after { background: var(--gold-lt); }

.section-title {
  font-family: var(--font-s);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.light { color: #fff; }

.section-desc {
  color: var(--text);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: .95rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--bg2);
}

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

.about-images {
  position: relative;
}
.about-img-main {
  position: relative;
  width: 80%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-main img { transition: transform .8s var(--ease); }
.about-img-main:hover img { transform: scale(1.04); }
.img-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--border2);
  z-index: -1;
}

.about-img-float {
  position: absolute;
  bottom: -40px; right: 0;
  width: 48%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--bg2);
}

.about-stats {
  position: absolute;
  top: 30px; right: -20px;
  display: flex; flex-direction: column; gap: 16px;
}
.stat {
  background: rgba(0,25,32,.92);
  border: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-num {
  font-family: var(--font-s);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat span { color: var(--rose); font-size: 1.4rem; }
.stat p { font-size: .72rem; letter-spacing: .1em; color: var(--text); margin-top: 4px; }

.about-content {}
.about-text {
  color: var(--text);
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.85;
  transition-delay: var(--delay, 0s);
}

.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 32px 0;
}
.feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem;
  color: var(--text-lt);
}
.feature-icon { color: var(--gold); font-size: .9rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.services-bg-deco {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130,9,64,.08) 0%, rgba(16,52,166,.06) 60%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  background: var(--bg3);
  overflow: hidden;
  transition: transform .4s var(--ease);
  transition-delay: var(--delay, 0s);
}
.service-card:hover { transform: translateY(-6px); }

.service-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img img { transition: transform .7s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.08); }

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,25,32,.85) 0%, transparent 60%);
}

.service-content {
  padding: 24px 28px 30px;
  position: relative;
}
.service-num {
  font-family: var(--font-s);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(130,9,64,.15);
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
  pointer-events: none;
}

.service-content h3 {
  font-family: var(--font-s);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.service-content p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px;
}
.service-tags span {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--text);
}

.service-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.service-link span { transition: transform .3s var(--ease); }
.service-link:hover { color: var(--gold); }
.service-link:hover span { transform: translateX(4px); }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.exp-bg {
  position: absolute; inset: 0;
}
.exp-bg img { filter: brightness(.3) saturate(.6); }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,25,32,.93), rgba(16,52,166,.65));
}

.exp-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.exp-text {
  color: rgba(244,194,194,.75);
  font-size: 1rem;
  line-height: 1.85;
  margin: 20px 0 44px;
}

.exp-items {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 32px; margin-bottom: 48px;
}
.exp-item { transition-delay: var(--delay, 0s); }
.exp-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.exp-item h4 {
  font-family: var(--font-s);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.exp-item p { font-size: .82rem; color: rgba(192,205,211,.65); line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 120px 0;
  background: var(--bg2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
  margin-top: 0;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: none;
  transition-delay: var(--delay, 0s);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img { transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(0,25,32,.7);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
}

.testimonials-slider {
  margin-top: 64px;
  overflow: hidden;
}
.testimonials-track {
  display: flex; gap: 24px;
  transition: transform .5s var(--ease);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.testimonial-card:hover { border-color: rgba(130,9,64,.35); transform: translateY(-4px); }
.testimonial-card:hover::before { transform: scaleX(1); }

.t-quote {
  font-family: var(--font-s);
  font-size: 5rem;
  line-height: .7;
  color: var(--rose);
  opacity: .3;
  margin-bottom: 16px;
}
.t-text {
  font-size: .92rem;
  color: var(--text-lt);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--cream);
}
.t-author span { font-size: .72rem; color: var(--text); }
.t-stars { margin-left: auto; color: var(--gold); font-size: .75rem; letter-spacing: 2px; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.slider-btn:hover { border-color: var(--rose); background: var(--rose); color: #fff; }

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  border: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
  cursor: none;
}
.slider-dot.active { background: var(--rose); transform: scale(1.3); }

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  padding: 120px 0;
  background: var(--bg2);
}

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

.booking-text {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.85;
  margin: 20px 0 40px;
}

.booking-info-items {
  display: flex; flex-direction: column; gap: 20px;
}
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.info-icon { font-size: 1.1rem; margin-top: 2px; }
.info-icon-svg {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(130,9,64,.25);
  border-radius: 50%;
  color: var(--rose);
  margin-top: 2px;
}
.info-icon-svg svg { width: 16px; height: 16px; }
.info-item strong {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.info-item span { font-size: .85rem; color: var(--text); }

/* ---------- BOOKING ACTIONS ---------- */
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* ---------- MAPA ---------- */
.booking-map {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.map-wrapper {
  width: 100%;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(130,9,64,.18);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter .4s;
}
.map-wrapper:hover iframe { filter: grayscale(0%) contrast(1); }

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  align-self: flex-end;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
}
.map-open-link:hover { color: var(--rose); }
.map-open-link svg { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); }

.footer-top { padding: 80px 0; border-top: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-logo { margin-bottom: 4px; display: inline-block; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: border-color .3s, color .3s, background .3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--rose); color: var(--cream); background: rgba(201,132,122,.1); }

.footer-links-col h4 {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: .83rem;
  color: var(--text);
  transition: color .3s, padding-left .3s;
}
.footer-links-col a:hover { color: var(--rose); padding-left: 4px; }

.footer-contact h4 {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: .83rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(200,184,179,.4); }

/* ============================================================
   WHATSAPP & BACK TO TOP
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 900;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; color: #fff; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); animation: none; }

@keyframes whatsappPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.1); }
}

.back-to-top {
  position: fixed; bottom: 92px; right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ============================================================
   PARTICLES
   ============================================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .exp-items { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
  .hero-badge { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .map-wrapper { height: 380px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .section-eyebrow::before, .section-eyebrow::after { display: none; }
  .about-stats { position: static; flex-direction: row; margin-top: 16px; }
  .about-img-float { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* ============================================================
   NOVAS SEÇÕES — FLOVITTA REBRAND
   ============================================================ */

/* Nav sala azul */
.nav-sala-azul { color: var(--gold-lt) !important; }
.nav-sala-azul::after { background: var(--gold) !important; }

/* ---- INTRO ---- */
.intro-section { padding: 120px 0; background: var(--bg2); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text { color: var(--text); font-size: .95rem; line-height: 1.85; margin-bottom: 32px; }
.intro-pillars { display: flex; flex-direction: column; gap: 12px; }

.pillar-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: rgba(0,25,32,.5);
  transition: border-color .3s, background .3s, transform .3s;
  cursor: none;
}
.pillar-card:hover { border-color: var(--rose); background: rgba(130,9,64,.06); transform: translateX(4px); }
.pillar-card.pillar-azul { border-color: var(--border2); }
.pillar-card.pillar-azul:hover { border-color: var(--gold); background: rgba(74,111,212,.08); }
.pillar-icon { font-size: 1.4rem; color: var(--rose); flex-shrink: 0; }
.pillar-azul .pillar-icon { color: var(--gold); }
.pillar-card h4 { font-family: var(--font-s); font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: 4px; }
.pillar-card p { font-size: .75rem; color: var(--text); letter-spacing: .05em; }
.pillar-arrow { margin-left: auto; color: var(--text); font-size: 1rem; transition: transform .3s, color .3s; }
.pillar-card:hover .pillar-arrow { transform: translateX(4px); color: var(--cream); }

.intro-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.intro-image:hover img { transform: scale(1.04); }
.intro-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0,25,32,.88); border: 1px solid var(--border2);
  backdrop-filter: blur(10px); padding: 8px 16px;
  font-size: .72rem; color: var(--gold-lt); letter-spacing: .12em;
}

/* ---- SERVICES HIGHLIGHT ---- */
.services-highlight { padding: 80px 0; background: var(--bg); }
.sh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.sh-card {
  background: var(--bg3); padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color .3s, transform .3s;
  transition-delay: var(--delay, 0s);
}
.sh-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.sh-card.sh-card-azul:hover { border-color: var(--gold); }
.sh-icon { font-size: 1.6rem; color: var(--rose); margin-bottom: 18px; display: block; }
.sh-card-azul .sh-icon { color: var(--gold); }
.sh-card h3 { font-family: var(--font-s); font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.sh-card p { font-size: .85rem; color: var(--text); line-height: 1.75; }
.sh-link { display: inline-block; margin-top: 16px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); transition: color .3s; }
.sh-link:hover { color: var(--gold-lt); }

/* ---- SALA AZUL TEASER ---- */
.sala-azul-teaser { position: relative; padding: 120px 0; overflow: hidden; }
.sala-azul-teaser-bg { position: absolute; inset: 0; }
.sala-azul-teaser-bg img { filter: brightness(.22) saturate(.4) hue-rotate(200deg); }
.sala-azul-teaser-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,13,30,.95), rgba(16,52,166,.55)); }
.sala-flare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}
.sala-teaser-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.sala-azul-logo {
  display: block;
  margin: 0 auto -60px;
  max-width: 480px;
  width: 100%;
  mix-blend-mode: screen;
}
.sala-teaser-text { color: rgba(192,205,211,.8); font-size: 1.05rem; line-height: 1.8; margin: 20px 0 40px; }

/* ---- SALA AZUL MAIN ---- */
.sala-azul {
  background: #060d1e;
  position: relative; overflow: hidden;
}
.sala-azul::before {
  content: ''; position: absolute; top: -300px; right: -300px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,52,166,.14) 0%, transparent 70%);
  pointer-events: none;
}
.sala-azul::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(130,9,64,.07) 0%, transparent 70%);
  pointer-events: none;
}
.sala-azul-header { padding: 100px 0 60px; border-bottom: 1px solid rgba(74,111,212,.2); }

.head-spa-section { padding: 80px 0 60px; border-bottom: 1px solid rgba(74,111,212,.15); }
.head-spa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sala-subtitle {
  font-family: var(--font-s); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: #e8f0ff; line-height: 1.2; margin-bottom: 20px;
}
.sala-text { color: rgba(192,205,211,.75); font-size: .95rem; line-height: 1.85; margin-bottom: 28px; }
.head-spa-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.head-spa-list li { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(192,205,211,.8); }
.head-spa-list span { color: var(--gold-lt); flex-shrink: 0; }

.head-spa-images { position: relative; height: 460px; }
.hs-img-main { width: 78%; height: 100%; overflow: hidden; }
.hs-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hs-img-float {
  position: absolute; bottom: -30px; right: 0;
  width: 45%; aspect-ratio: 1; overflow: hidden;
  border: 3px solid #060d1e;
}
.hs-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* Massagens */
.massagens-section { padding: 80px 0 100px; }
.massagens-video {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 64px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  pointer-events: none;
  display: block;
}
.massagens-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.35);
  pointer-events: none;
}
.massagens-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin: 48px 0; }
.massagem-card {
  background: rgba(10,21,48,.7); border: 1px solid rgba(74,111,212,.15);
  padding: 36px 28px; position: relative;
  transition: border-color .3s, background .3s, transform .3s;
  transition-delay: var(--delay, 0s); overflow: hidden;
}
.massagem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.massagem-card:hover { border-color: rgba(74,111,212,.4); background: rgba(16,52,166,.12); transform: translateY(-4px); }
.massagem-card:hover::before { transform: scaleX(1); }
.massagem-wide { grid-column: span 2; }
.massagem-num {
  font-family: var(--font-s); font-size: 3rem; font-weight: 300;
  color: rgba(74,111,212,.15); position: absolute; top: 10px; right: 20px; line-height: 1;
}
.massagem-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.massagem-card h4 { font-family: var(--font-s); font-size: 1.3rem; font-weight: 400; color: #e8f0ff; margin-bottom: 10px; }
.massagem-card p { font-size: .83rem; color: rgba(192,205,211,.7); line-height: 1.7; }
.massagens-cta { text-align: center; margin-top: 16px; }

/* ---- CABELOS ---- */
.cabelos-section { padding: 120px 0; background: var(--bg); overflow: hidden; }
.cabelos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 64px; }

.cabelo-card {
  background: var(--bg3); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease);
  transition-delay: var(--delay, 0s);
}
.cabelo-card:hover { transform: translateY(-4px); }
.cabelo-wide { grid-column: span 2; flex-direction: row; }
.cabelo-full { grid-column: span 2; flex-direction: row; }

.cabelo-img { position: relative; overflow: hidden; flex-shrink: 0; }
.cabelo-card:not(.cabelo-wide):not(.cabelo-full) .cabelo-img { aspect-ratio: 2/1; }
.cabelo-wide .cabelo-img, .cabelo-full .cabelo-img { width: 48%; min-height: 280px; aspect-ratio: 4/3; }
.cabelo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cabelo-card:hover .cabelo-img img { transform: scale(1.06); }
.cabelo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,25,32,.6));
}
.cabelo-wide .cabelo-overlay, .cabelo-full .cabelo-overlay {
  background: linear-gradient(to right, transparent 60%, rgba(0,25,32,.5));
}
.cabelo-num {
  position: absolute; bottom: 12px; left: 16px;
  font-family: var(--font-s); font-size: 2.5rem; font-weight: 300;
  color: rgba(244,194,194,.45); line-height: 1;
}
.cabelo-content { padding: 28px 30px 32px; flex: 1; }
.cabelo-content h3 { font-family: var(--font-s); font-size: 1.6rem; font-weight: 400; color: var(--cream); margin-bottom: 12px; }
.cabelo-content p { font-size: .85rem; color: var(--text); line-height: 1.75; margin-bottom: 12px; }
.cabelo-detail { font-size: .8rem !important; color: rgba(145,163,176,.7) !important; }
.cabelo-note { font-size: .8rem !important; color: rgba(130,9,64,.75) !important; font-style: italic; }
.cabelo-quote {
  font-family: var(--font-s); font-style: italic; font-size: 1rem !important;
  color: var(--gold-lt) !important; border-left: 2px solid var(--gold);
  padding-left: 12px; margin-bottom: 12px !important;
}
.tratamentos-list { display: flex; flex-direction: column; gap: 14px; margin: 16px 0 20px; }
.trat-item { display: flex; gap: 12px; align-items: flex-start; }
.trat-icon { color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.trat-item strong { display: block; font-size: .82rem; font-weight: 500; color: var(--cream); margin-bottom: 3px; }
.trat-item p { font-size: .78rem !important; color: var(--text) !important; margin-bottom: 0 !important; }

/* ---- ESSÊNCIA ---- */
.essence { padding: 120px 0; background: var(--bg2); }
.essence-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 64px; }
.essence-card {
  background: var(--bg3); padding: 40px 32px; position: relative;
  transition: transform .3s var(--ease); transition-delay: var(--delay, 0s); overflow: hidden;
}
.essence-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(130,9,64,.05), rgba(74,111,212,.04));
  opacity: 0; transition: opacity .4s;
}
.essence-card:hover { transform: translateY(-4px); }
.essence-card:hover::after { opacity: 1; }
.essence-num { font-family: var(--font-s); font-size: 4rem; font-weight: 300; color: rgba(130,9,64,.1); line-height: 1; margin-bottom: 16px; }
.essence-card h4 { font-family: var(--font-s); font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 14px; }
.essence-card p { font-size: .83rem; color: var(--text); line-height: 1.75; }

/* ---- ROBERTA ---- */
.roberta-section { padding: 120px 0; background: var(--bg); }
.roberta-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.roberta-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.roberta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.roberta-img:hover img { transform: scale(1.03); }
.roberta-ig {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(0,25,32,.88); border: 1px solid var(--border2);
  backdrop-filter: blur(10px); padding: 8px 16px;
  font-size: .72rem; color: var(--gold-lt); letter-spacing: .12em;
}
.roberta-text { color: var(--text); font-size: .95rem; line-height: 1.85; margin-bottom: 20px; transition-delay: var(--delay, 0s); }
.roberta-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; transition-delay: var(--delay, 0s); }
.roberta-badges span { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--border2); color: var(--gold-lt); }
.roberta-quote {
  font-family: var(--font-s); font-style: italic; font-size: 1.1rem; color: var(--cream);
  border-left: 2px solid var(--rose); padding: 12px 0 12px 20px;
  margin-bottom: 28px; opacity: .85; transition-delay: var(--delay, 0s);
}

/* ---- SOBRE CTA ---- */
.sobre-cta { position: relative; padding: 120px 0; overflow: hidden; }
.sobre-cta-bg { position: absolute; inset: 0; }
.sobre-cta-bg img { filter: brightness(.22) saturate(.7); }
.sobre-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,25,32,.92), rgba(16,52,166,.5)); }
.sobre-cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.sobre-cta-text { color: rgba(192,205,211,.75); font-size: 1rem; line-height: 1.85; margin: 20px 0 40px; }
.sobre-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- RESPONSIVE NOVAS SEÇÕES ---- */
@media (max-width: 1024px) {
  .intro-grid, .head-spa-grid, .roberta-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-image { max-width: 480px; }
  .sh-grid { grid-template-columns: 1fr; }
  .massagens-grid { grid-template-columns: repeat(2,1fr); }
  .massagem-wide { grid-column: span 2; }
  .essence-grid { grid-template-columns: repeat(2,1fr); }
  .cabelos-grid { grid-template-columns: 1fr; }
  .cabelo-card, .cabelo-wide, .cabelo-full { grid-column: 1 / -1 !important; }
  .cabelo-wide, .cabelo-full { flex-direction: column; }
  .cabelo-wide .cabelo-img, .cabelo-full .cabelo-img { width: 100%; min-height: 240px; }
  .head-spa-images { height: 360px; }
}
@media (max-width: 768px) {
  .massagens-grid { grid-template-columns: 1fr; }
  .massagem-wide { grid-column: span 1; }
  .essence-grid { grid-template-columns: 1fr 1fr; }
  .sh-grid { gap: 1px; }
  .head-spa-images { height: 280px; }
}
@media (max-width: 480px) {
  .essence-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SEÇÃO EQUIPE / PROFISSIONAIS
   ============================================================ */

.equipe-section {
  padding: 120px 0;
  background: var(--bg);
}

/* Card principal */
.prof-card {
  border: 1px solid rgba(130,9,64,.18);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
  transition: border-color .4s;
}
.prof-card:hover {
  border-color: rgba(130,9,64,.4);
}

/* Topo do card: foto + info */
.prof-top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}

/* Foto */
.prof-photo {
  position: relative;
  overflow: hidden;
}
.prof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
  min-height: 500px;
}
.prof-card:hover .prof-photo img {
  transform: scale(1.04);
}

/* Info (lado direito) */
.prof-info {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prof-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
}

.prof-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--rose);
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-decoration: none;
  transition: color .3s;
}
.prof-ig svg { opacity: .85; }
.prof-ig:hover { color: var(--rose-lt); }

.prof-bio {
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(130,9,64,.3);
}

/* Especialidades */
.prof-specialties {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-label {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.prof-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prof-services li {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(74,111,212,.12);
  border: 1px solid rgba(74,111,212,.25);
  padding: 4px 12px;
  border-radius: 4px;
  transition: border-color .3s, color .3s, background .3s;
}
.prof-services li:hover {
  border-color: rgba(74,111,212,.5);
  background: rgba(74,111,212,.2);
  color: #fff;
}

/* Badges de certificações */
.prof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prof-badges span {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(74,111,212,.12);
  border: 1px solid rgba(74,111,212,.25);
  padding: 4px 12px;
  border-radius: 4px;
}

/* CTA dentro do card */
.prof-cta {
  align-self: flex-start;
  margin-top: 4px;
  font-size: .8rem;
  padding: 14px 28px;
}

/* Galeria inferior */
.prof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(130,9,64,.12);
}
.prof-gal-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: none;
}
.prof-gal-item + .prof-gal-item {
  border-left: 1px solid rgba(130,9,64,.08);
}
.prof-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s;
  filter: brightness(.85) saturate(.9);
}
.prof-gal-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}
.prof-gal-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.prof-gal-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVO EQUIPE ---- */
@media (max-width: 1024px) {
  .prof-top { grid-template-columns: 300px 1fr; }
  .prof-info { padding: 40px 40px; }
  .prof-name { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .prof-top { grid-template-columns: 1fr; }
  .prof-photo { max-height: 420px; }
  .prof-photo img { min-height: unset; height: 420px; }
  .prof-info { padding: 36px 28px; }
  .prof-gallery { grid-template-columns: repeat(2, 1fr); }
  .prof-gal-item + .prof-gal-item { border-left: none; }
  .prof-gal-item:nth-child(odd) { border-right: 1px solid rgba(130,9,64,.08); }
  .prof-gal-item:nth-child(3),
  .prof-gal-item:nth-child(4) { border-top: 1px solid rgba(130,9,64,.08); }
}
@media (max-width: 480px) {
  .equipe-section { padding: 80px 0; }
  .prof-name { font-size: 2.1rem; }
  .prof-info { padding: 28px 20px; }
  .prof-gallery { grid-template-columns: repeat(2, 1fr); }
  .prof-gal-item span { opacity: 1; transform: translateY(0); }
}

/* ---- FOTO PLACEHOLDER (colaboradoras sem foto ainda) ---- */
.prof-photo--placeholder {
  background: linear-gradient(160deg, var(--bg3) 0%, #001a22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  border-right: 1px solid rgba(130,9,64,.1);
}
.prof-photo--azul {
  background: linear-gradient(160deg, #060d1e 0%, #001530 100%);
  border-right: 1px solid rgba(74,111,212,.12);
}
.prof-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: rgba(130,9,64,.15);
  line-height: 1;
  user-select: none;
  letter-spacing: -.02em;
}
.prof-photo--azul .prof-initials {
  color: rgba(74,111,212,.18);
}
@media (max-width: 768px) {
  .prof-photo--placeholder { min-height: 240px; }
  .prof-initials { font-size: 5rem; }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

/* Badge Google */
.dep-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 56px;
  background: rgba(255,255,255,.03);
}

/* Grid 2 colunas */
.dep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Ajustes no card para 2 colunas */
.dep-grid .testimonial-card {
  flex: unset;
  display: flex;
  flex-direction: column;
}

.dep-grid .t-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

/* Segundo parágrafo levemente mais apagado */
.t-text--more {
  opacity: .8;
}

/* Empurra o author pro final do card */
.dep-grid .t-author {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Avatares com cores distintas */
.dep-grid .testimonial-card:nth-child(1) .t-avatar {
  background: linear-gradient(135deg, var(--rose), #9b125d);
}
.dep-grid .testimonial-card:nth-child(2) .t-avatar {
  background: linear-gradient(135deg, var(--gold), #2d4fa0);
}

@media (max-width: 768px) {
  .dep-grid { grid-template-columns: 1fr; }
  .dep-google-badge { margin-bottom: 36px; }
}

/* ============================================================
   LOGO IMAGEM
   ============================================================ */

/* Navbar */
.nav-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  /* inverte o fundo branco para funcionar no tema escuro */
  mix-blend-mode: screen;
  filter: brightness(1.1);
  transition: opacity .3s ease;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

/* Footer — um pouco maior */
.nav-logo-img--footer {
  height: 72px;
  mix-blend-mode: screen;
  filter: brightness(1.05);
}

/* Loader */
.loader-logo-img {
  height: 260px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  animation: logoFadeIn .9s cubic-bezier(.4,0,.2,1) .2s both;
}
@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Remove o estilo de texto do nav-logo quando há imagem dentro */
a.nav-logo:has(.nav-logo-img) {
  font-size: 0;
}

/* ============================================================
   MOBILE UNIVERSAL TWEAKS
   ============================================================ */
@media (max-width: 768px) {
  html {
    font-size: clamp(13px, 3.8vw, 15px);
  }
  .container {
    width: 90%;
  }
  .intro-section, .cabelos-section, .massagens-section, .roberta-section, .equipe-section, .sobre-cta, .depoimentos-section, .services-highlight, .booking, .essence {
    padding: 48px 0 !important;
  }
  .hero-title {
    font-size: clamp(2rem, 7vw, 3.2rem) !important;
  }
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }
  .sala-subtitle {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
  }
  p, .intro-text, .roberta-text, .cabelo-content p, .prof-bio, .t-text {
    font-size: 0.95rem !important; 
    line-height: 1.5 !important;
  }
  .prof-card, .massagem-card, .cabelo-card, .pillar-card {
    padding: 20px 16px !important;
    margin-bottom: 20px;
  }
  .prof-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .prof-gal-item {
    height: 160px !important;
  }
  .cabelo-img {
    min-height: 180px !important;
  }
  .roberta-img {
    aspect-ratio: auto !important;
    height: 350px !important;
  }
  .massagens-video {
    margin: 0 auto 24px auto !important;
    display: block !important;
  }
  .massagens-video iframe {
    transform: translate(-50%, -50%) scale(1.7) !important;
    transform-origin: center center !important;
  }
  .section-desc { margin-bottom: 24px !important; }
  .sh-grid, .essence-grid, .dep-grid, .booking-grid, .cabelos-grid, .massagens-grid { gap: 16px !important; }
}

@media (max-width: 480px) {
  .prof-gallery {
    grid-template-columns: 1fr !important;
  }
  .prof-gal-item {
    height: 200px !important;
  }
  .roberta-img {
    height: 250px !important;
  }
  .footer-grid {
    gap: 20px;
  }
  .cabelo-img {
    min-height: 150px !important;
  }
}
