/* ============================================================
   CHURRASQUEIRAS BAHIA — V5
   Organizado por seções. Tokens no topo.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #090807;
  --panel: #12110f;
  --panel2: #191714;
  --text: #f4f0eb;
  --muted: #aaa097;
  --accent: #c98955;
  --accent2: #e8b27e;
  --green: #25d366;
  --green-dark: #06180d;
  --line: rgba(255, 255, 255, .14);
  --max: 1200px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --light-bg: #efe8df;
  --light-text: #16110d;
  --light-muted: #574d43;
  --radius: 14px;
}

/* ---------- 2. Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; }
:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 3. Tipografia ---------- */
.eyebrow {
  display: inline-block;
  max-width: 100%;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent2);
}
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
  overflow-wrap: break-word;
}
h1 em, h2 em { color: var(--accent2); font-weight: 500; }
.section-title { margin-bottom: 48px; }
.section-title h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  margin: 14px 0 20px;
  max-width: 780px;
}
.section-title p { color: var(--muted); max-width: 620px; font-size: 1rem; margin: 0; }
.section-title.light h2 { color: var(--light-text); }
.section-title.light p { color: var(--light-muted); }
.section-title.light .eyebrow { color: #6f4927; }
.section-title.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-title.row p { margin: 0 0 6px; text-align: right; }

/* ---------- 4. Layout ---------- */
.container { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.container.narrow { max-width: 850px; }
.center { text-align: center; margin-top: 40px; }

/* ---------- 5. Skip link ---------- */
.skip {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--accent2);
  color: var(--bg);
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  transition: top .2s;
}
.skip:focus { top: 16px; }

/* ---------- 6. Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 76px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #090807cc, rgba(9, 8, 7, 0));
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: #090807e9;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; }
.brand img { width: 225px; max-height: 50px; object-fit: contain; }
.links { display: flex; gap: 22px; margin-inline: auto; font-size: .84rem; color: #d7d0c9; }
.links a { transition: color .2s; }
.links a:hover { color: #fff; }
.links a:focus-visible { color: #fff; }
.nav .outline { margin-left: auto; }
.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  margin-left: auto;
}
.menu span { display: block; width: 24px; height: 1px; background: #fff; margin: 7px auto; transition: transform .2s; }
.menu[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- 7. Botões ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-1px); }
.primary { background: var(--green); color: var(--green-dark); }
.primary:hover { box-shadow: 0 12px 28px #25d36633; }
.secondary { background: var(--accent); color: #2b1a0a; }
.secondary:hover { box-shadow: 0 12px 28px #d49a6140; }
.outline {
  background: rgba(9, 8, 7, .45);
  border-color: rgba(255, 255, 255, .35);
  color: var(--text);
}
.outline:hover { border-color: #fff; }
.large { padding: 15px 24px; min-height: 50px; font-size: 1rem; }
.ghost-link {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 3px;
  transition: border-color .2s;
}
.ghost-link:hover { border-color: var(--accent2); }
.text-cta { font-weight: 700; color: var(--accent2); }
.text-cta:hover { text-decoration: underline; }
.text-cta:focus-visible { outline-offset: 4px; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 16s ease-in-out infinite;
  transform-origin: 55% 45%;
}
@keyframes slowZoom {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.25); }
  55%  { transform: scale(1.25); }
  85%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090807ed 0%, #090807a6 52%, rgba(9, 8, 7, .18) 100%),
    linear-gradient(0deg, #090807b8 0%, rgba(9, 8, 7, .05) 55%);
}
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(240, 193, 142, .28) 1px, transparent 1.5px);
  background-size: 130px 130px;
  background-position: 30% 40%;
  opacity: .1;
  mask-image: linear-gradient(135deg, #000 20%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}
.hero-content h1 {
  font-size: clamp(3.6rem, 7.4vw, 6.3rem);
  margin: 18px 0 22px;
  max-width: 12ch;
}
.hero-content p { max-width: 530px; color: #cfc8c0; font-size: 1.05rem; margin: 0 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-meta { display: block; margin-top: 18px; color: #cfc8c0; font-size: .85rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  list-style: none;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 193, 142, .22);
}
.hero-proof li {
  display: grid;
  gap: 1px;
  padding-left: 0;
}
.hero-proof strong { font-size: .78rem; line-height: 1.25; }
.hero-proof span { color: #aaa097; font-size: .74rem; line-height: 1.25; }
.hero-proof li + li { padding-left: 24px; border-left: 1px solid rgba(240, 193, 142, .35); }

@media (min-width: 1101px) {
  /* Keep the fixed header from covering the first hero line. */
  .hero { padding-top: 76px; }
}

