/* =========================================================
   Alan Dias — Therapias Holísticas
   Landing page styles
   ========================================================= */

:root {
  --lavender:      #B79FD4;
  --lavender-soft: #E7DDF2;
  --purple:        #8B6DB0;
  --purple-deep:   #3E2A56;
  --gold:          #C9A227;
  --gold-light:    #E4C766;
  --cream:         #FBF7F2;
  --cream-2:       #F4ECF7;
  --ink:           #2E2440;
  --ink-soft:      #5A4E6E;
  --white:         #ffffff;

  --shadow-sm: 0 4px 14px rgba(62, 42, 86, 0.08);
  --shadow-md: 0 14px 40px rgba(62, 42, 86, 0.14);
  --shadow-lg: 0 24px 60px rgba(62, 42, 86, 0.20);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans:  "Montserrat", "Segoe UI", system-ui, sans-serif;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--purple-deep);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .2px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.kicker {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}
.kicker::before { content: "✦"; margin-right: 8px; color: var(--gold); }

.section { padding: 100px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #3a2c05;
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 39, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--purple-deep);
  border: 1.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
.btn-ghost-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.9); color: var(--purple-deep); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .lotus { width: 34px; height: 34px; flex: none; }
.brand-text { line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; color: var(--purple-deep); }
.brand-sub  { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.site-header:not(.scrolled) .brand-name { color: #fff; }
.site-header:not(.scrolled) .brand-sub  { color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--purple-deep); margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(62,42,86,.72) 0%, rgba(62,42,86,.35) 55%, rgba(139,109,176,.25) 100%),
    radial-gradient(120% 80% at 80% 20%, rgba(201,162,39,.20), transparent 60%);
}
.hero-inner { padding: 140px 0 90px; max-width: 720px; }
.hero .kicker { color: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.5vw, 4.6rem);
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: rgba(255,255,255,.94);
  max-width: 560px; margin-bottom: 34px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-rating { display: flex; align-items: center; gap: 14px; }
.hero-rating .stars { color: var(--gold-light); letter-spacing: 2px; font-size: 18px; }
.hero-rating .rating-text { font-size: 14px; color: rgba(255,255,255,.9); }
.hero-rating .rating-text strong { color: #fff; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.8), transparent); }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-figure::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 2px solid var(--gold); border-radius: var(--radius); opacity: .5;
}
.about-content h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 20px; }
.about-content p { color: var(--ink-soft); margin-bottom: 18px; }
.about-content .signature { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--purple); margin-top: 4px; }
.stats { display: flex; gap: 34px; margin: 30px 0 34px; flex-wrap: wrap; }
.stat .num { font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold); font-weight: 600; line-height: 1; }
.stat .lbl { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .thumb img { transform: scale(1.07); }
.service-body { padding: 24px 22px 28px; }
.service-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-body p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Pillars ---------- */
.pillars { background: var(--purple-deep); color: #fff; }
.pillars .section-head h2 { color: #fff; }
.pillars .section-head p { color: rgba(255,255,255,.75); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar {
  text-align: center; padding: 34px 22px;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  background: rgba(255,255,255,.04); transition: background .3s ease, transform .3s ease;
}
.pillar:hover { background: rgba(201,162,39,.12); transform: translateY(-6px); }
.pillar .icon {
  width: 62px; height: 62px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(201,162,39,.16); color: var(--gold-light);
}
.pillar .icon svg { width: 30px; height: 30px; }
.pillar h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.pillar p { font-size: 14px; color: rgba(255,255,255,.72); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 50px; padding: 12px 24px;
  box-shadow: var(--shadow-sm); margin: 0 auto 46px;
}
.google-badge .g { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--purple-deep); }
.google-badge .score { font-weight: 700; color: var(--ink); }
.google-badge .stars { color: var(--gold); letter-spacing: 1px; }
.google-badge .count { font-size: 13px; color: var(--ink-soft); }
.badge-wrap { text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); position: relative; border-top: 3px solid var(--gold);
}
.testi-card .quote-mark { font-family: var(--font-serif); font-size: 4rem; color: var(--lavender); line-height: .6; height: 26px; }
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700;
  color: #fff; background: linear-gradient(135deg, var(--purple), var(--lavender));
}
.testi-author .name { font-weight: 600; color: var(--ink); font-size: 15px; }
.testi-author .role { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Vivências band ---------- */
.vivencias {
  position: relative; color: #fff; text-align: center;
  padding: 120px 0;
}
.vivencias .bg { position: absolute; inset: 0; z-index: -2; }
.vivencias .bg img { width: 100%; height: 100%; object-fit: cover; }
.vivencias::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(62,42,86,.55), rgba(62,42,86,.72));
}
.vivencias h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; }
.vivencias p { max-width: 620px; margin: 0 auto 30px; color: rgba(255,255,255,.92); font-weight: 300; }

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.contact-info h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 22px; }
.info-list { margin: 26px 0 30px; }
.info-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.info-item .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: grid; place-items: center; background: var(--lavender-soft); color: var(--purple);
}
.info-item .ic svg { width: 22px; height: 22px; }
.info-item .it-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 600; }
.info-item .it-value { color: var(--ink); font-weight: 500; }
.info-item a.it-value:hover { color: var(--purple); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 90px 0; text-align: center; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; font-weight: 300; }

/* ---------- Footer ---------- */
.site-footer { background: #241633; color: rgba(255,255,255,.72); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; margin-bottom: 12px; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: background .3s ease;
}
.socials a:hover { background: var(--gold); color: #3a2c05; }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45);
  transition: transform .3s ease;
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(251,247,242,.98); backdrop-filter: blur(10px);
    padding: 18px 24px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { color: var(--ink); padding: 12px 0; border-bottom: 1px solid rgba(62,42,86,.08); }
  .nav.open .btn { display: inline-flex; margin: 14px 24px 6px; }
  .section { padding: 72px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 120px; }
}
@media (max-width: 520px) {
  .services-grid, .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 24px; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue, .wa-float { animation: none; }
  .hero-media video { display: none; }
}
