:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --text: #1d1d1f;
  --muted: #86868b;
  --brand: #1d1d1f;
  --brand-dark: #000000;
  --gold-bright: #c9a227;
  --gold-soft: #f5f0e1;
  --ink: #1d1d1f;
  --header-bg: rgba(251, 251, 253, 0.8);
  --header-text: #1d1d1f;
  --header-muted: #86868b;
  --ring: rgba(0, 113, 227, 0.5);
  --radius: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --font: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --space: clamp(1.5rem, 5vw, 3rem);
  --max: 1152px;
  --touch: 44px;
  --line-soft: rgba(0, 0, 0, 0.05);
  --gold-12: rgba(29, 29, 31, 0.04);
  --gold-15: rgba(29, 29, 31, 0.08);
  --gold-20: rgba(29, 29, 31, 0.12);
  --gold-35: rgba(29, 29, 31, 0.16);
  --gold-line: rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--brand-dark);
  text-underline-offset: 0.15em;
}

a:hover:not(.btn) {
  color: var(--ink);
}

a.btn {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--header-bg);
  color: var(--gold-bright);
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 0.3s ease;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .nav-backdrop {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 64px;
  padding-block: 0.5rem;
  z-index: 101;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--header-text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--gold-soft);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--touch);
  height: var(--touch);
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  color: var(--header-text);
  z-index: 102;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 22px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle .nav-toggle-x {
  display: none;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 300;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-x {
  display: block;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  display: none;
  position: fixed;
  left: 0;
  right: -100vw; /* ensure it doesn't get clipped horizontally */
  width: 100vw;
  top: 0;
  height: 100vh;
  height: 100dvh;
  padding-top: calc(64px + env(safe-area-inset-top, 0px));
  z-index: 95;
  background: rgba(251, 251, 253, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding-inline: 1rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: inset 0 1px 0 var(--line-soft);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

.nav.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav .nav-list a {
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  min-height: var(--touch);
  font-weight: 500;
  font-size: 1.05rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav .nav-list a:hover,
.nav .nav-list a.active {
  background: rgba(0, 0, 0, 0.04);
}

.nav .nav-list a.active {
  font-weight: 600;
  color: var(--text);
}

.nav .nav-list a:hover {
  color: var(--brand-dark);
}

@media (min-width: 1024px) {
  body.menu-open {
    overflow: auto;
  }

  .nav {
    display: flex;
    position: static;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    flex: 1;
    min-width: 0;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .nav.is-open {
    transform: none;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }

  .nav .nav-list a {
    padding: 0.45rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .nav .nav-list a:hover {
    color: var(--brand-dark);
    background: rgba(0, 0, 0, 0.04);
  }
}

@media (min-width: 1200px) {
  .nav .nav-list a {
    padding: 0.5rem 0.7rem;
    font-size: 0.875rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #333336;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.3);
}

.header-cta-group {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-cta-group {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
}

.site-header .header-cta.btn-ghost.header-cta-secondary {
  color: var(--brand);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding-inline: 1.25rem;
}

.site-header .header-cta.btn-ghost.header-cta-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.3);
}

/* Hero */
.hero {
  padding-block: clamp(2.5rem, 8vw, 5rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--text);
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 42ch;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-more {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}

.hero-more a {
  font-weight: 600;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-meta li {
  margin: 0;
}

.hero-meta strong {
  color: var(--text);
  display: block;
  font-size: 0.9375rem;
}

.hero-figure {
  margin: 0;
  width: 100%;
  max-width: min(640px, 100%);
  justify-self: center;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.hero-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}

.hero-photo-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.hero-photo-caption a {
  font-weight: 600;
}

/* Quem sou */
section.about {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.about-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-inner > * {
  min-width: 0;
}

@media (min-width: 800px) {
  .about-inner {
    grid-template-columns: minmax(200px, min(420px, 45vw)) 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

.about-figure {
  margin: 0;
  max-width: 100%;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.about-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 1px);
}

.about-caption {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.about-caption a {
  font-weight: 600;
}

.about-copy .section-title {
  margin-bottom: 1rem;
}

.about-lead,
.about-text {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 48ch;
}

.about-lead strong {
  color: var(--text);
  font-weight: 700;
}

.about-instagram {
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.about-instagram a {
  font-weight: 700;
}

/* Sections */
section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.section-intro {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 50ch;
}

.cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.icon-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.bg-alt {
  background: var(--surface);
}

/* Galerias */
.gallery-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-intro .gallery-path {
  font-family: ui-monospace, monospace;
  font-size: 0.88em;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) - 4px);
  cursor: zoom-in;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-trigger:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.gallery-trigger img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.photo-lightbox {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  margin: 0;
  padding: 1.25rem;
  box-sizing: border-box;
  border: none;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
}

.photo-lightbox[open] {
  display: flex;
}

.photo-lightbox::backdrop {
  background: rgba(10, 10, 10, 0.88);
  cursor: pointer;
}

.photo-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
}

.photo-lightbox-img {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-line);
}

.photo-lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  width: var(--touch);
  height: var(--touch);
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.photo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.photo-lightbox-close:hover {
  background: #1f1f1f;
  color: #fff;
}

@media (max-width: 520px) {
  .photo-lightbox-close {
    top: -3rem;
    right: -0.25rem;
  }
}

/* Differentials */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.list-check li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.list-check li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold-bright);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* CTA band */
.cta-band {
  background: linear-gradient(160deg, #121212 0%, #0a0a0a 100%);
  color: #f5f5f4;
  text-align: center;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius);
  margin-block: 2rem;
  border: 1px solid var(--gold-line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  opacity: 0.88;
  max-width: 42ch;
  color: #d4d4d4;
}

.cta-band .btn-primary {
  background: linear-gradient(145deg, #d4af37 0%, #b8941e 55%, #9a7b18 100%);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.cta-band .btn-primary:hover {
  background: linear-gradient(145deg, #e0bc4a 0%, #c9a227 55%, #a88626 100%);
  color: var(--ink);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Footer */
.site-footer {
  padding-block: 2rem 2.5rem;
  background: var(--ink);
  border-top: 1px solid var(--gold-line);
  font-size: 0.875rem;
  color: #a3a3a3;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer strong {
  color: #e5e5e5;
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-admin {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
  }
  .btn:active {
    transform: none;
  }
  .faq-item summary::after {
    transition: none;
  }
  .gallery-trigger {
    transition: none;
  }
  .gallery-trigger:hover {
    transform: none;
  }
}

/* FAQ — <details> nativo, sem JS */
.faq {
  max-width: 40rem;
}

.faq-item {
  margin-bottom: 0.5rem;
  border: 1px solid var(--line-soft);
  border-left: 3px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--touch);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.75rem;
  text-align: center;
  font-weight: 700;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.1rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 0.75rem;
}

/* Barra de conversão — mobile */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 0.65rem 1rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
    background: rgba(251, 251, 253, 0.88);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--line-soft);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
  }

  .sticky-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 28rem;
    margin-inline: auto;
  }

  .sticky-cta .btn-primary,
  .sticky-cta .btn-sticky-outline {
    width: 100%;
  }

  .btn-sticky-outline {
    background: transparent;
    color: var(--brand);
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: none;
    font-weight: 600;
  }

  .btn-sticky-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand);
    border-color: rgba(0, 0, 0, 0.3);
  }

  body {
    padding-bottom: 6.75rem;
  }
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.map-embed {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: min(52vh, 400px);
  min-height: 260px;
  border: 0;
  display: block;
}

.contact-studio {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.contact-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

.contact-note a {
  font-weight: 600;
  color: var(--brand-dark);
}

.contact-note a:hover {
  color: var(--ink);
}

/* Depoimentos (vinculados às avaliações do Google) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.testimonials-section {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}

.reviews-google-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.reviews-google-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.testimonials-section .testimonial-stars {
  color: var(--gold-bright);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(10, 10, 10, 0.15);
}

.reviews-google-link {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonials-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.testimonial-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  height: 100%;
}

.testimonial-stars-row {
  margin: 0 0 0.75rem;
}

.testimonial-quote {
  margin: 0;
}

.testimonial-quote p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}

.testimonial-quote p::before {
  content: "“";
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 0;
  margin-right: 0.1em;
}

.testimonial-author {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.testimonials-foot {
  margin: 2rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 52ch;
}

.testimonials-foot a {
  font-weight: 600;
}

.testimonials-google-only {
  display: none;
  margin-bottom: 1.75rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.testimonials-google-only-lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 48ch;
}

.testimonials-google-cta {
  margin-top: 0.25rem;
}

.testimonials-section.is-google-mode .testimonials-google-only {
  display: block;
}

.testimonials-section.is-google-mode .testimonials-grid,
.testimonials-section.is-google-mode .section-intro,
.testimonials-section.is-google-mode .testimonials-foot {
  display: none;
}

.testimonials-section.is-google-mode .reviews-google-strip {
  margin-bottom: 1rem;
}

/* Mobile Alignment Tweaks */
@media (max-width: 899px) {
  .hero-badge,
  .hero h1,
  .hero-lead,
  .hero-more,
  .hero-meta {
    text-align: center;
    margin-inline: auto;
  }
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }
}

@media (max-width: 799px) {
  .about-copy,
  .section-title,
  .section-intro,
  .contact-studio,
  .contact-note,
  .testimonials-foot,
  .testimonials-google-only-lead {
    text-align: center;
    margin-inline: auto;
  }
  .list-check {
    justify-content: center;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.8s;
  will-change: opacity, transform, visibility;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* Staggered reveals for cards and galleries */
.reveal.delay-100 { transition-delay: 100ms; }
.reveal.delay-200 { transition-delay: 200ms; }
.reveal.delay-300 { transition-delay: 300ms; }
