/* ============================================
   Bella Farfalluce Spa — Design System
   Cores extraídas do logo (bege dourado / cream)
   ============================================ */
:root {
  --gold: #c9a97e;
  --gold-dark: #a88761;
  --gold-soft: #e6d5bc;
  --cream: #faf5ec;
  --cream-2: #f2e9d8;
  --ink: #2b2620;
  --ink-soft: #5b5148;
  --line: rgba(43, 38, 32, 0.14);
  --shadow-soft: 0 20px 60px rgba(168, 135, 97, 0.18);
  --shadow-strong: 0 30px 80px rgba(43, 38, 32, 0.22);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --script: "Great Vibes", "Allura", cursive;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius: 22px;
  --wa: #25d366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { color: var(--ink-soft); font-size: 1.02rem; }
.script { font-family: var(--script); color: var(--gold-dark); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-dark); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

/* ============ HEADER / NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(250, 245, 236, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-text small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.34em; color: var(--gold-dark); text-transform: uppercase; }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold-dark);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.9,.3,1.4), box-shadow .35s, background .3s, color .3s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--gold-dark);
}
.btn-outline:hover { background: var(--gold-dark); color: #fff; }

.btn-wa {
  background: var(--wa); color: #fff;
}
.btn-wa svg { width: 18px; height: 18px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  animation: pulse 2s infinite;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
}

/* ============ HERO / SLIDER ============ */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden; isolation: isolate;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s ease;
  background-size: cover; background-position: center;
}
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(43,38,32,.72) 0%, rgba(43,38,32,.35) 55%, rgba(201,169,126,.25) 100%);
}
.slide.active { opacity: 1; transform: scale(1); }

.hero-inner {
  position: relative; z-index: 2;
  min-height: 100vh; display: grid; align-items: center;
  padding: 130px 0 100px;
}
.hero-content { max-width: 780px; color: #fff; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content h1 { color: #fff; }
.hero-content h1 .script { color: var(--gold-soft); display: block; font-size: 0.75em; margin: -0.1em 0 0.05em; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 22px 0 34px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.slide-content { display: none; }
.slide-content.active { display: block; animation: fadeUp 1s .3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.slider-dots {
  position: absolute; left: 0; right: 0; bottom: 32px;
  z-index: 3; display: flex; justify-content: center; gap: 12px;
}
.slider-dots button {
  width: 34px; height: 3px; background: rgba(255,255,255,.35);
  border: 0; cursor: pointer; transition: .4s;
}
.slider-dots button.active { background: var(--gold-soft); width: 56px; }

/* ============ SECTIONS ============ */
section { padding: 110px 0; position: relative; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-title p { margin-top: 14px; }

.section-alt { background: var(--cream-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.section-dark .eyebrow { color: var(--gold-soft); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ============ TEAM ============ */
.team-grid {
  display: grid; gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.team-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s ease, box-shadow .5s ease;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.team-photo { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-body { padding: 26px 26px 32px; text-align: center; }
.team-body h3 { margin-bottom: 6px; }
.team-role { color: var(--gold-dark); font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 12px; display: block; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-tag { color: var(--gold-dark); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 10px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { flex: 1; }
.service-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
}
.service-price { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-dark); }
.service-duration { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.service-card .btn { margin-top: 16px; align-self: flex-start; }

.service-list {
  list-style: none; display: grid; gap: 8px; margin: 12px 0 20px;
}
.service-list li {
  padding-left: 20px; position: relative; color: var(--ink-soft); font-size: 0.95rem;
}
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 10px; height: 1px; background: var(--gold);
}

/* ============ ABOUT SPLIT ============ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.split-media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after {
  content: ""; position: absolute; inset: -20px;
  border: 1px solid var(--gold); border-radius: var(--radius);
  transform: translate(20px, 20px); z-index: -1;
}
.split-media.right { order: 2; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; text-align: center;
  padding: 90px 20px;
}
.cta-strip h2 { color: #fff; margin-bottom: 18px; }
.cta-strip p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 30px; }
.cta-strip .btn { background: #fff; color: var(--gold-dark); }
.cta-strip .btn:hover { background: var(--ink); color: #fff; }

/* ============ PAUSA EXECUTIVA ============ */
.pause-hero {
  background: linear-gradient(135deg, #1f1a15 0%, #2b2620 100%);
  color: #fff; min-height: 92vh; display: grid; align-items: center;
  padding: 140px 0 90px; position: relative; overflow: hidden;
}
.pause-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('images/hero-3.jpg') center/cover;
  opacity: .35;
}
.pause-hero .container { position: relative; z-index: 2; }
.pause-hero h1 { color: #fff; max-width: 900px; }
.pause-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 640px; margin: 26px 0 36px; }
.pause-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--gold-soft); display: block; margin-top: 30px; }

.pause-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pause-meta span {
  padding: 10px 18px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255,255,255,.05);
}

.pause-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.pause-card {
  padding: 34px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  transition: transform .4s, box-shadow .4s;
}
.section-dark .pause-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); }
.pause-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pause-num { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--gold-dark); margin-bottom: 20px; }
.section-dark .pause-num { color: var(--gold-soft); }
.pause-card small { display: block; color: var(--gold-dark); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.section-dark .pause-card small { color: var(--gold-soft); }

.quote-card {
  margin: 40px 0; padding: 30px 34px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif); font-size: 1.7rem; font-style: italic;
  color: var(--ink);
}
.section-dark .quote-card { color: #fff; }

/* ============ PAGE HEADER (services / other pages) ============ */
.page-header {
  padding: 180px 0 90px;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  text-align: center;
}
.page-header p { max-width: 640px; margin: 18px auto 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer h4 { color: #fff; margin-bottom: 18px; font-family: var(--serif); font-size: 1.3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--gold-soft); }
.footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,.4);
}
.footer-brand img { height: 70px; margin-bottom: 18px; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .pause-cards { grid-template-columns: 1fr; gap: 40px; }
  .split-media.right { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--cream); flex-direction: column; padding: 30px 0;
    gap: 22px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .5s ease;
  }
  .nav-links.open { transform: none; }
  .burger { display: block; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero-content p { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
