/* =================================================================
   Felipe Secamilli — Aulas de Violino
   Estilo editorial: marfim + tinta profunda + acento cognac/âmbar
   Tipografia: Fraunces (serif) + Hanken Grotesk (sans)
   Mobile-first
   ================================================================= */

:root {
  --ivory: #ffffff;       /* fundo branco */
  --ivory-2: #ffffff;     /* alternadas também brancas (quebras são pontuais) */
  --soft: #f7f4ee;        /* tom suave para a "quebra" */
  --paper: #ffffff;       /* cards (branco) */
  --ink: #211b15;         /* tinta profunda */
  --ink-2: #3a322a;       /* tinta secundária */
  --ink-soft: #5c5247;    /* corpo de texto */
  --cognac: #9e5a2b;      /* acento principal (verniz do violino) */
  --cognac-dark: #7e461f; /* hover */
  --amber: #c2873e;       /* acento claro / âmbar */
  --line: rgba(33, 27, 21, .11);
  --shadow: 0 10px 30px rgba(33, 27, 21, .06);
  --radius: 10px;
  --max: 1120px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.05 4.94A9.79 9.79 0 0 0 12.04 2C6.6 2 2.18 6.42 2.18 11.86c0 1.74.46 3.44 1.32 4.94L2.1 22l5.33-1.4a9.85 9.85 0 0 0 4.61 1.17h.01c5.43 0 9.85-4.42 9.85-9.86a9.8 9.8 0 0 0-2.86-6.97zM12.05 19.5a8.18 8.18 0 0 1-4.17-1.14l-.3-.18-3.16.83.84-3.08-.2-.32a8.16 8.16 0 0 1-1.25-4.35c0-4.52 3.68-8.2 8.21-8.2a8.16 8.16 0 0 1 8.2 8.21c0 4.52-3.68 8.2-8.2 8.2zm4.5-6.14c-.25-.12-1.46-.72-1.68-.8-.23-.09-.39-.13-.56.12-.16.25-.64.8-.78.97-.15.16-.29.18-.54.06-.25-.12-1.04-.39-1.99-1.23-.73-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.5.11-.11.25-.29.37-.43.13-.15.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.35-.76-1.85-.2-.48-.41-.42-.56-.42-.14-.01-.31-.01-.48-.01-.16 0-.43.06-.66.31-.22.25-.86.85-.86 2.06 0 1.22.89 2.4 1 2.56.13.17 1.75 2.66 4.23 3.73.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.47-.07 1.46-.6 1.67-1.18.2-.58.2-1.07.14-1.18-.06-.1-.22-.16-.47-.28z'/%3E%3C/svg%3E");
}

/* ---------- Animações de entrada (scroll reveal) ---------- */
.js .section .container > *,
.js .hero__text,
.js .hero__media,
.js .page-head .container > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2, .65, .25, 1), transform .7s cubic-bezier(.2, .65, .25, 1);
}
.js .is-visible {
  opacity: 1 !important;
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .js .section .container > *,
  .js .hero__text,
  .js .hero__media,
  .js .page-head .container > * { opacity: 1; transform: none; transition: none; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cognac); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; font-weight: 600; }

p { margin: 0 0 1em; }

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

