/* ============================================
   Espaço Sonia Isolani — Música e Saúde
   ============================================ */
:root {
  --cream: #F9F3E9;
  --cream-2: #F2E9D8;
  --paper: #FDFAF4;
  --ink: #2B1B20;
  --ink-soft: #5C4A50;
  --bord: #6B2237;
  --bord-deep: #491624;
  --gold: #C08A3E;
  --gold-soft: #D9B675;
  --sage: #6E7F5E;
  --shadow: 0 20px 60px -20px rgba(43, 27, 32, .25);
  --radius: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Figtree", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--gold-soft); color: var(--bord-deep); }

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

h1, h2, h3, .display {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
}

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

.wrap { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- decorative music staff ---------- */
.staff {
  position: absolute; inset-inline: 0; pointer-events: none;
  display: flex; flex-direction: column; gap: 9px; opacity: .1;
}
.staff span { height: 1px; background: currentColor; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bord);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--gold);
}

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.site-head.scrolled {
  background: rgba(253, 250, 244, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(43,27,32,.08);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { height: 30px; width: auto; transition: height .35s; }
.site-head.scrolled .brand img { height: 26px; }
.brand .logo-color { display: none; }
.site-head.scrolled .logo-light { display: none; }
.site-head.scrolled .logo-color { display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .92rem; font-weight: 600; color: #fff;
  position: relative; padding: 4px 0;
}
.site-head.scrolled .nav-links a { color: var(--ink); }
.site-head.scrolled .nav-links a.btn.gold,
.nav-links a.btn.gold { color: var(--bord-deep); padding: .95rem 2rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bord); color: var(--cream); font-weight: 700;
  padding: .85rem 1.7rem; border-radius: 999px; border: none; cursor: pointer;
  font-size: .95rem; font-family: inherit;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
  box-shadow: 0 10px 30px -12px rgba(107, 34, 55, .55);
}
.btn:hover { background: var(--bord-deep); transform: translateY(-2px); }
.btn.gold { background: var(--gold); color: var(--bord-deep); box-shadow: 0 10px 30px -12px rgba(192,138,62,.6); }
.btn.gold:hover { background: var(--gold-soft); }
.btn.ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(249,243,233,.5); }
.btn.ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--gold-soft); }

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

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  color: var(--cream); overflow: hidden;
  background: var(--bord-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/IMG_6374-Copia.jpg") center 30%/cover no-repeat;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(38, 12, 20, .93) 0%, rgba(38, 12, 20, .72) 45%, rgba(38, 12, 20, .25) 100%),
    radial-gradient(80% 60% at 85% 20%, rgba(192, 138, 62, .18), transparent 60%);
}
.hero .staff { bottom: 12%; color: var(--gold-soft); }
.hero-inner { position: relative; z-index: 2; padding: 140px 0 90px; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.8rem); max-width: 13ch; margin: 1.2rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 44ch; color: rgba(249,243,233,.85);
  margin-bottom: 2.4rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .eyebrow { color: var(--gold-soft); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* note ornament floating */
.note-float {
  position: absolute; z-index: 1; color: var(--gold-soft); opacity: .35;
  animation: floaty 7s ease-in-out infinite;
  font-family: "Fraunces", serif;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-18px) rotate(5deg); } }

/* ---------- section scaffolding ---------- */
section { position: relative; padding: 110px 0; }
.sec-head { max-width: 640px; margin-bottom: 3.4rem; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 1rem; }
.sec-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- sobre ---------- */
.sobre { background: var(--paper); }
.sobre-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.sobre-fotos { position: relative; min-height: 520px; }
.sobre-fotos img {
  position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow);
}
.sobre-fotos .f1 { width: 68%; height: 66%; top: 0; left: 0; z-index: 2; }
.sobre-fotos .f2 { width: 52%; height: 52%; bottom: 0; right: 0; z-index: 3; border: 6px solid var(--paper); }
.sobre-fotos::before {
  content: "♪"; position: absolute; top: -30px; right: 6%;
  font-family: "Fraunces", serif; font-size: 6rem; color: var(--gold); opacity: .3; z-index: 1;
}
.sobre-txt h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 1rem 0 1.4rem; }
.sobre-txt p { color: var(--ink-soft); font-size: 1.05rem; }
.sobre-stats {
  margin-top: 2.6rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat b {
  display: block; font-family: "Fraunces", serif; font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--bord); font-weight: 600;
}
.stat small { color: var(--ink-soft); font-size: .82rem; line-height: 1.3; display: block; }

/* ---------- serviços ---------- */
.servicos { background: var(--cream); }
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.serv-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 24px -14px rgba(43,27,32,.2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.serv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.serv-card .pic { height: 230px; overflow: hidden; }
.serv-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.serv-card:hover .pic img { transform: scale(1.06); }
.serv-card .body { padding: 1.8rem 1.7rem 2rem; flex: 1; display: flex; flex-direction: column; }
.serv-card h3 { font-size: 1.45rem; margin-bottom: .7rem; }
.serv-card p { color: var(--ink-soft); font-size: .97rem; flex: 1; }
.serv-card .tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}

