/* ============================================================
   IMPÉRIO DA MICROPIGMENTAÇÃO POR ANA LIRA
   Design: elegância / diamante / dourado sobre escuro
   ============================================================ */

:root {
  --ink: #171310;
  --ink-soft: #211a13;
  --ink-card: #2a2119;
  --gold: #c9a227;
  --gold-light: #ecd9a0;
  --gold-deep: #9a7a1e;
  --cream: #faf6ee;
  --cream-soft: #f3ead9;
  --blush: #ead9d2;
  --text-dark: #2b231b;
  --text-light: #f5efe4;
  --muted: #a89a85;
  --line: rgba(236, 217, 160, 0.18);
  --shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

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

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241c0b;
  box-shadow: 0 12px 30px -10px rgba(201, 162, 39, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201, 162, 39, 0.7); }

.btn-outline {
  border-color: rgba(236, 217, 160, 0.45);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(201, 162, 39, 0.1); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: var(--gold-light);
}
.btn-dark:hover { transform: translateY(-2px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; }
.topbar a:hover { color: var(--gold-light); }
.topbar .topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar .phone { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-light); }

/* ---------- Header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 19, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.6); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.85;
  position: relative;
  transition: opacity 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.8rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 480px at 85% 0%, rgba(201, 162, 39, 0.1), transparent 60%);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, #a8872a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-visual .frame img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; }

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before, .section-head .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--cream); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Services grid ---------- */
.section-services { background: var(--ink-soft); padding: 110px 0; }
.section-services .section-head h2, .section-services .section-head p { color: var(--text-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.45); box-shadow: var(--shadow); }

.service-card .icon {
  width: 74px; height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  margin-bottom: 22px;
  color: var(--gold-light);
}
.service-card .icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.28rem; color: var(--cream); margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.service-card .link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card:hover .link svg { transform: translateX(4px); }

.services-more {
  text-align: center;
  margin-top: 48px;
}

/* ---------- Formações ---------- */
.section-formacoes { background: var(--ink); padding: 110px 0 90px; }
.formacoes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.formacao-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.formacao-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.45); }
.formacao-card .num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.formacao-card h3 { color: var(--cream); font-size: 1.18rem; margin-bottom: 8px; overflow-wrap: anywhere; }
.formacao-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; overflow-wrap: anywhere; }
.formacao-card .meta { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); overflow-wrap: anywhere; }