.section { padding: 60px 0; }
.section--alt { background: var(--ivory-2); }
.section--soft { background: var(--soft); }
.section--dark {
  background:
    radial-gradient(120% 120% at 85% 8%, rgba(194, 135, 62, .13), transparent 55%),
    #1a1611;
  color: var(--ivory);
}
.section--dark .section__intro h2,
.section--dark h2 { color: #fff; }
.section--dark .section__intro p { color: rgba(247, 242, 234, .82); }
.section--dark .eyebrow { color: var(--amber); }
.section--dark .badge {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(247, 242, 234, .13);
  box-shadow: none;
}
.section--dark .badge:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(194, 135, 62, .55);
  box-shadow: none;
}
.section--dark .badge strong { color: var(--amber); }
.section--dark .badge span { color: rgba(247, 242, 234, .72); }
/* Surgir em sequência (stagger) na faixa escura */
.js .section--dark .badges { opacity: 1 !important; transform: none !important; }
.js .section--dark .badge {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .section--dark .badge.is-visible { opacity: 1; transform: none; }
.js .section--dark .badge:nth-child(2) { transition-delay: .1s; }
.js .section--dark .badge:nth-child(3) { transition-delay: .2s; }
.js .section--dark .badge:nth-child(4) { transition-delay: .3s; }
.js .section--dark .badge:nth-child(5) { transition-delay: .4s; }
.section__intro { max-width: 660px; margin: 0 auto 42px; }
.section__intro p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 600;
  margin-bottom: .8em;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .22s ease, background .22s ease, color .22s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
/* CTA principal (agendar): cognac, com ícone do WhatsApp */
.btn--whats { background: var(--cognac); color: #fff; box-shadow: 0 8px 22px rgba(158, 90, 43, .30); }
.btn--whats:hover { background: var(--cognac-dark); color: #fff; box-shadow: 0 14px 32px rgba(158, 90, 43, .42); }
.btn--whats::before {
  content: "";
  width: 19px; height: 19px;
  flex: none;
  background: currentColor;
  -webkit-mask: var(--wa) center / contain no-repeat;
  mask: var(--wa) center / contain no-repeat;
}
/* Secundário: tinta profunda */
.btn--primary { background: var(--ink); color: var(--ivory); box-shadow: 0 8px 22px rgba(33, 27, 21, .18); }
.btn--primary:hover { background: var(--ink-2); color: #fff; box-shadow: 0 14px 32px rgba(33, 27, 21, .26); }
/* Contorno */
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
/* CTA cognac sem ícone (envio de formulário) */
.btn--accent { background: var(--cognac); color: #fff; box-shadow: 0 8px 22px rgba(158, 90, 43, .30); }
.btn--accent:hover { background: var(--cognac-dark); color: #fff; box-shadow: 0 14px 32px rgba(158, 90, 43, .42); }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
}
.brand span { display: block; font-family: var(--sans); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--cognac); font-weight: 600; margin-top: 2px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.main-nav { display: none; }
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block;
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: 14px 0;
}
.main-nav a:hover { color: var(--cognac); text-decoration: none; }

.main-nav.is-open {
  display: block;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px 22px 18px;
}
.main-nav.is-open ul { display: flex; flex-direction: column; }
.main-nav.is-open .btn { margin-top: 10px; align-self: flex-start; color: var(--ivory); }

/* ---------- Herói ---------- */
.hero {
  background:
    radial-gradient(120% 100% at 90% 4%, rgba(194, 135, 62, .09), transparent 55%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 0 0 44px;
}
.hero h1 { font-size: 2.6rem; }
.hero p.lead { font-size: 1.16rem; color: var(--ink-2); max-width: 560px; margin: 0 0 1.7em; }
.hero .eyebrow { color: var(--cognac); }
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__grid { display: grid; gap: 24px; }
.hero__col { display: contents; }
.hero__media { order: 1; }
.hero__text { order: 2; }
.hero__btns { order: 3; display: flex; flex-wrap: nowrap; gap: 10px; }
.hero__btns .btn { flex: 1 1 0; min-width: 0; padding-left: 16px; padding-right: 16px; font-size: .94rem; white-space: nowrap; }
.lbl-d { display: none; }
.lbl-m { display: inline; }
.hero__media {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}

/* ---------- Festival CORDA ---------- */
.festival__grid { display: grid; gap: 30px; align-items: center; }
.festival__poster {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(33, 27, 21, .18);
}
.festival__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.festival__text p { color: var(--ink-soft); }

/* ---------- Vídeo (YouTube responsivo 16:9) ---------- */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(33, 27, 21, .16);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Selo de avaliações do Google ---------- */
.g-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(33, 27, 21, .06);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.g-reviews:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(33, 27, 21, .1); border-color: var(--cognac); }
.g-reviews__g { font-family: var(--serif); font-weight: 700; color: var(--cognac); font-size: 1.1rem; line-height: 1; }
.g-reviews__stars { color: #e7a83a; letter-spacing: 1px; }

/* ---------- Seção "O violinista" (foto + texto) ---------- */
.about-grid { display: grid; gap: 32px; align-items: center; }
.about-media img { width: 100%; border-radius: 10px; box-shadow: var(--shadow); }
.about-text p { color: var(--ink-soft); }
.about-text .btn { margin-top: .4em; }

/* ---------- Selos / credenciais ---------- */
.badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
}
.badge {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(33, 27, 21, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.badge:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(33, 27, 21, .12); }
.badge strong { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--cognac); font-weight: 600; line-height: 1.15; }
.badge span { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 20px; }
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(33, 27, 21, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(33, 27, 21, .13); border-color: rgba(158, 90, 43, .35); }
.card h3 { color: var(--ink); }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card .icon {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(158, 90, 43, .10);
  border-radius: 12px;
  margin-bottom: .7em;
}
/* Tons coloridos para os ícones (mais vida) */
.ic-cognac { background: rgba(158, 90, 43, .13) !important; }
.ic-teal   { background: rgba(47, 111, 99, .15) !important; }
.ic-gold   { background: rgba(192, 135, 62, .20) !important; }
.ic-coral  { background: rgba(192, 87, 58, .15) !important; }
.ic-blue   { background: rgba(58, 92, 140, .14) !important; }

/* ---------- Lista de conquistas ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feature-list li {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 18px 16px 48px;
  position: relative;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.feature-list li::before {
  content: "♪";
  position: absolute;
  left: 18px; top: 14px;
  color: var(--cognac);
  font-size: 1.25rem;
}

/* ---------- Depoimento ---------- */
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.quote cite { display: block; margin-top: .7em; font-family: var(--sans); font-size: .9rem; font-style: normal; color: var(--cognac); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Carrossel de depoimentos ---------- */
.carousel { position: relative; max-width: 820px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.4, 0, .2, 1); }
.testimonial {
  flex: 0 0 100%;
  margin: 0;
  padding: 6px 10px 0;
  text-align: center;
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.testimonial cite {
  display: block;
  margin-top: 1.1em;
  font-family: var(--sans);
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 600;
}
.carousel__dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.carousel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0; padding: 0;
  cursor: pointer;
  background: rgba(33, 27, 21, .2);
  transition: background .2s ease, transform .2s ease;
}
.carousel__dot.is-active { background: var(--cognac); transform: scale(1.3); }
.carousel__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.carousel__arrow:hover { background: var(--cognac); color: #fff; border-color: var(--cognac); }
.carousel__arrow--prev { left: -6px; }
.carousel__arrow--next { right: -6px; }
@media (max-width: 720px) {
  .carousel__arrow { display: none; }
  .testimonial p { font-size: 1.22rem; }
}

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory-2);
  box-shadow: var(--shadow);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(33, 27, 21, .88));
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  padding: 26px 14px 12px;
  text-align: left;
}

/* ---------- Lightbox (clicar na foto para ampliar) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 12, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 95%; max-height: 92%; border-radius: 8px; box-shadow: 0 24px 70px rgba(0, 0, 0, .5); }
.lightbox__close {
  position: absolute;
  top: 14px; right: 20px;
  width: 44px; height: 44px;
  background: none; border: 0;
  color: #fff; font-size: 2.2rem; line-height: 1;
  cursor: pointer;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 4px 22px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.06rem;
  font-family: var(--serif);
  color: var(--ink);
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 15px;
  font-size: 1.5rem;
  color: var(--cognac);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-bottom: 16px; margin: 0; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; gap: 14px; }
.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-card:hover { text-decoration: none; border-color: var(--cognac); }
.contact-card .icon { font-size: 1.7rem; }
.contact-card b { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.contact-card a, .contact-card span { color: var(--ink-soft); }

/* ---------- Mapa / endereço ---------- */
.map-wrap { margin-top: 26px; }
.map-address {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
}
.map-address .icon { font-size: 1.6rem; }
.map-address b { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.map-address div { color: var(--ink-soft); }
.map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- Cards de aprovações ---------- */
.approvals { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.approval {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 5px 16px rgba(33, 27, 21, .06);
  transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease, border-color .25s ease;
}
.approval:hover { transform: translateY(-6px) scale(1.03) !important; box-shadow: 0 18px 38px rgba(158, 90, 43, .22); border-color: var(--cognac); }
.approval__icon { font-size: 1.35rem; display: block; margin-bottom: .3em; }
.approval h3 { font-size: 1.2rem; color: var(--cognac); margin: 0 0 .12em; }
.approval p { font-size: .82rem; color: var(--ink-soft); margin: 0; }
/* Surgir em sequência (chamativo) */
.js .approvals { opacity: 1 !important; transform: none !important; }
.js .approval { opacity: 0; transform: translateY(22px) scale(.94); transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .2, 1); }
.js .approval.is-visible { opacity: 1; transform: none; }
.js .approval:nth-child(2) { transition-delay: .09s; }
.js .approval:nth-child(3) { transition-delay: .18s; }
.js .approval:nth-child(4) { transition-delay: .27s; }
.approvals-note { text-align: center; color: var(--ink-soft); margin: 22px 0 0; font-size: .95rem; }

/* ---------- O Estúdio (diferenciais) ---------- */
.studio-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.studio-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 6px 22px rgba(33, 27, 21, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.studio-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(33, 27, 21, .13); border-color: rgba(158, 90, 43, .35); }
.studio-card .icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(33, 27, 21, .06);
  color: var(--cognac);
  border-radius: 12px;
  margin-bottom: .9em;
}
.studio-card .icon svg { width: 26px; height: 26px; }
.studio-card h3 { color: var(--ink); margin-bottom: .3em; }
.studio-card p { color: var(--ink-soft); margin: 0; }
.studio-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--cognac);
  background: rgba(158, 90, 43, .1);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Contato em duas colunas + formulário ---------- */
.contact-cols { display: grid; gap: 32px; align-items: start; }
.contact-intro h2 { font-size: 2.4rem; }
.contact-intro h2 em { color: var(--cognac); font-style: italic; }
.contact-intro > p { color: var(--ink-soft); max-width: 420px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list .ci { font-size: 1.2rem; flex: none; }
.contact-list a { color: var(--ink-soft); }
.contact-list a:hover { color: var(--cognac); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.7rem; margin-bottom: .8em; }
#lead-form label { display: block; font-weight: 600; font-size: .85rem; color: var(--ink); margin-bottom: 16px; }
#lead-form input,
#lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ivory);
}
#lead-form textarea { resize: vertical; min-height: 112px; line-height: 1.5; }
#lead-form input::placeholder,
#lead-form textarea::placeholder { color: #a99e90; }
#lead-form input:focus,
#lead-form textarea:focus {
  outline: none;
  border-color: var(--cognac);
  box-shadow: 0 0 0 3px rgba(158, 90, 43, .14);
}
#lead-form .btn { margin-top: 6px; }
.form-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin: 14px 0 0; }

