/* ==========================================================================
   Zyck Films — folha de estilo única do site
   Sumário: 1 Base · 2 Layout · 3 Botões · 4 Topo e menu · 5 Hero · 6 Seções
            7 Cards · 8 Página do casal · 9 Contato · 10 Pacotes · 11 Landing
            12 Modal · 13 Rodapé · 14 Responsivo
   ========================================================================== */

/* 1. Base ---------------------------------------------------------------- */
:root {
  --accent: #c8a15b;
  --accent-dark: #8a6d3b;
  --ink: #15120f;
  --ink-2: #0e0b08;
  --ivory: #f7f2e7;
  --ivory-2: #eee5d2;
  --line: #2a231a;
  --line-2: #4a4237;
  --text-muted-dark: #cfc6b4;
  --text-faint-dark: #9a8d78;
  --text-body: #453a2c;
  --text-body-2: #55483a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Work Sans', sans-serif; background: var(--ivory); color: #1c1712; }
h1, h2, h3, .display { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.text-center { text-align: center; }

/* 2. Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: 1080px; margin: 0 auto; }
.container--md { max-width: 900px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }

.section { width: 100%; padding: 64px 6vw; }
.section--center { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.section--row { display: flex; justify-content: center; }
.section--gap-sm { gap: 20px; }
.section--md { padding-top: 56px; padding-bottom: 56px; }
.section--flush-top { padding-top: 0; padding-bottom: 72px; }
.bg-ink { background: var(--ink); }
.bg-ivory { background: var(--ivory); }
.bg-ivory-2 { background: var(--ivory-2); }
.bg-glow { background: radial-gradient(circle at 80% 20%, #241d16 0%, #15120f 60%); }

.eyebrow { color: var(--accent); letter-spacing: 2px; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.eyebrow--lg { letter-spacing: 3px; }
.eyebrow--sm { letter-spacing: 1.5px; font-size: 12px; font-weight: 700; }
.eyebrow--dark { color: var(--accent-dark); }

.section-head { text-align: center; display: flex; flex-direction: column; gap: 10px; }
.section-head--narrow { max-width: 640px; }
.section-title { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 600; }
.bg-ink .section-title, .bg-glow .section-title { color: var(--ivory); }
.prose { color: var(--text-body); font-size: 16px; line-height: 1.7; margin: 0; }
.note { color: var(--text-body-2); font-size: 14px; max-width: 480px; margin: 0; }

/* 3. Botões -------------------------------------------------------------- */
.btn {
  display: inline-block; border: 0; border-radius: 999px; font-family: inherit; text-align: center;
  font-weight: 700; font-size: 16px; padding: 16px 32px; cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-secondary { background: transparent; color: var(--ivory); font-weight: 600; border: 1.5px solid var(--line-2); }
.btn-outline { background: transparent; color: var(--accent); font-weight: 600; font-size: 15px; padding: 14px 28px; border: 1.5px solid var(--line-2); }
.btn-outline--light { color: var(--accent-dark); border-color: #d8cdb4; font-size: 14px; padding: 12px 24px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-md { padding: 14px 26px; font-size: 15px; }
.btn-block { display: block; width: 100%; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* 4. Topo e menu --------------------------------------------------------- */
.topbar {
  width: 100%; background: var(--ink); padding: 18px 6vw; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50;
}
.topbar--static { position: static; border-bottom: 0; }
.brand { color: var(--ivory); font-size: 22px; letter-spacing: 1px; font-weight: 600; white-space: nowrap; }
.brand span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 28px; }
.navlink { color: var(--text-muted-dark); font-size: 14px; font-weight: 500; }
.navlink:hover { color: var(--ivory); }
.navlink[aria-current] { color: var(--accent); }

/* menu hambúrguer (montado por menu.js) */
.menu-toggle {
  display: none; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0;
  cursor: pointer; background: none; border: 1.5px solid var(--line-2); border-radius: 10px; color: var(--ivory);
}
.menu-toggle:hover, .menu-toggle:focus-visible { border-color: var(--accent); outline: none; }
.mobile-menu {
  display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 4px 6vw 12px; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}
.mobile-menu a { color: var(--text-muted-dark); font-size: 16px; font-weight: 500; padding: 15px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--ivory); }
.mobile-menu a[aria-current] { color: var(--accent); }

/* 5. Hero ---------------------------------------------------------------- */
.hero {
  width: 100%; padding: 64px 6vw 56px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
  background: radial-gradient(circle at 20% 20%, #241d16 0%, #15120f 55%, #0e0b08 100%);
}
.hero--lg { padding: 72px 6vw 64px; }
.hero--sm { padding: 56px 6vw 48px; gap: 14px; }
.hero--xs { padding: 48px 6vw 40px; gap: 14px; background: var(--ink); }
.hero h1 { color: var(--ivory); font-size: clamp(28px, 5.5vw, 52px); font-weight: 600; line-height: 1.15; max-width: 880px; margin: 0; }
.hero p { color: var(--text-muted-dark); font-size: clamp(15px, 2vw, 18px); max-width: 620px; line-height: 1.6; margin: 0; }
.hero--lg h1 { font-size: clamp(30px, 6vw, 56px); max-width: 900px; }
.hero--sm h1, .hero--xs h1 { font-size: clamp(26px, 5vw, 42px); line-height: 1.2; max-width: 780px; }
.hero--sm p, .hero--xs p { font-size: 15px; max-width: 540px; }
.rating { display: flex; align-items: center; gap: 10px; margin-top: 14px; color: #e4c98a; font-size: 15px; }
.rating__stars { letter-spacing: 2px; }
.rating span:last-child { color: var(--text-muted-dark); }

/* 6. Seções -------------------------------------------------------------- */
.about { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.about__photo { width: 320px; height: 420px; border-radius: 16px; overflow: hidden; flex-shrink: 0; background: var(--ink); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 83%; }
.about__text { max-width: 480px; display: flex; flex-direction: column; gap: 16px; }

.pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 760px; }
.pill { background: #fff; padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--text-body); }

.cta-box { max-width: 560px; width: 100%; display: flex; flex-direction: column; gap: 20px; text-align: center; align-items: center; }
.cta-box--sm { max-width: 520px; gap: 16px; }
.cta-box .section-title { font-size: clamp(24px, 3.4vw, 36px); }
.cta-box--sm .section-title { font-size: clamp(22px, 3vw, 30px); }
.cta-box__text { color: var(--text-muted-dark); font-size: 16px; margin: 0; max-width: 460px; }
.contact-list { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; color: var(--text-muted-dark); font-size: 14px; }
.contact-list a { color: var(--text-muted-dark); }
.contact-list .strong { color: var(--ivory); font-weight: 500; }

.faq { width: 100%; max-width: 720px; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border-radius: 12px; padding: 16px 20px; }
.faq summary { font-weight: 600; font-size: 14px; cursor: pointer; color: #24190f; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; font-size: 20px; color: var(--accent); }
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 10px 0 0; color: var(--text-body-2); font-size: 14px; line-height: 1.6; }
.faq--lg details { padding: 18px 22px; }
.faq--lg summary { font-size: 15px; }
.faq--lg p { margin-top: 12px; }

/* 7. Cards --------------------------------------------------------------- */
.card { transition: transform 0.2s ease; }
.card:hover { transform: translateY(-4px); }

.work-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 16/9;
  padding: 16px; border: 0; border-radius: 14px; overflow: hidden; text-align: left; font-family: inherit;
  background: var(--ink); cursor: pointer;
}
.work-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.work-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,18,15,0) 40%, rgba(21,18,15,0.9) 100%); z-index: 1; }
.work-card .play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.work-card__name, .work-card__meta { position: relative; z-index: 2; }
.work-card__name { color: var(--ivory); font-weight: 600; font-size: 17px; }
.work-card__meta { color: var(--text-muted-dark); font-size: 13px; }

.testimonial { background: #fff; border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.testimonial__stars { color: var(--accent); letter-spacing: 2px; }
.testimonial p { margin: 0; font-size: 15px; line-height: 1.6; color: #35291c; }
.testimonial__author { font-weight: 600; font-size: 14px; color: var(--accent-dark); }

.info-card { background: #fff; border-radius: 14px; padding: 24px 26px; }

/* 8. Página do casal ----------------------------------------------------- */
.crumbs { width: 100%; background: var(--ink); padding: 18px 6vw 0; font-size: 13px; color: var(--text-muted-dark); }
.crumbs a { color: var(--text-muted-dark); }
.crumbs span { color: var(--accent); }
.video-hero { width: 100%; background: var(--ink); padding: 24px 6vw 56px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.video-hero__head { display: flex; flex-direction: column; gap: 10px; }
.video-hero h1 { color: var(--ivory); font-size: clamp(26px, 5vw, 40px); font-weight: 600; margin: 0; }
.video-hero__date { color: var(--text-muted-dark); font-size: 14px; }
.video-block { display: flex; flex-direction: column; gap: 12px; }
.video-block__title { margin: 8px 0 0; text-align: center; color: var(--ivory); font-size: clamp(24px, 3.6vw, 34px); font-weight: 600; line-height: 1.2; }
.video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden; }
.video-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.video-play::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,18,15,0) 45%, rgba(21,18,15,0.65) 100%); }
.video-play .play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }
.story { display: flex; flex-direction: column; gap: 18px; text-align: center; align-items: center; }
.story .prose { max-width: 620px; }
.story .btn-outline { margin-top: 4px; }

/* 9. Contato ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  background: #fff; border-radius: 16px; padding: 26px 28px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); color: inherit; transition: transform 0.2s ease;
}
a.contact-card:hover { transform: translateY(-3px); }
.contact-card__title { font-weight: 600; font-size: 15px; }
.contact-card__text { color: var(--text-body-2); font-size: 14px; }

/* 10. Pacotes (página privada) ------------------------------------------- */
.grid-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.plan-card {
  background: #fff; border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06); border: 1px solid #ece4d4;
}
.plan-card--featured { border-color: var(--accent); box-shadow: 0 4px 20px rgba(200, 161, 91, 0.18); }
.plan-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-card li { font-size: 14px; color: var(--text-body); line-height: 1.5; }
.plan-card .btn { margin-top: auto; }
.plan-price { font-size: 30px; font-weight: 600; margin-top: 4px; }
.plan-sub { font-size: 13px; color: var(--text-body-2); margin-top: 2px; }
.extra { max-width: 620px; display: flex; flex-direction: column; gap: 10px; text-align: center; align-items: center; }
.extra h2 { margin: 0; font-size: 24px; font-weight: 600; }
.extra p { color: var(--text-body-2); font-size: 14px; margin: 0; }
.pay { max-width: 1000px; display: flex; flex-direction: column; gap: 14px; }
.pay .grid-plans { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .pay .grid-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pay .grid-plans { grid-template-columns: 1fr; } }
.pay__title { font-weight: 600; font-size: 15px; }
.pay__text { color: var(--text-body-2); font-size: 13px; margin-top: 6px; }
.faq--md { max-width: 700px; }
.plan-card { position: relative; }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: var(--accent); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
}
.plan-single { max-width: 480px; }
.plan-info {
  margin-top: 22px; display: flex; flex-direction: column; gap: 16px; padding: 18px 20px;
  background: rgba(255, 255, 255, 0.55); border: 1px solid #e3d9c2; border-radius: 14px;
}
.plan-info__title { font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 4px; }
.plan-info p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-body-2); }
.plan-info--center { max-width: 720px; margin-left: auto; margin-right: auto; }
.callout {
  margin-top: 18px; display: flex; flex-direction: column; gap: 10px; padding: 20px;
  background: #fff; border-radius: 14px; border-left: 4px solid var(--accent); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.callout__title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 19px; }
.callout p { margin: 0 0 4px; font-size: 14px; line-height: 1.6; color: var(--text-body-2); }
.plan-help { margin: 18px 0 0; text-align: center; font-size: 14px; color: var(--text-body-2); }
.plan-help a { color: var(--accent-dark); font-weight: 600; }.plans-note { text-align: center; color: var(--text-body-2); font-size: 14px; margin: 26px 0 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font: 600 20px 'Playfair Display', serif;
}
.step__title { font-weight: 600; font-size: 17px; }
.step__text { color: var(--text-body-2); font-size: 14px; line-height: 1.5; max-width: 250px; }

/* 11. Landing page (Google Ads) ------------------------------------------ */
.diffs { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.diff { max-width: 280px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.diff__title { font-weight: 600; font-size: 17px; }
.diff__text { color: var(--text-body-2); font-size: 14px; line-height: 1.5; }
.lead-form { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.lead-form__row { display: flex; gap: 14px; width: 100%; }
.field { flex: 1; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field label { color: var(--text-muted-dark); font-size: 13px; font-weight: 500; }
.field input {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1px solid var(--line-2);
  background: #1e1913; color: var(--ivory); font-size: 15px; font-family: 'Work Sans', sans-serif; outline: none;
}
.field input:focus { border-color: var(--accent); }
.lead-form__note { color: #a09482; font-size: 12px; margin: 4px 0 0; }

/* 12. Modal de vídeo (landing) ------------------------------------------- */
.modal { display: none; position: fixed; inset: 0; background: rgba(14, 11, 8, 0.92); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.modal__inner { width: 100%; max-width: 900px; }
.modal__bar { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.modal__close { background: none; border: 0; color: var(--ivory); font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.modal__frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; }
.modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* 13. Rodapé ------------------------------------------------------------- */
.footer { width: 100%; background: var(--ink-2); padding: 32px 6vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__brand { color: var(--ivory); font-size: 16px; font-weight: 600; }
.footer__social { display: flex; gap: 18px; }
.footer__social a { color: var(--text-muted-dark); }
.footer__copy { color: var(--text-faint-dark); font-size: 13px; }

/* 14. Responsivo --------------------------------------------------------- */
/* No site do estúdio o menu tem 6 links + WhatsApp, então vira hambúrguer já em 1100 px (no da Zyck, 780 px). */
@media (max-width: 1100px) {
  .hide-mobile { display: none !important; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
  .nav.has-menu { gap: 12px; }
}
@media (max-width: 720px) {
  .lead-form__row { flex-direction: column; }
}
@media (max-width: 420px) {
  .brand { font-size: 19px; letter-spacing: 0.5px; }
  .topbar .btn-sm { padding: 9px 14px; }
  .nav.has-menu { gap: 10px; }
}

/* 15. Fotografia — Mayara Rocha ------------------------------------------ */
.brand--long { font-size: 20px; letter-spacing: 0.5px; }
.text-block { max-width: 720px; display: flex; flex-direction: column; gap: 16px; text-align: center; align-items: center; }
.gallery { width: 100%; columns: 4; column-gap: 14px; }
@media (max-width: 900px) { .gallery { columns: 3; } }
@media (max-width: 600px) { .gallery { columns: 2; column-gap: 10px; } .gallery a { margin-bottom: 10px; border-radius: 10px; } }
.gallery a { display: block; margin: 0 0 14px; border-radius: 12px; overflow: hidden; background: var(--ink); break-inside: avoid; }
.gallery img { width: 100%; height: auto; transition: transform 0.35s ease; }
.gallery a:hover img { transform: scale(1.03); }
.timeline { max-width: 760px; width: 100%; display: flex; flex-direction: column; gap: 26px; }
.timeline__item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.timeline__title { font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.timeline__text { margin: 0; color: var(--text-body-2); font-size: 15px; line-height: 1.65; }
.testimonial--single { max-width: 560px; width: 100%; }
.grid-plans--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.studio { width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; }
.studio__text { display: flex; flex-direction: column; gap: 14px; }
.studio__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.studio__photos img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 12px; }
.address { font-style: normal; font-weight: 500; color: var(--text-body); line-height: 1.6; }
.address a { color: var(--accent-dark); font-weight: 600; }
@media (max-width: 480px) {
  .brand--long { font-size: 14px; letter-spacing: 0.3px; }
  .topbar .btn-wa__label { display: none; }
  .topbar .btn-wa { padding: 10px 12px; }
}

/* hero com foto de fundo e seção em duas colunas (páginas da Mayara) */
.hero--photo {
  position: relative; padding: 120px 6vw 108px; background-color: var(--ink);
  background-size: cover; background-position: center;
}
.hero--photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 11, 8, 0.62) 0%, rgba(14, 11, 8, 0.84) 100%); }
.hero--photo > * { position: relative; }
.hero--photo h1, .hero--photo p { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
/* hero com vídeo de fundo (só a home): a foto de capa fica de fundo e o vídeo entra por cima quando começa a rodar */
.hero--video {
  position: relative; overflow: hidden; min-height: min(78vh, 720px); justify-content: center; padding: 96px 6vw 84px;
  background-color: var(--ink); background-size: cover; background-position: center;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease;
}
.hero__video.is-playing { opacity: 1; }
.hero--video::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14, 11, 8, 0.6) 0%, rgba(14, 11, 8, 0.8) 100%); }
.hero--video > *:not(.hero__video):not(.hero__toggle) { position: relative; z-index: 2; }
.hero--video h1, .hero--video p { text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55); }
.hero__toggle {
  position: absolute; right: 16px; bottom: 16px; z-index: 3; width: 40px; height: 40px; padding: 0; display: none; align-items: center; justify-content: center;
  border: 1px solid rgba(200, 161, 91, 0.6); border-radius: 50%; background: rgba(21, 18, 15, 0.55); color: var(--accent); cursor: pointer;
}
.hero__toggle:hover { background: rgba(21, 18, 15, 0.8); }
.hero__toggle.is-visible { display: inline-flex; }
.hero__toggle .i-play { display: none; }
.hero__toggle[aria-pressed="true"] .i-play { display: block; }
.hero__toggle[aria-pressed="true"] .i-pause { display: none; }
@media (max-width: 800px) {
  .hero--video { min-height: 70vh; padding: 84px 6vw 72px; }
}
.split { width: 100%; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__text { display: flex; flex-direction: column; gap: 16px; }
.split__photo img { width: 100%; height: auto; border-radius: 16px; }
@media (max-width: 800px) {
  .hero--photo { padding: 84px 6vw 72px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* 16. Botão flutuante de WhatsApp ---------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 55; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #25d366; color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
@media (max-width: 480px) {
  .wa-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}
@media print { .wa-float { display: none; } }

/* 17. Texto legal (política de privacidade) e link do rodapé -------------- */
.legal { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.legal h2 { font-size: 22px; font-weight: 600; margin: 28px 0 0; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--text-body); font-size: 15.5px; line-height: 1.7; margin: 0; }
.legal ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal__updated { color: var(--text-body-2); font-size: 13px; }
.footer__link { color: var(--text-faint-dark); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; }
.footer__link:hover { color: var(--ivory); }

/* 18. Aviso de prévia (trabalho em aprovação do cliente) ------------------- */
.preview-banner { width: 100%; padding: 12px 6vw; background: #2a2314; border-bottom: 1px solid #6b5620; color: #f0d78a; font-size: 14px; line-height: 1.5; text-align: center; }
.preview-banner strong { color: var(--accent); }
/* 18. Site do estúdio: cartões de serviço da home ------------------------- */
.service-grid { width: 100%; max-width: 1120px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1099px) { .service-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; max-width: 400px; } }
.service-card { display: flex; flex-direction: column; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); color: inherit; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12); }
.service-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.service-card__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 24px; flex: 1; }
.service-card__title { font-size: 22px; font-weight: 600; color: #24190f; }
.service-card__text { margin: 0; color: var(--text-body-2); font-size: 15px; line-height: 1.6; }
.service-card__more { margin-top: auto; padding-top: 8px; color: var(--accent-dark); font-weight: 600; font-size: 14px; }.google-rating { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 12px; color: var(--text-body); font-size: 15px; }
.google-rating strong { color: #24190f; }
.google-rating__more { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.google-rating:hover .google-rating__more { color: #24190f; }.testimonial-grid { width: 100%; max-width: 1080px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.testimonial-grid .testimonial { flex: 1 1 300px; max-width: 340px; }
.testimonial__source { font-weight: 500; font-size: 12px; color: var(--text-body-2); }
.gallery--4 { columns: 4; }
@media (max-width: 1000px) { .gallery--4 { columns: 2; } }