/* ---------- destaques ---------- */
.destaques { background: var(--bord-deep); color: var(--cream); overflow: hidden; }
.destaques .staff { top: 60px; color: var(--gold-soft); }
.destaques .sec-head h2 { color: var(--cream); }
.destaques .sec-head p { color: rgba(249,243,233,.7); }
.destaques .eyebrow { color: var(--gold-soft); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.dest {
  background: rgba(249,243,233,.05); border: 1px solid rgba(249,243,233,.12);
  border-radius: 18px; padding: 1.7rem 1.5rem;
  transition: background .35s, border-color .35s, transform .35s var(--ease);
}
.dest:hover { background: rgba(192,138,62,.12); border-color: rgba(192,138,62,.4); transform: translateY(-5px); }
.dest .num {
  font-family: "Fraunces", serif; font-size: .95rem; color: var(--gold-soft);
  display: block; margin-bottom: .9rem; letter-spacing: .08em;
}
.dest h3 { font-size: 1.12rem; margin-bottom: .5rem; color: var(--cream); }
.dest p { font-size: .88rem; color: rgba(249,243,233,.68); }

/* ---------- vantagens ---------- */
.vantagens { background: var(--paper); }
.vant-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 4rem; align-items: center; }
.vant-list { display: grid; gap: 1.1rem; }
.vant-item {
  display: flex; gap: 1.2rem; padding: 1.4rem 1.5rem; border-radius: 18px;
  background: var(--cream); border: 1px solid var(--cream-2);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.vant-item:hover { border-color: var(--gold-soft); transform: translateX(6px); box-shadow: 0 12px 30px -18px rgba(43,27,32,.25); }
.vant-item .ic {
  flex: 0 0 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bord); color: var(--gold-soft); font-family: "Fraunces", serif; font-size: 1.3rem;
}
.vant-item h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.vant-item p { font-size: .92rem; color: var(--ink-soft); }
.vant-foto { position: relative; }
.vant-foto img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; height: 560px; }
.vant-foto .badge {
  position: absolute; bottom: 26px; left: -26px; background: var(--gold); color: var(--bord-deep);
  padding: 1.1rem 1.5rem; border-radius: 16px; font-weight: 700; max-width: 240px;
  box-shadow: var(--shadow); font-size: .95rem; line-height: 1.35;
}

/* ---------- equipe ---------- */
.equipe { background: var(--cream); }
.eq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.eq-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 3 / 4; background: var(--bord-deep);
  box-shadow: 0 10px 30px -16px rgba(43,27,32,.35);
}
.eq-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .7s var(--ease), filter .7s;
}
.eq-card:hover img { transform: scale(1.05); filter: saturate(1.05); }
.eq-card .info {
  position: absolute; inset-inline: 0; bottom: 0; padding: 2.4rem 1.3rem 1.2rem;
  background: linear-gradient(to top, rgba(38,12,20,.92), rgba(38,12,20,0));
  color: var(--cream);
}
.eq-card .info h3 { font-size: 1.18rem; }
.eq-card .info span { font-size: .8rem; color: var(--gold-soft); font-weight: 600; }
.eq-card .mais {
  position: absolute; top: 14px; right: 14px; background: rgba(249,243,233,.14);
  backdrop-filter: blur(6px); color: var(--cream); font-size: .74rem; font-weight: 700;
  padding: .45rem .9rem; border-radius: 999px; letter-spacing: .08em;
  opacity: 0; transform: translateY(-6px); transition: .35s var(--ease);
}
.eq-card:hover .mais { opacity: 1; transform: none; }

/* ---------- depoimentos ---------- */
.depoimentos { background: var(--paper); overflow: hidden; }
.dep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.dep {
  background: var(--cream); border-radius: var(--radius); padding: 2.2rem 2rem 1.8rem;
  position: relative; border: 1px solid var(--cream-2);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.dep:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dep::before {
  content: "\201C"; position: absolute; top: -6px; left: 20px;
  font-family: "Fraunces", serif; font-size: 5.4rem; color: var(--gold); opacity: .45; line-height: 1;
}
.dep p { font-size: 1.02rem; font-style: italic; color: var(--ink-soft); margin-bottom: 1.2rem; position: relative; }
.dep .who { display: flex; align-items: center; gap: .8rem; font-weight: 700; }
.dep .who::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.dep .stars { color: var(--gold); letter-spacing: .15em; font-size: .85rem; margin-bottom: .8rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(100deg, rgba(73,22,36,.95), rgba(73,22,36,.75)),
    url("../img/background_1.jpg") center/cover fixed;
  color: var(--cream); text-align: center; padding: 100px 0;
}
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 20ch; margin: 0 auto 1rem; }
.cta-banner p { color: rgba(249,243,233,.8); max-width: 46ch; margin: 0 auto 2.2rem; font-size: 1.08rem; }