/* ---------- CTA faixa (tinta profunda) ---------- */
.cta-band {
  background:
    radial-gradient(120% 120% at 80% 15%, rgba(158, 90, 43, .35), transparent 55%),
    var(--ink);
  color: var(--ivory);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(247, 242, 234, .8); max-width: 580px; margin: 0 auto 1.5em; }

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247, 242, 234, .8);
  padding: 44px 0 28px;
  font-size: .95rem;
}
.site-footer a { color: var(--amber); }
.footer-grid { display: grid; gap: 26px; margin-bottom: 26px; }
.site-footer h4 { font-family: var(--serif); color: #fff; font-size: 1.2rem; margin: 0 0 .6em; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 7px; }
.footer-bottom { border-top: 1px solid rgba(247, 242, 234, .16); padding-top: 18px; font-size: .82rem; color: rgba(247, 242, 234, .55); text-align: center; }

/* ---------- Botão flutuante WhatsApp ---------- */
.whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  color: #fff;
}
.whats-float::before {
  content: "";
  width: 32px; height: 32px;
  background: currentColor;
  -webkit-mask: var(--wa) center / contain no-repeat;
  mask: var(--wa) center / contain no-repeat;
}
.whats-float:hover { text-decoration: none; transform: scale(1.08); }

/* ---------- Página interna: cabeçalho (tinta profunda) ---------- */
.page-head {
  background:
    radial-gradient(120% 120% at 82% 12%, rgba(194, 135, 62, .28), transparent 55%),
    var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 60px 0;
}
.page-head h1 { color: #fff; }
.page-head .eyebrow { color: var(--amber); }
.page-head p { color: rgba(247, 242, 234, .82); max-width: 580px; margin: 0 auto; }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 1.7em; }
.prose p { color: var(--ink-soft); }
.prose strong { color: var(--ink-2); }