/* ---------- 9. Ofertas locais ---------- */
.local-offers { padding: 82px 0; background: var(--panel); }
.local-offers-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.local-offers-copy h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); margin: 14px 0 18px; }
.local-offers-copy p { color: var(--muted); max-width: 520px; margin: 0; }
.offer-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.offer-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 15px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: transform .2s, border-color .2s, background .2s;
}
.offer-card:hover { transform: translateX(5px); border-color: rgba(240, 193, 142, .65); background: transparent; }
.offer-card > span { grid-row: span 2; color: var(--accent2); font-family: var(--serif); font-size: 1.35rem; }
.offer-card strong { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.02em; }
.offer-card small { color: var(--muted); }

/* ---------- 10. Estilos / visual-intro ---------- */
.visual-intro { padding: 104px 0; }
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 16px;
}
.style-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
}
.style-card.tall { grid-row: span 2; }
.style-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.style-card:hover img { transform: scale(1.045); }
.style-card.product-style { background: #f6f1eb; }
.style-card.product-style img { object-fit: contain; padding: 24px; background: #f6f1eb; mix-blend-mode: multiply; }
.style-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0) 30%, rgba(9, 8, 7, .88) 100%);
}
.style-overlay small {
  color: var(--accent2);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: .7rem;
}
.style-overlay h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin: 8px 0 14px; max-width: 16ch; }
.style-overlay button, .style-overlay a:not(.button) {
  background: none;
  border: 0;
  color: var(--accent2);
  padding: 0;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
}
.style-overlay a:not(.button):hover, .style-overlay button:hover { text-decoration: underline; }

/* ---------- 11. Transformação ---------- */
.transformation { padding: 104px 0; background: var(--light-bg); color: var(--light-text); }
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.journey-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px #16110d12;
  position: relative;
}
.journey-card .num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #16110d;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
}
.journey-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #e6ded5;
}
.journey-card img.product-photo { object-fit: contain; padding: 18px; }
.journey-card figcaption {
  display: grid;
  gap: 2px;
  padding: 20px 22px 22px;
}
.journey-card figcaption b { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.02em; }
.journey-card figcaption span { color: var(--light-muted); font-size: .95rem; }