/* ---------- contato ---------- */
.contato { background: var(--cream); }
.cont-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; }
.cont-info { display: grid; gap: 1.2rem; align-content: start; }
.cont-item {
  display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.3rem 1.4rem;
  background: var(--paper); border-radius: 16px; border: 1px solid var(--cream-2);
}
.cont-item .ic {
  flex: 0 0 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bord); color: var(--gold-soft);
}
.cont-item b { display: block; font-size: .95rem; }
.cont-item span, .cont-item a { font-size: .93rem; color: var(--ink-soft); }
.cont-item a:hover { color: var(--bord); }
.cont-social { display: flex; gap: .8rem; margin-top: .4rem; }
.cont-social a {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bord); color: var(--cream); transition: background .3s, transform .3s var(--ease);
}
.cont-social a:hover { background: var(--gold); color: var(--bord-deep); transform: translateY(-3px); }

.form-card {
  background: var(--paper); border-radius: var(--radius); padding: 2.4rem;
  box-shadow: var(--shadow); border: 1px solid var(--cream-2);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.form-card > p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--cream-2);
  background: var(--cream); outline: none; transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(192,138,62,.15); }
.form-card .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

/* ---------- mapa ---------- */
.mapa iframe { width: 100%; height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); filter: saturate(.85); }
.mapa { padding-top: 0; }

/* ---------- footer ---------- */
.site-foot { background: var(--bord-deep); color: rgba(249,243,233,.75); padding: 70px 0 0; position: relative; overflow: hidden; }
.site-foot .staff { top: 40px; color: var(--gold-soft); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; position: relative; z-index: 2; }
.foot-grid img.logo { height: 34px; width: auto; margin-bottom: 1.2rem; opacity: .95; }
.foot-grid h4 { color: var(--cream); font-family: "Fraunces", serif; font-size: 1.15rem; margin-bottom: 1.1rem; font-weight: 500; }
.foot-grid ul { list-style: none; display: grid; gap: .55rem; }
.foot-grid ul a { font-size: .93rem; transition: color .3s; }
.foot-grid ul a:hover { color: var(--gold-soft); }
.foot-grid p { font-size: .93rem; max-width: 34ch; }
.foot-bottom {
  margin-top: 3.5rem; border-top: 1px solid rgba(249,243,233,.12);
  padding: 1.4rem 0; font-size: .82rem; text-align: center; position: relative; z-index: 2;
}
.foot-bottom a { color: var(--gold-soft); }

/* ---------- whatsapp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .3s var(--ease);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 0 0 0 rgba(37,211,102,.4); }
  60% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- página equipe / bio ---------- */
.page-hero {
  background: var(--bord-deep); color: var(--cream); padding: 170px 0 80px; position: relative; overflow: hidden;
}
.page-hero .staff { bottom: 20px; color: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 1rem; }
.page-hero p { color: rgba(249,243,233,.75); margin-top: .8rem; max-width: 52ch; }
.bio-block { display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: start; padding: 70px 0; border-bottom: 1px solid var(--cream-2); }
.bio-block:last-of-type { border-bottom: 0; }
.bio-block .foto { position: sticky; top: 110px; }
.bio-block .foto img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/3.6; object-fit: cover; object-position: top center; width: 100%; }
.bio-block h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.bio-block .cargo { color: var(--bord); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin: .5rem 0 1.4rem; display: block; }
.bio-block .texto p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.02rem; }

/* ---------- responsivo ---------- */
@media (max-width: 1024px) {
  .serv-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .vant-grid, .sobre-grid, .cont-grid { grid-template-columns: 1fr; gap: 3rem; }
  .vant-foto img { height: 420px; }
  .vant-foto .badge { left: 16px; }
  .bio-block { grid-template-columns: 1fr; }
  .bio-block .foto { position: static; max-width: 380px; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .nav-links {
    position: fixed; inset: 0; background: var(--bord-deep);
    flex-direction: column; justify-content: center; gap: 2.2rem;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 105;
  }
  .nav-links.open { transform: none; }
  .nav-links a, .site-head.scrolled .nav-links a { color: var(--cream); font-size: 1.3rem; }
  .nav-links .btn, .site-head.scrolled .nav-links a.btn.gold { background: var(--gold); color: var(--bord-deep); }
  .burger { display: block; }
  .burger.open span { background: var(--cream); }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .serv-grid, .dest-grid, .dep-grid, .form-grid { grid-template-columns: 1fr; }
  .eq-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .sobre-stats { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .sobre-fotos { min-height: 380px; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-inner { padding-top: 120px; }
}