/* =================================================================
   Tablet / Desktop
   ================================================================= */
@media (min-width: 760px) {
  h1 { font-size: 3rem; }
  .hero h1 { font-size: 3.5rem; }
  .section { padding: 84px 0; }

  .nav-toggle { display: none; }
  .main-nav { display: block; }
  .main-nav ul { display: flex; align-items: center; gap: 30px; }
  .main-nav a { padding: 8px 0; }
  .main-nav .btn { padding: 10px 20px; color: var(--ivory); }

  .cards { grid-template-columns: repeat(3, 1fr); }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery--page { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }

  .hero__grid {
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    column-gap: 48px;
  }
  .hero { padding: 30px 0 52px; }
  .hero__col { display: flex; flex-direction: column; gap: 22px; }
  .hero__text, .hero__media, .hero__btns { order: 0; }
  .hero__media {
    position: static;
    left: auto; right: auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    box-shadow: 0 22px 50px rgba(33, 27, 21, .22);
  }
  .hero__btns { flex-wrap: wrap; }
  .hero__btns .btn { flex: 0 0 auto; padding-left: 28px; padding-right: 28px; font-size: 1rem; }
  .lbl-d { display: inline; }
  .lbl-m { display: none; }
  .festival__grid { grid-template-columns: 250px 1fr; }
  .approvals { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-cols { grid-template-columns: 1fr 1fr; gap: 44px; }
  .contact-intro h2 { font-size: 3rem; }
}