/* ---------- 12. Projetos / masonry ---------- */
.projects { padding: 104px 0; }
.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}
.project {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #000;
  color: var(--text);
  text-align: left;
  font-size: inherit;
}
.project.big { grid-column: span 7; grid-row: span 6; }
.project.wide { grid-column: span 5; grid-row: span 5; }
.project img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project:hover img { transform: scale(1.04); }
.project span {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 1px;
  padding: 44px 18px 14px;
  text-align: left;
  background: linear-gradient(180deg, transparent, rgba(9, 8, 7, .92));
}
.project span b { color: var(--text); font-family: var(--serif); font-size: 1.2rem; letter-spacing: -.01em; }
.project span small { color: #cfc8c0; }
.project-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.project-cta p { margin: 0; font-family: var(--serif); font-size: 1.6rem; }

/* ---------- 13. Detalhes / acessórios ---------- */
.details { padding: 108px 0; background: var(--panel); }
.detail-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.detail-layout > *, .social-proof-grid > *, .visit-grid > * { min-width: 0; }
.detail-copy h2 { margin: 14px 0 20px; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.detail-copy p { color: var(--muted); max-width: 520px; }
.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}
.detail-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.detail-tabs button:hover { color: var(--text); border-color: rgba(255, 255, 255, .3); }
.detail-tabs button.active {
  color: #2b1a0a;
  background: var(--accent2);
  border-color: var(--accent2);
}
.product-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at 50% 35%, #504236 0%, #1d1915 37%, #0b0a09 70%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-stage > img {
  width: 78%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px #000a);
  position: relative;
  z-index: 2;
}
.product-stage.catalog-image { background: #f6f1eb; color: var(--light-text); border-color: #16110d1c; }
.product-stage.catalog-image > img { mix-blend-mode: multiply; filter: drop-shadow(0 25px 35px #16110d2a); }
.product-stage.catalog-image .stage-caption { border-top-color: #16110d1c; }
.product-stage.catalog-image .stage-caption small { color: #6f4927; }
.product-stage.catalog-image .stage-caption strong { color: var(--light-text); }
.product-stage.catalog-image .stage-caption span { color: var(--light-muted); }
.product-glow {
  position: absolute;
  width: 60%;
  height: 40%;
  border-radius: 50%;
  background: #d49a6124;
  filter: blur(60px);
}
.stage-caption {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 25px;
  right: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.stage-caption small { color: var(--accent2); font-weight: 700; letter-spacing: .06em; font-size: .7rem; }
.stage-caption strong { font-family: var(--serif); font-size: 2rem; line-height: 1.1; }
.stage-caption span { color: var(--muted); max-width: 520px; }
.product-stage-handwriting { display: inline-block; max-width: 100%; vertical-align: baseline; }

/* ---------- 14. Materiais + comparação ---------- */
.materials {
  padding: 112px 0 118px;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0d0b 100%);
}
.materials .section-title { max-width: 760px; margin-bottom: 38px; }
.materials .section-title h2 { max-width: 680px; }
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.material {
  --material-color: var(--accent2);
  --material-wash: rgba(232, 178, 126, .1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--material-wash), transparent 48%), var(--panel2);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 292px;
  isolation: isolate;
}
.material::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--material-color);
  opacity: .85;
}
.material::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--material-color);
  border-radius: 50%;
  opacity: .12;
  z-index: 0;
}
.material > * { position: relative; z-index: 1; }
.material:nth-child(2) {
  --material-color: #c8d0ce;
  --material-wash: rgba(200, 208, 206, .09);
}
.material:nth-child(3) {
  --material-color: #a9c5cc;
  --material-wash: rgba(169, 197, 204, .1);
}
.material > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--material-color);
  background: var(--material-wash);
  color: var(--material-color);
  font-family: var(--serif);
  font-size: 1.25rem;
}
.material h3 { font-size: 1.5rem; margin-top: 4px; }
.material p { color: var(--muted); margin: 0; max-width: 34ch; line-height: 1.65; }
.material button {
  margin-top: auto;
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--material-color);
  padding: 16px 0 0;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  align-self: stretch;
}
.material button:hover { text-decoration: underline; }

.compare {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-top: 72px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.compare-note, .compare-card {
  border: 1px solid var(--line);
  background: var(--panel2);
  border-radius: 12px;
  padding: 30px;
}
.compare-note { border: 0; background: transparent; padding-left: 0; }
.compare-note h3 { font-size: 1.8rem; margin: 12px 0 10px; }
.compare-note p { color: var(--muted); margin: 0; max-width: 38ch; line-height: 1.65; }
.compare-card h4 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 14px; color: var(--accent2); }
.compare-card ul { list-style: none; display: grid; gap: 10px; }
.compare-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: .95rem;
}
.compare-card li + li { padding-top: 10px; border-top: 1px solid var(--line); }
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.compare-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border: 1px solid rgba(212, 154, 97, .35);
  background: linear-gradient(90deg, rgba(212, 154, 97, .14), rgba(212, 154, 97, .02));
  border-radius: 8px;
  border-left: 3px solid var(--accent2);
}
.compare-cta p { color: var(--text); margin: 0; max-width: 520px; }
.catalog-inline-link { margin-top: 34px; text-align: right; }