/* ---------- About ---------- */
.section-sobre { background: var(--cream); padding: 120px 0; color: var(--text-dark); }
.section-sobre .eyebrow { color: var(--gold-deep); }
.section-sobre .eyebrow::before, .section-sobre .eyebrow::after { background: var(--gold); }
.section-sobre .section-head h2 { color: var(--text-dark); }
.section-sobre .section-head p { color: #7a6b58; }

.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.sobre-photo { position: relative; }
.sobre-photo img {
  border-radius: var(--radius);
  box-shadow: 0 24px 50px -24px rgba(43, 35, 27, 0.35);
}
.sobre-text h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.sobre-text p { color: #5d5040; margin-bottom: 16px; }
.sobre-text .dropcap::first-letter {
  font-family: var(--font-serif);
  font-size: 3.1rem;
  float: left;
  line-height: 0.85;
  margin: 4px 12px 0 0;
  color: var(--gold-deep);
}
.sobre-text .sign { margin-top: 24px; }
.sobre-text .sign b { font-family: var(--font-serif); font-weight: 500; font-size: 1.2rem; color: var(--text-dark); }
.sobre-text .sign span { display: block; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a7a63; }

/* ---------- Gallery / instagram ---------- */
.section-gallery { background: var(--ink-soft); padding: 110px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .ov {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 16, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .ov { opacity: 1; }
.gallery-item .ov svg { width: 34px; height: 34px; color: var(--gold-light); }

.gallery-cta { text-align: center; margin-top: 44px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 96px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--cream); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.cta-band .btn + .btn { margin-left: 14px; }

/* ---------- Contact ---------- */
.section-contact { background: var(--cream); padding: 120px 0; color: var(--text-dark); }
.section-contact .section-head h2 { color: var(--text-dark); }
.section-contact .section-head p { color: #7a6b58; }
.section-contact .section-head .eyebrow { color: var(--gold-deep); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-info { display: grid; gap: 18px; min-width: 0; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-width: 0;
  background: #fff;
  border: 1px solid #e6dbc6;
  border-radius: 14px;
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(43, 35, 27, 0.3); }
.contact-card .icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
}
.contact-card .icon svg { width: 21px; height: 21px; }
.contact-card h3 { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a7a63; margin-bottom: 4px; font-family: var(--font-sans); font-weight: 500; }
.contact-card a { font-weight: 500; color: var(--text-dark); font-size: 1.02rem; overflow-wrap: anywhere; word-break: break-word; }
.contact-card a:hover { color: var(--gold-deep); }
.contact-card p { font-size: 0.95rem; color: var(--text-dark); overflow-wrap: anywhere; }

.contact-form {
  background: #fff;
  border: 1px solid #e6dbc6;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 24px 50px -24px rgba(43, 35, 27, 0.25);
}
.contact-form h3 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 8px; }
.contact-form > p { color: #8a7a63; font-size: 0.95rem; margin-bottom: 26px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8a7a63; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd0b8;
  border-radius: 10px;
  background: var(--cream-soft);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.contact-form .btn[type="submit"] { margin-top: 8px; }
.form-note { font-size: 0.8rem; color: #8a7a63; margin-top: 18px; text-align: center; }

/* ---------- Map ---------- */
.section-map { padding: 0; }
.section-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.2) sepia(0.08); }

/* ---------- Footer ---------- */
.footer { background: #100d0a; border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer .brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 0.9rem; max-width: 300px; }
.footer h4 { font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer ul a:hover { color: var(--gold-light); }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.25s ease;
}
.footer .socials a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.footer .socials svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.footer-bottom a { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 90px 0 70px;
  text-align: center;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); color: var(--cream); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- Detail / price list ---------- */
.section-detail { padding: 100px 0; background: var(--ink-soft); }
.section-prices { background: var(--ink-soft); padding: 110px 0; }
.section-prices .section-head h2, .section-prices .section-head p { color: var(--text-light); }

.price-table {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-cat {
  padding: 16px 30px;
  background: rgba(201, 162, 39, 0.08);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: rgba(201, 162, 39, 0.05); }
.price-row .service { color: var(--text-light); font-size: 1rem; }
.price-row .price { font-family: var(--font-serif); color: var(--gold-light); font-size: 1.15rem; white-space: nowrap; }
.price-sub .service { color: var(--muted); font-size: 0.9rem; font-style: italic; }

.prices-note { max-width: 760px; margin: 34px auto 0; text-align: center; }
.prices-note p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.prices-note .btn { margin: 0 6px 10px; }

.section-details { background: var(--ink); padding: 20px 0 110px; }
.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 40px;
  margin-bottom: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.detail-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.45); }
.detail-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.4);
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.detail-body h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 12px; }
.detail-body p { color: var(--muted); font-size: 0.98rem; margin-bottom: 14px; }
.detail-body p b { color: var(--gold-light); font-weight: 500; }
.detail-meta { margin-top: 20px; }
.detail-meta .btn { padding: 12px 26px; font-size: 0.82rem; }

.formacao-list { margin: 6px 0 16px; }
.formacao-list li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }
.formacao-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* ---------- Values ---------- */
.section-values { background: var(--cream); padding: 110px 0; }
.section-values .section-head h2 { color: var(--text-dark); }
.section-values .section-head p { color: #7a6b58; }
.section-values .section-head .eyebrow { color: var(--gold-deep); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: #fff;
  border: 1px solid #e6dbc6;
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -20px rgba(43, 35, 27, 0.35); }
.value-card .icon { color: var(--gold-deep); margin-bottom: 16px; }
.value-card .icon svg { width: 34px; height: 34px; }
.value-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: #7a6b58; }

.detail-note {
  margin-top: 30px;
  background: var(--ink-card);
  border: 1px dashed rgba(201, 162, 39, 0.45);
  border-radius: 12px;
  padding: 20px 24px;
  color: var(--muted);
  font-size: 0.92rem;
}
.detail-note b { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding: 70px 0 40px; text-align: center; }
  .hero-cta, .hero-proof { justify-content: center; }
  .hero .eyebrow { justify-content: center; }
  .hero .eyebrow::before { display: none; }
  .hero p.tagline { margin-inline: auto; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(18, 14, 10, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 90;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.1rem; }
  .menu-toggle { display: flex; position: relative; z-index: 91; }
  .brand { position: relative; z-index: 91; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.74rem; letter-spacing: 0.1em; }
}

@media (max-width: 620px) {
  .services-grid, .formacoes-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .detail-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .topbar .topbar-links .hide-sm { display: none; }
  .hero-proof { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .btn { display: block; width: 100%; margin-bottom: 12px; }
  .cta-band .btn + .btn { margin-left: 0; }
  .page-hero { padding: 70px 0 52px; }

  .service-card { text-align: center; }
  .service-card .icon { margin: 0 auto 22px; }
  .service-card .link { justify-content: center; }

  .testi-card { text-align: center; }
  .testi-avatar { margin: 0 auto 16px; }

  .contact-form { padding: 26px 18px; }
  .price-row { padding: 16px 20px; }
  .price-cat { padding: 14px 20px; }

  .brand img { height: 40px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 8px 10px; font-size: 0.62rem; letter-spacing: 0.06em; white-space: nowrap; }

  .detail-card { text-align: center; }
  .detail-num { justify-self: center; margin-bottom: 16px; }

  .guide-card h3 { text-align: center; }

  .contact-card { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 18px 16px; }
}

/* ============================================================
   GALERIA PREMIUM
   ============================================================ */

.gal-steps {
  display: flex;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.gal-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.gal-step b {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-galeria {
  background: var(--ink-soft);
  padding: 80px 0 120px;
}
.gal-cat { margin-bottom: 96px; }
.gal-cat:last-child { margin-bottom: 0; }

.gal-cat-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
}
.gal-cat-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.gal-cat-head h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); color: var(--cream); line-height: 1.25; }
.gal-cat-head p { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.gal-select-all {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.gal-select-all:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.1); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gal-grid--2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.gal-grid--2 .gal-item {
  flex: 0 1 calc((100% - 32px) / 3);
}
.gal-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-card);
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gal-item:hover { border-color: rgba(201, 162, 39, 0.4); }
.gal-item:hover img { transform: scale(1.045); }

.gal-check {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(18, 14, 10, 0.55);
  border: 1px solid rgba(236, 217, 160, 0.5);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 0.82rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gal-check b { font-weight: 400; }
.gal-item:hover .gal-check { opacity: 1; }

.gal-item.selected { border-color: var(--gold); }
.gal-item.selected .gal-check {
  opacity: 1;
  background: var(--gold);
  border-color: var(--gold);
  color: #1a150e;
}
.gal-item.selected::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px var(--gold);
  pointer-events: none;
}

.gal-expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(18, 14, 10, 0.55);
  border: 1px solid rgba(236, 217, 160, 0.35);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.gal-expand svg { width: 15px; height: 15px; }
.gal-item:hover .gal-expand { opacity: 1; }
@media (hover: none) {
  .gal-expand { opacity: 1; }
}

.gal-final {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Barra de seleção ---------- */
.sel-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(18, 14, 10, 0.93);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  transform: translateY(105%);
  transition: transform 0.35s ease;
}
.sel-bar.show { transform: translateY(0); }
.sel-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.sel-count { font-family: var(--font-serif); color: var(--muted); font-size: 1rem; }
.sel-count b { color: var(--gold-light); }
.sel-actions { display: flex; align-items: center; gap: 12px; }
.sel-clear {
  background: none;
  border: 1px solid rgba(236, 217, 160, 0.35);
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.sel-clear:hover { border-color: var(--gold-light); color: var(--gold-light); }
#selSend { padding: 11px 24px; }
#selSend svg { margin-right: 8px; vertical-align: -3px; }

body.has-sel .wa-float { bottom: 84px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lb-figure { max-width: min(920px, 92vw); text-align: center; }
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.lb-figure figcaption { color: var(--muted); margin-top: 16px; font-size: 0.95rem; }
.lb-close, .lb-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(236, 217, 160, 0.08);
  border: 1px solid rgba(236, 217, 160, 0.3);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.lb-close:hover, .lb-nav:hover { background: rgba(201, 162, 39, 0.18); border-color: var(--gold); }
.lb-close { top: 22px; right: 22px; }
.lb-close svg { width: 20px; height: 20px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav svg { width: 22px; height: 22px; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }

@media (max-width: 980px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid--2 .gal-item { flex: 0 1 calc((100% - 16px) / 2); }
}
@media (max-width: 620px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gal-grid--2 { gap: 10px; }
  .gal-grid--2 .gal-item { flex: 0 1 calc((100% - 10px) / 2); }
  .gal-item { border-radius: 10px; }
  .gal-cat { margin-bottom: 70px; }
  .gal-cat-head { flex-wrap: wrap; gap: 14px 18px; }
  .gal-select-all { margin-left: 0; }
  .gal-steps { gap: 12px 24px; margin-top: 30px; }
  .sel-bar-inner { flex-wrap: wrap; padding: 12px 0; }
  .sel-count { font-size: 0.9rem; }
  .lightbox { padding: 16px; }
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ============================================================
   ANTES & DEPOIS (slider comparativo)
   ============================================================ */

.section-ba { background: var(--ink-soft); padding: 110px 0; }
.section-ba .section-head h2, .section-ba .section-head p { color: var(--text-light); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ba-card {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ba-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.45); }

.ba {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  touch-action: pan-y;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.ba .ba-after { z-index: 1; }
.ba .ba-before {
  z-index: 2;
  filter: grayscale(1) brightness(0.88) contrast(0.92);
  clip-path: inset(0 50% 0 0);
}
.ba-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(236, 217, 160, 0.9);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ba-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 14, 10, 0.8);
  border: 2px solid var(--gold-light);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}
.ba-bar::after {
  content: "\21C4";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold-light);
  font-size: 1.1rem;
}
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(18, 14, 10, 0.55);
  border: 1px solid rgba(236, 217, 160, 0.35);
  color: var(--gold-light);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
}
.ba-card h3 { font-size: 1.15rem; color: var(--cream); margin: 18px 0 8px; text-align: center; }
.ba-card p { color: var(--muted); font-size: 0.92rem; text-align: center; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.section-testimonials { background: var(--cream); padding: 110px 0; color: var(--text-dark); }
.section-testimonials .eyebrow { color: var(--gold-deep); }
.section-testimonials .section-head h2 { color: var(--text-dark); }
.section-testimonials .section-head p { color: #7a6b58; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1px solid #e6dbc6;
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -20px rgba(43, 35, 27, 0.35); }
.testi-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 12px; font-size: 0.9rem; }
.testi-text { font-style: italic; color: #5d5040; font-size: 0.98rem; margin-bottom: 20px; }
.testi-who b { display: block; color: var(--text-dark); font-weight: 500; font-family: var(--font-serif); }
.testi-who span { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a7a63; }
.testi-who .g-tag { color: var(--gold-deep); }

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #241c0b;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e6dbc6;
  border-radius: var(--radius);
  padding: 18px 26px;
  max-width: 720px;
  margin: 0 auto 36px;
  box-shadow: 0 16px 40px -24px rgba(43, 35, 27, 0.3);
}
.testi-top .g-logo { width: 46px; height: 46px; flex-shrink: 0; }
.testi-top-info b { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-dark); }
.testi-top-info span { font-size: 0.88rem; color: #7a6b58; }
.testi-top .testi-link {
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(154, 122, 30, 0.5);
  padding: 11px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.testi-top .testi-link:hover { background: rgba(154, 122, 30, 0.08); }

/* ============================================================
   MARCAÇÃO ONLINE
   ============================================================ */

.section-booking { background: var(--cream); padding: 120px 0; color: var(--text-dark); }
.section-booking .eyebrow { color: var(--gold-deep); }
.section-booking .eyebrow::before, .section-booking .eyebrow::after { background: var(--gold); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px 72px;
  align-items: start;
}
.booking-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--text-dark); margin-bottom: 16px; }
.booking-info > p { color: #7a6b58; font-size: 1rem; margin-bottom: 24px; }
.booking-list li {
  position: relative;
  padding-left: 30px;
  color: #5d5040;
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--gold);
}
.booking-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 4px;
  height: 6px;
  border: solid var(--gold-deep);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* ============================================================
   GUIA DE PREPARAÇÃO / CUIDADOS
   ============================================================ */

.section-guide { background: var(--ink); padding: 110px 0; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.guide-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.guide-card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 8px; }
.guide-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.guide-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.94rem; margin-bottom: 12px; }
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* ============================================================
   FAQ
   ============================================================ */

.section-faq { background: var(--ink-soft); padding: 110px 0; }
.section-faq .section-head h2, .section-faq .section-head p { color: var(--text-light); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open { border-color: rgba(201, 162, 39, 0.5); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--gold-light); }
.faq-q .chev {
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q .chev svg { width: 18px; height: 18px; display: block; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 420px; }
.faq-a p { padding: 0 26px 22px; color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   VALES-PRESENTE
   ============================================================ */

.section-gifts { background: var(--ink); padding: 110px 0; }
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gift-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gift-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.5); }
.gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 170px at 50% 0%, rgba(201, 162, 39, 0.16), transparent 70%);
  pointer-events: none;
}
.gift-card h3 { position: relative; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 6px; }
.gift-card .gift-val { position: relative; font-family: var(--font-serif); font-size: 2rem; color: var(--cream); margin-bottom: 12px; }
.gift-card p { position: relative; color: var(--muted); font-size: 0.93rem; margin-bottom: 24px; }
.gift-card .btn { position: relative; }