/* ---------- 15. Catálogo visual ---------- */
.catalog { padding: 104px 0; background: var(--light-bg); color: var(--light-text); }
.catalog .section-title { margin-bottom: 62px; }
.catalog .section-title h2 em { color: #9a6b3a; }
.catalog-block + .catalog-block { margin-top: 62px; }
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.catalog-head h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-top: 10px; }
.catalog-head p { color: var(--light-muted); max-width: 450px; margin: 0 0 3px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #16110d1c;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  color: var(--light-text);
  text-align: left;
  box-shadow: 0 10px 26px #16110d12;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.catalog-card:hover { transform: translateY(-3px); border-color: #9a6b3a66; box-shadow: 0 15px 30px #16110d18; }
.catalog-card-view {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.catalog-card-view:focus-visible { outline: 2px solid #9a6b3a; outline-offset: -4px; }
.catalog-media {
  display: grid;
  place-items: center;
  height: 240px;
  padding: 18px;
  background: #f6f1eb;
  overflow: hidden;
}
.catalog-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.catalog-card:hover .catalog-media img { transform: scale(1.045); }
.catalog-copy { display: grid; gap: 6px; padding: 18px 18px 20px; }
.catalog-copy small { color: #6f4927; font-size: .67rem; font-weight: 800; letter-spacing: .06em; }
.catalog-copy strong { font-family: var(--serif); font-size: 1.25rem; line-height: 1.08; letter-spacing: -.02em; }
.catalog-copy > span { color: var(--light-muted); font-size: .88rem; line-height: 1.45; }
.catalog-copy .catalog-view-label { color: #6f4927; font-size: .8rem; font-weight: 700; margin-top: 3px; }
.catalog-card > .manual-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-top: 1px solid #16110d1c;
  background: #f6f1eb;
  color: #6f4927;
  font: inherit;
  font-size: .83rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.catalog-card > .manual-trigger:hover { color: #2b1a0a; background: #f2e8dc; }
.catalog-card > .manual-trigger:focus-visible { outline: 2px solid #9a6b3a; outline-offset: -3px; }
.coverflow-catalog-models .manual-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 15px;
  border: 1px solid rgba(243, 240, 234, .55);
  border-radius: 999px;
  background: rgba(17, 13, 12, .45);
  color: #f3f0ea;
  font: inherit;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.coverflow-catalog-models .manual-trigger:hover,
.coverflow-catalog-models .manual-trigger:focus-visible {
  border-color: #c5a880;
  background: rgba(197, 168, 128, .22);
  color: #fff;
}
.catalog-card-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-top: 1px solid #16110d1c;
  color: #6f4927;
  background: #fbf8f4;
  font-size: .83rem;
  font-weight: 800;
  transition: color .2s, background .2s;
}
.catalog-card-cta:hover { color: #2b1a0a; background: #f2e8dc; }
.catalog-card-cta:focus-visible { outline: 2px solid #9a6b3a; outline-offset: -3px; }
.catalog-card-cta span { font-size: 1rem; line-height: 1; }

/* ---------- 16. Decisão ---------- */
.decision { padding: 86px 0; background: var(--light-bg); color: var(--light-text); }
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.decision-photo { border-radius: var(--radius); overflow: hidden; height: 600px; }
.decision-photo img { width: 100%; height: 100%; object-fit: cover; }
.decision-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); margin: 14px 0 20px; }
.decision-copy p { color: var(--light-muted); }
.check {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 18px;
  margin: 28px 0;
  border-top: 1px solid #16110d1c;
}
.check span {
  padding: 12px 0;
  border-bottom: 1px solid #16110d1c;
  font-size: .85rem;
  color: var(--light-text);
}

/* ---------- 17. FAQ ---------- */
.faq { padding: 104px 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent2);
  font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); max-width: 760px; margin: 10px 0 6px; }

/* ---------- 18. Prova social + loja ---------- */
.social-proof { padding: 96px 0; background: var(--panel); }
.social-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.social-proof-copy h2, .visit-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); margin: 14px 0 20px; }
.social-proof-copy p, .visit-copy p { color: var(--muted); max-width: 540px; }
.social-proof-actions, .visit-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.proof-panel { border: 1px solid var(--line); background: var(--bg); border-radius: 14px; padding: 30px; }
.proof-panel > strong { display: block; font-family: var(--serif); font-size: 2rem; margin: 12px 0 24px; }
.proof-panel ul { list-style: none; display: grid; gap: 0; }
.proof-panel li { display: grid; gap: 3px; padding: 16px 0; border-top: 1px solid var(--line); }
.proof-panel li b { font-family: var(--serif); font-size: 1.25rem; }
.proof-panel li span { color: var(--muted); font-size: .92rem; }
.visit { padding: 96px 0; background: var(--light-bg); color: var(--light-text); }
.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.visit .eyebrow { color: #6f4927; }
.visit-copy h2 { overflow-wrap: normal; word-break: normal; hyphens: none; }
.visit-copy h2 em { color: #9a6b3a; }
.visit-copy p { color: var(--light-muted); }
.visit-details { display: grid; gap: 18px; margin: 28px 0; font-style: normal; }
.visit-details div { display: grid; gap: 4px; }
.visit-details b { color: #6f4927; font-size: .85rem; }
.visit-details span { color: var(--light-muted); }
.visit-actions .text-cta { color: #9a6b3a; }
.visit-map { min-height: 380px; border-radius: 12px; overflow: hidden; background: #d9d0c5; box-shadow: 0 12px 28px #16110d12; }
.visit-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- 19. CTA final ---------- */
.final-cta {
  position: relative;
  min-height: 640px;
  padding: 96px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: finalBreathe 12s ease-in-out infinite alternate;
  transform-origin: center 55%;
}
@keyframes finalBreathe {
  0%   { transform: scale(1.06); opacity: 0.55; }
  100% { transform: scale(1.11); opacity: 1; }
}
.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #090807e9, #0908078f 52%, rgba(9, 8, 7, .18)),
    linear-gradient(0deg, #090807aa, transparent);
}
.final-copy { position: relative; z-index: 2; }
.final-copy .button { max-width: 100%; white-space: normal; text-align: center; }
.final-copy h2 { font-size: clamp(3rem, 6vw, 6rem); margin: 13px 0 20px; max-width: 690px; }
.final-copy p { color: #ded7d0; font-size: 1.1rem; margin: 0 0 28px; max-width: 480px; }

/* ---------- 20. Rodapé ---------- */
footer { padding-bottom: 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding: 55px 0;
}
.footer-grid img { width: 260px; }
.footer-grid p { color: var(--muted); }
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { width: fit-content; transition: color .2s; }
.footer-grid a:hover { color: var(--accent2); }
.footer-grid b { color: var(--accent2); }
.copyright {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: #8a8379;
  font-size: .8rem;
}

/* ---------- 21. CTAs fixos ---------- */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  background: var(--green);
  color: var(--green-dark);
  padding: 13px 17px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 35px #0008;
  transition: transform .2s;
}
.floating-wa:hover { transform: translateY(-3px); }
.mobile-bar {
  display: none;
  position: fixed;
  z-index: 72;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: var(--green-dark);
  text-align: center;
  font-weight: 800;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 12px 35px #0009;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- 22. Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s, visibility .25s;
}
.modal.open { display: block; visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #000c;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(780px, 92vw);
  background: var(--panel);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: auto;
  transform: translateX(30px);
  transition: transform .3s;
}
.modal.open .modal-panel { transform: none; }
.modal-media { min-height: 100%; background: #1a1713; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 75px 38px 40px; }
.modal-content h2 { font-family: var(--serif); font-size: 2.8rem; line-height: 1.08; margin: 10px 0 14px; }
.modal-content p { color: var(--muted); }
.modal-facts { margin: 22px 0; }
.modal-fact {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.modal-fact dt { color: var(--muted); font-size: .9rem; font-weight: 600; }
.modal-fact dd { margin: 0; color: var(--text); font-size: .95rem; }
.modal-tech { margin: 16px 0; }
.modal-tech img { width: 100%; max-height: 260px; object-fit: contain; background: #f2eee9; border-radius: 12px; }
.modal-tech small { color: var(--muted); display: block; margin-top: 8px; }
.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 3;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- 23. Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 90vw);
  max-height: 82vh;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-figure figcaption { text-align: center; display: grid; gap: 2px; }
.lightbox-figure figcaption b { font-family: var(--serif); font-size: 1.5rem; }
.lightbox-figure figcaption small { color: var(--muted); }
.lightbox-close {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #fff;
  background: none;
  border: 0;
  font-size: 2.4rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(9, 8, 7, .6);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-action {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- 24. Manuais de instalação ---------- */
.manual-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(9, 8, 7, .86);
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s, visibility .25s;
}
.manual-viewer.open { display: flex; visibility: visible; opacity: 1; }
.manual-backdrop { position: absolute; inset: 0; }
.manual-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1000px, calc(100vw - 32px));
  max-height: min(92vh, 1100px);
  overflow: hidden;
  border: 1px solid #16110d1c;
  border-radius: 14px;
  background: #f6f1eb;
  color: var(--light-text);
  box-shadow: 0 30px 80px #000b;
}
.manual-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid #16110d1c;
}
.manual-heading { min-width: 0; }
.manual-heading .eyebrow { color: #6f4927; }
.manual-heading h2 { margin: 7px 0 7px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.manual-heading p { max-width: 610px; margin: 0; color: var(--light-muted); font-size: .92rem; }
.manual-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.manual-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #16110d3b;
  border-radius: 50%;
  background: transparent;
  color: var(--light-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.manual-close:hover { background: #e9dfd4; }
.manual-open { color: #6f4927; font-size: .78rem; font-weight: 800; white-space: nowrap; }
.manual-open:hover { text-decoration: underline; }
.manual-scroll {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  display: flex;
  justify-content: center;
  padding: 20px;
  background: #d9d0c5;
}
.manual-scroll img {
  display: block;
  width: min(100%, 860px);
  height: auto;
  align-self: flex-start;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px #16110d24;
}

/* ---------- 25. Reveal + reduced motion ---------- */
.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0;
  transform: none;
  transition: opacity .5s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 26. Páginas legal e 404 ---------- */
body.legal { padding-top: 76px; }
.legal-page { padding: 90px 0; }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 14px 0 20px; }
.legal-page .lead { color: var(--muted); font-size: 1.1rem; max-width: 720px; }
.legal-page h2 { font-family: var(--serif); font-size: 1.6rem; margin: 46px 0 12px; }
.legal-page p { color: var(--muted); max-width: 760px; }
.legal-page .back { margin-top: 46px; }
.legal-page .back a { color: var(--accent2); font-weight: 700; }
.notfound { min-height: 100svh; display: flex; align-items: center; }
.notfound-box { text-align: center; }
.notfound-box h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 16px 0 18px; }
.notfound-box p { color: var(--muted); margin: 0 0 30px; }
.notfound-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 27. Responsivo ≤ 1100 ---------- */
@media (max-width: 1100px) {
  .links {
    display: none;
    position: absolute;
    top: 76px;
    left: 24px;
    right: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 10px;
    flex-direction: column;
    gap: 4px;
  }
  .links.open { display: flex; }
  .nav .outline { display: none; }
  .menu { display: block; }
  .brand img { width: 210px; }
  html:not(.js) .header {
    position: relative;
    height: auto;
    background: var(--panel);
    border-bottom-color: var(--line);
  }
  html:not(.js) .nav { flex-wrap: wrap; row-gap: 12px; padding-block: 14px; }
  html:not(.js) .links {
    display: flex;
    position: static;
    flex: 0 0 100%;
    order: 3;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0 0 6px;
    border: 0;
    background: none;
  }
  html:not(.js) .nav .outline { display: inline-flex; margin-left: auto; }
  html:not(.js) .menu { display: none; }
  html:not(.js) body.legal { padding-top: 0; }
  .hero { min-height: 760px; }
  .hero-shade {
    background:
      linear-gradient(0deg, #090807 0%, #090807d5 42%, rgba(9, 8, 7, .35) 100%);
  }
  .hero-content { align-self: flex-end; padding-bottom: 120px; }
  .hero-content h1 { font-size: clamp(3.4rem, 13vw, 5rem); }
  .local-offers-grid { grid-template-columns: 1fr; gap: 35px; }
  .social-proof-grid, .visit-grid { grid-template-columns: 1fr; gap: 35px; }
  .style-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 310px; }
  .style-card.tall { grid-row: span 1; }
  .style-card:last-child { grid-column: span 2; }
  .journey { grid-template-columns: 1fr 1fr; }
  .section-title.row { display: block; }
  .section-title.row p { text-align: left; margin-top: 16px; }
  .masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .project, .project.big, .project.wide { grid-column: span 1; grid-row: span 1; }
  .project.big { grid-column: span 2; }
  .detail-layout, .decision-grid { grid-template-columns: 1fr; }
  .product-stage { min-height: 560px; }
  .material-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr 1fr; }
  .compare-note { grid-column: 1 / -1; }
  .modal-panel { grid-template-columns: 1fr; width: min(620px, 96vw); }
  .modal-media { height: 270px; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floating-wa { display: none; }
  .mobile-bar { display: block; }
  footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-action { bottom: 20px; width: 90%; }
  .lightbox-action .button { width: 100%; }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .hero { padding-top: 76px; }
  .hero-content { align-self: center; padding-bottom: 0; }
  .floating-wa { display: block; }
  .mobile-bar { display: none; }
  footer { padding-bottom: 30px; }
}

@media (max-width: 760px) {
  .material-grid { grid-template-columns: 1fr; }
  .material { min-height: 0; padding: 26px; }
  .compare { margin-top: 56px; padding-top: 24px; }
  .compare-note { padding: 0 0 8px; }
}

/* ---------- 28. Responsivo ≤ 620 ---------- */
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .links { left: 14px; right: 14px; }
  .visual-intro, .projects, .materials, .catalog, .faq { padding: 80px 0; }
  .transformation { padding: 80px 0; }
  .section-title h2 { font-size: 2.8rem; }
  .local-offers { padding: 70px 0; }
  .hero-content { align-self: flex-start; margin-top: 90px; padding-bottom: 0; }
  .hero-content h1 {
    font-size: clamp(2.5rem, 11.2vw, 4.5rem);
    max-width: none;
  }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
  }
  .hero-proof li + li { padding-left: 0; border-left: 0; }
  .hero-proof li:nth-child(even) { padding-left: 18px; border-left: 1px solid rgba(240, 193, 142, .35); }
  .hero-proof li:last-child { grid-column: 1 / -1; justify-self: center; }
  .social-proof, .visit { padding: 80px 0; }
  .social-proof-actions, .visit-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .social-proof-actions .button, .visit-actions .button { width: 100%; }
  .style-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; }
  .style-card:last-child { grid-column: auto; }
  .journey { grid-template-columns: 1fr; }
  .journey-card img { height: 300px; }
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 380px; }
  .project.big { grid-column: auto; }
   .detail-copy h2 { font-size: 3rem; }
   .visit-copy h2 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .product-stage { min-height: 500px; }
  .product-stage > img { height: 360px; max-height: 360px; }
  .catalog .section-title { margin-bottom: 44px; }
  .catalog-block + .catalog-block { margin-top: 54px; }
  .catalog-head { display: block; }
  .catalog-head p { margin-top: 12px; }
  .catalog-grid { gap: 10px; }
  .catalog-media { height: 180px; padding: 10px; }
  .catalog-copy { gap: 5px; padding: 14px 13px 16px; }
  .catalog-copy small { font-size: .58rem; }
  .catalog-copy strong { font-size: 1rem; }
  .catalog-copy > span { font-size: .79rem; line-height: 1.35; }
   .catalog-copy .catalog-view-label { font-size: .73rem; }
   .catalog-card > .manual-trigger { min-height: 44px; padding: 11px 12px; font-size: .72rem; }
   .catalog-card-cta { min-height: 44px; padding: 11px 12px; font-size: .72rem; }
  .catalog-inline-link { text-align: left; }
  .compare { grid-template-columns: 1fr; }
  .compare-note { grid-column: auto; }
  .compare-cta { padding: 22px; }
  .check { grid-template-columns: 1fr; }
  .decision-photo { height: 430px; }
  .visit-map, .visit-map iframe { min-height: 340px; height: 340px; }
    .final-cta { min-height: 650px; padding: 80px 0; }
    .final-image { object-fit: cover; object-position: center center; animation: finalBreathe 12s ease-in-out infinite alternate; }
   .final-copy .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 55px 24px 30px; }
  .modal-content h2 { font-size: 2.3rem; }
   .modal-panel { width: 96vw; }
   .manual-viewer { padding: 10px; }
   .manual-panel { width: 100%; max-height: calc(100svh - 20px); border-radius: 10px; }
   .manual-header { gap: 12px; padding: 16px; }
   .manual-heading h2 { font-size: 1.45rem; }
   .manual-heading p { font-size: .82rem; }
   .manual-controls { gap: 8px; }
   .manual-open { font-size: .68rem; }
   .manual-scroll { padding: 12px; }
   .lightbox { padding: 40px 16px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 84px; transform: none; }
  .lightbox-action { bottom: 16px; }
}

@media (min-width: 621px) and (max-height: 820px) {
  .hero {
    height: auto;
    min-height: 860px;
    align-items: flex-start;
    padding-top: 0;
  }
  .hero-content {
    align-self: flex-start;
    margin-top: 96px;
  }
}

@media (max-width: 360px) {
  .hero-content { padding-bottom: 0; }
  .hero-content h1 { font-size: 2.25rem; margin: 12px 0 16px; }
  .hero-content p { font-size: 1rem; line-height: 1.5; margin-bottom: 20px; }
  .hero-actions .button { min-height: 48px; padding: 11px 16px; }
}

@media (min-width: 361px) and (max-width: 620px) and (max-height: 700px) {
  .hero-proof { display: none; }
}

@media (max-width: 340px) {
  .hero-content { padding-bottom: 0; }
  .hero-content h1 { margin-top: 6px; margin-bottom: 10px; }
  .hero-content p { margin-bottom: 10px; }
  .hero-actions { gap: 4px; }
  .hero-proof { display: none; }
}

/* ---------- 29. Centralização das seções (teste) ---------- */
.visual-intro .section-title,
.transformation .section-title,
.projects .section-title,
.materials .section-title,
.catalog .section-title { text-align: center; }

.visual-intro .section-title h2,
.transformation .section-title h2,
.projects .section-title h2,
.materials .section-title h2,
.catalog .section-title h2,
.visual-intro .section-title p,
.transformation .section-title p,
.projects .section-title p,
.materials .section-title p,
.catalog .section-title p { margin-inline: auto; }

.materials .section-title { margin-inline: auto; }

.projects .section-title.row { display: block; text-align: center; }
.projects .section-title.row p { text-align: center; margin: 14px auto 0; }

.catalog .catalog-head { display: block; text-align: center; }
.catalog .catalog-head p { margin: 12px auto 0; }

.materials .catalog-inline-link { text-align: center; }