/* ============================================================
   PRÓXIMAS TURMAS (formações)
   ============================================================ */

.section-turmas { background: var(--ink); padding: 80px 0 130px; }
.turmas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.turma-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px 38px 46px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.turma-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.45); }
.turma-card .tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.turma-card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 16px; }
.turma-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.85; margin-bottom: 24px; }
.turma-card .vagas { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 30px; }
.turmas-note { text-align: center; color: var(--muted); font-size: 0.95rem; margin-top: 52px; }
.turmas-note a { color: var(--gold-light); }

/* ============================================================
   INSTAGRAM NO RODAPÉ
   ============================================================ */

.ig-strip { border-top: 1px solid var(--line); padding: 36px 0 8px; }
.ig-strip h4 { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 20px; font-family: var(--font-sans); font-weight: 400; }
.ig-strip h4 a { color: var(--gold-light); }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ig-grid a { border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-grid a:hover img { transform: scale(1.07); }

/* ---------- Responsive (novos blocos) ---------- */
@media (max-width: 980px) {
  .ba-grid, .testi-grid, .gift-grid, .turmas-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid, .guide-grid { grid-template-columns: 1fr; }
  .booking-info { text-align: center; }
  .booking-info .eyebrow { justify-content: center; }
  .booking-info .eyebrow::before { display: none; }
  .booking-info .booking-list { text-align: left; }
  .booking-grid .contact-form h3 { text-align: center; }
}
@media (max-width: 620px) {
  .ba-grid, .testi-grid, .gift-grid, .turmas-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-top { flex-wrap: wrap; justify-content: center; text-align: center; }
  .testi-top .testi-link { margin-left: 0; width: 100%; text-align: center; }
  .gal-steps { justify-content: flex-start; }
  .guide-card { padding: 28px 20px; }
}
