/* ==========================================================================
   N17 Bodyworks — stylesheet
   Hand-written, no framework, no external requests.
   ========================================================================== */

:root {
  --ink:        #0b0e11;
  --ink-2:      #11151a;
  --surface:    #161b22;
  --surface-2:  #1d232c;
  --line:       #262e38;
  --line-soft:  #1e252d;
  --text:       #e9edf2;
  --muted:      #9aa6b3;
  --muted-2:    #6f7c8a;
  --accent:     #ffb000;
  --accent-ink: #1a1200;
  --wa:         #25d366;
  --wa-ink:     #06301a;
  --danger:     #ff5a4d;
  --ok:         #37d67a;

  --maxw: 1320px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 18px;

  --shadow: 0 18px 44px -20px rgba(0, 0, 0, .8);
  --shadow-sm: 0 8px 20px -12px rgba(0, 0, 0, .75);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --bar-h: 0px;
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}


* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  line-height: 1.08;
  letter-spacing: -.022em;
  font-weight: 800;
}
h1 { font-size: clamp(2.15rem, 6.2vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); letter-spacing: -.012em; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }
.section--alt { background: var(--ink-2); border-block: 1px solid var(--line-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

.lede { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--muted); max-width: 62ch; }
.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: .75rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }



/* ---------- Buttons -------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750; font-size: .985rem; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: transform .14s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 26px -14px rgba(255, 176, 0, .9); }
.btn--primary:hover { background: #ffc233; }

.btn--wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 10px 26px -14px rgba(37, 214, 102, .9); }
.btn--wa:hover { background: #3ae07a; }

.btn--ghost { background: rgba(255, 255, 255, .045); color: var(--text); border-color: var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .09); border-color: #38424f; }

.btn--lg { padding: 1.06rem 1.85rem; font-size: 1.04rem; }
.btn--sm { padding: .62rem 1.05rem; font-size: .88rem; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Top bar + header ----------------------------------------- */

.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  font-size: .82rem;
  color: var(--muted);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--text); }
.topbar__right { display: flex; align-items: center; gap: 1.3rem; }
.topbar__hide { display: none; }
@media (min-width: 720px) { .topbar__hide { display: inline; } }

.status { display: inline-flex; align-items: center; gap: .5rem; font-weight: 650; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.status[data-open="true"]  { color: var(--ok); }
.status[data-open="true"] .status__dot  { background: var(--ok); box-shadow: 0 0 0 3px rgba(55, 214, 122, .17); }
.status[data-open="false"] { color: var(--muted); }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 14, 17, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; margin-right: auto; }
.brand__logo { display: block; height: 46px; width: auto; flex: none; }
@media (min-width: 940px) { .brand__logo { height: 56px; } }

.nav { display: none; align-items: center; gap: .3rem; }
.nav a {
  text-decoration: none; font-size: .94rem; font-weight: 650; color: var(--muted);
  padding: .5rem .78rem; border-radius: 999px; transition: color .15s, background-color .15s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] { color: var(--text); background: rgba(255, 255, 255, .07); }
.header__cta { display: none; }
@media (min-width: 940px) {
  .nav { display: flex; }
  .header__cta { display: inline-flex; }
}

.burger {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line); border-radius: 10px;
  color: var(--text); cursor: pointer;
}
.burger svg { width: 21px; height: 21px; }
.burger .ico-x { display: none; }
.burger[aria-expanded="true"] .ico-x { display: block; }
.burger[aria-expanded="true"] .ico-menu { display: none; }
@media (min-width: 940px) { .burger { display: none; } }

.mobnav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-2);
  padding: .9rem var(--gut) 1.4rem;
}
.mobnav.is-open { display: block; }
.mobnav a.mobnav__link {
  display: block; text-decoration: none; font-weight: 700; font-size: 1.06rem;
  padding: .82rem .25rem; border-bottom: 1px solid var(--line-soft);
}
.mobnav__actions { display: grid; gap: .6rem; margin-top: 1.1rem; }

/* ---------- Hero ------------------------------------------------------ */

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 14, 17, .93) 0%, rgba(11, 14, 17, .74) 38%, rgba(11, 14, 17, .9) 88%, var(--ink) 100%),
    linear-gradient(100deg, rgba(11, 14, 17, .96) 8%, rgba(11, 14, 17, .42) 68%);
}
.hero__inner { padding-block: clamp(3.4rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem); max-width: 940px; }
.hero h1 { text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lede { font-size: clamp(1.05rem, 2.1vw, 1.24rem); color: #cbd4de; max-width: 62ch; margin-bottom: 1.9rem; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  color: #dbe3eb; border-radius: 999px; padding: .38rem .82rem;
  font-size: .81rem; font-weight: 700; letter-spacing: -.005em;
  backdrop-filter: blur(8px);
}
.chip svg { width: 14px; height: 14px; color: var(--accent); flex: none; }

.hero__note { margin-top: 1.35rem; font-size: .89rem; color: var(--muted); }
.hero__note strong { color: var(--text); }

/* ---------- Trust strip ---------------------------------------------- */

.trust { border-block: 1px solid var(--line-soft); background: var(--ink-2); }
.trust__grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { padding: 1.5rem clamp(.9rem, 2vw, 1.6rem); border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust__grid .trust__item:nth-child(2n) { border-right: 0; }
@media (min-width: 860px) {
  .trust__grid .trust__item { border-bottom: 0; border-right: 1px solid var(--line-soft); }
  .trust__grid .trust__item:last-child { border-right: 0; }
  .trust__grid .trust__item:nth-child(2n) { border-right: 1px solid var(--line-soft); }
}
.trust__num { font-size: 1.6rem; font-weight: 850; letter-spacing: -.03em; color: var(--accent); line-height: 1.1; }
.trust__label { font-size: .87rem; color: var(--muted); margin-top: .25rem; }

/* ---------- Cards / services ------------------------------------------ */

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: #384352; transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .3, 1); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { color: var(--muted); font-size: .965rem; }
.card__list { list-style: none; margin: .2rem 0 1.2rem; padding: 0; display: grid; gap: .42rem; }
.card__list li { position: relative; padding-left: 1.4rem; font-size: .93rem; color: var(--muted); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px;
  border-radius: 2px; background: var(--accent); transform: rotate(45deg);
}
.card__link {
  margin-top: auto; align-self: flex-start; text-decoration: none;
  font-weight: 750; font-size: .93rem; color: var(--accent);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.card__link svg { width: 15px; height: 15px; transition: transform .18s; }
.card__link:hover svg { transform: translateX(3px); }

/* ---------- Process --------------------------------------------------- */

.step { position: relative; padding: 1.6rem 1.35rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.step__n {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 176, 0, .13); color: var(--accent);
  font-weight: 850; font-size: 1rem; margin-bottom: .95rem;
  border: 1px solid rgba(255, 176, 0, .28);
}
.step h3 { font-size: 1.06rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* ---------- Split (about) --------------------------------------------- */

.split { display: grid; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__stack { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.split__stack img { border-radius: var(--r); border: 1px solid var(--line); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.split__stack img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 10; }

.ticks { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: .72rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; color: #cbd4de; }
.ticks svg { width: 20px; height: 20px; flex: none; color: var(--accent); margin-top: .16em; }

/* ---------- Gallery --------------------------------------------------- */

.gallery { display: grid; gap: .7rem; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); }
@media (min-width: 700px) { .gallery { gap: .85rem; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); } }

.shot {
  position: relative; display: block; padding: 0; border: 1px solid var(--line);
  background: var(--surface-2); border-radius: var(--r); overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4 / 3; width: 100%;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .3, 1), opacity .3s; }
.shot:hover img { transform: scale(1.06); }
.shot__cap {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  padding: 1.9rem .8rem .65rem; text-align: left;
  font-size: .8rem; font-weight: 650; color: #eef2f6;
  background: linear-gradient(180deg, transparent, rgba(6, 9, 12, .88));
  opacity: 0; transform: translateY(6px); transition: opacity .22s, transform .22s;
}
.shot:hover .shot__cap, .shot:focus-visible .shot__cap { opacity: 1; transform: none; }
.shot--wide { grid-column: span 2; aspect-ratio: 16 / 9; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(6, 8, 11, .95); backdrop-filter: blur(5px);
  padding: clamp(.8rem, 3vw, 2.2rem);
}
.lightbox.is-open { display: grid; grid-template-rows: auto 1fr auto; gap: .8rem; }
.lightbox__img { max-width: 100%; max-height: 100%; margin: auto; object-fit: contain; border-radius: var(--r); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lightbox__cap { font-size: .9rem; color: var(--muted); }
.lightbox__count { font-size: .82rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.lb-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .16);
  color: #fff; cursor: pointer; flex: none;
}
.lb-btn:hover { background: rgba(255, 255, 255, .18); }
.lb-btn svg { width: 20px; height: 20px; }
.lightbox__nav { display: flex; align-items: center; justify-content: center; gap: .8rem; }

/* ---------- Areas ----------------------------------------------------- */

.areas { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.area {
  border: 1px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: .42rem .95rem; font-size: .87rem; color: var(--muted); font-weight: 650;
}

/* ---------- FAQ ------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.6rem 1.25rem 0;
  font-weight: 750; font-size: 1.04rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .55rem; top: 1.6rem;
  width: 11px; height: 11px; border-right: 2.2px solid var(--accent); border-bottom: 2.2px solid var(--accent);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.85rem; }
.faq__a { padding: 0 1.5rem 1.4rem 0; color: var(--muted); font-size: .985rem; }

/* ---------- Contact / form -------------------------------------------- */

.contact-grid { display: grid; gap: clamp(1.6rem, 3.5vw, 3rem); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.05fr .95fr; align-items: start; } }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.1rem); }







@media (min-width: 560px) { .field__row { grid-template-columns: 1fr 1fr; } }


.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-list svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: .22em; }
.contact-list dt, .contact-list .lbl { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 750; }
.contact-list a { text-decoration: none; font-weight: 700; }
.contact-list a:hover { color: var(--accent); }

.hours { width: 100%; border-collapse: collapse; font-size: .95rem; margin-top: .3rem; }
.hours th, .hours td { text-align: left; padding: .42rem 0; border-bottom: 1px solid var(--line-soft); font-weight: 650; }
.hours th { color: var(--muted); font-weight: 650; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours td { text-align: right; }

.map-card {
  display: block; text-decoration: none; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--surface); margin-top: 1.3rem;
  transition: border-color .18s, transform .18s;
}
.map-card:hover { border-color: #384352; transform: translateY(-2px); }
.map-card__top { position: relative; aspect-ratio: 16 / 8; background: var(--surface-2); }
.map-card__top img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.map-card__pin {
  position: absolute; inset: 0; display: grid; place-items: center; gap: .5rem;
  text-align: center; padding: 1rem;
}
.map-card__pin svg { width: 34px; height: 34px; color: var(--accent); filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .8)); }
.map-card__bottom { padding: .95rem 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.map-card__bottom span { font-size: .9rem; font-weight: 700; }
.map-card__bottom em { font-style: normal; font-size: .85rem; color: var(--accent); font-weight: 750; white-space: nowrap; }






/* ---------- Paginas legais --------------------------------------------- */

.legal { max-width: 46rem; }
.legal h2 { font-size: 1.25rem; margin: 2.4rem 0 .9rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.legal__meta { color: var(--muted-2); font-size: .88rem; margin-top: 1rem; }
.legal__list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .7rem; }
.legal__list li { color: var(--muted); line-height: 1.7; padding-left: 1.1rem; position: relative; }
.legal__list li::before { content: ''; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.legal__list strong, .legal p strong { color: var(--text); font-weight: 700; }
.legal__table { overflow-x: auto; margin-bottom: 1.4rem; border: 1px solid var(--line); border-radius: var(--r); }
.legal__table table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.legal__table th, .legal__table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.legal__table th { color: var(--text); font-weight: 700; background: var(--surface); }
.legal__table tr:last-child td { border-bottom: 0; }
.legal code { background: var(--surface-2); padding: .12rem .38rem; border-radius: 4px; font-size: .9em; color: var(--text); }
.legal__todo { color: var(--accent); font-weight: 700; }
.legal a { color: var(--accent); }
.legal__ref { color: var(--text); font-weight: 650; }

/* ---------- Avaliacoes do Google --------------------------------------- */

.center { text-align: center; }
.section-head.center { margin-left: auto; margin-right: auto; }
.rv__grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
@media (min-width: 760px) { .rv__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } }
.rv {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .85rem;
}
.rv__head { display: flex; align-items: center; gap: .8rem; }
.rv__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none; color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
}
.rv__who { display: flex; flex-direction: column; margin-right: auto; line-height: 1.3; }
.rv__who strong { font-size: .98rem; font-weight: 750; }
.rv__who em { font-style: normal; font-size: .82rem; color: var(--muted-2); }
.rv__g { width: 20px; height: 20px; flex: none; }
.rv__stars { display: inline-flex; gap: .12rem; }
.rv__stars svg { width: 16px; height: 16px; fill: var(--accent); }
.rv__txt { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.65; }
.rv__txt::before { content: '\201C'; }
.rv__txt::after { content: '\201D'; }
.rv__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .35rem;
  color: var(--accent); font-weight: 700; font-size: .9rem; text-decoration: none;
}
.rv__link svg { width: 15px; height: 15px; }
.rv__link:hover { text-decoration: underline; }



/* ---------- Antes e depois ---------------------------------------------- */

.ba__grid { display: grid; gap: 2.4rem; margin-top: 2rem; }
@media (min-width: 1000px) { .ba__grid { grid-template-columns: 1fr 1fr; gap: 2.6rem; } }
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; align-items: start; }
.ba__shot { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.ba__shot img { width: 100%; height: auto; display: block; }
.ba__tag {
  position: absolute; left: .55rem; top: .55rem;
  padding: .22rem .6rem; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.ba__tag--before { background: rgba(11, 14, 17, .82); color: #ff8a7a; border: 1px solid rgba(255, 138, 122, .4); }
.ba__tag--after { background: rgba(11, 14, 17, .82); color: var(--ok); border: 1px solid rgba(55, 214, 122, .4); }
.ba h3 { font-size: 1.1rem; margin: 1rem 0 .4rem; }
.ba p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ---------- Pilares (cards com icone) ----------------------------------- */

.pilares { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .pilares { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pilares { grid-template-columns: repeat(4, 1fr); } }
.pilar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.4rem 1.7rem; text-align: center;
}
.pilar__ico { display: grid; place-items: center; margin-bottom: 1.1rem; }
.pilar__ico svg { width: 64px; height: 64px; color: var(--accent); }
.pilar h3 {
  font-size: .96rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.4; margin-bottom: .8rem; color: var(--text);
}
.pilar h3 strong { font-weight: 800; }
.pilar p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ---------- Diferenciais ------------------------------------------------ */

.edge__card { padding-top: 1.35rem; }
.edge__ico {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: .9rem;
  display: grid; place-items: center;
  background: rgba(255, 176, 0, .12); border: 1px solid rgba(255, 176, 0, .28);
}
.edge__ico svg { width: 20px; height: 20px; color: var(--accent); }

/* ---------- Why choose us ---------------------------------------------- */

.why { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .why { grid-template-columns: 1fr 1.1fr; gap: 3.2rem; } }
.why__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.why__media img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
@media (max-width: 899px) { .why__media img { aspect-ratio: 16 / 10; } }
.why__text h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 1.4rem; }
.why__text p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.1rem; }
.why__text p strong { color: var(--text); font-weight: 750; }
.why__points {
  list-style: none; margin: 1.8rem 0 0; padding: 0;
  display: grid; gap: 1.1rem 1.6rem;
}
@media (min-width: 620px) { .why__points { grid-template-columns: 1fr 1fr; } }
.why__points li { display: flex; align-items: center; gap: .8rem; font-weight: 700; font-size: .96rem; }
.why__points svg { width: 22px; height: 22px; flex: none; color: var(--accent); }

/* ---------- Location + map -------------------------------------------- */

.locate { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .locate { grid-template-columns: 1fr 1.15fr; gap: 3rem; } }
.locate__text h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.locate__addr { font-weight: 800; font-size: 1.05rem; line-height: 1.5; margin-top: 1.4rem; }
.locate__meta { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .85rem; }
.locate__meta li { display: flex; align-items: center; gap: .7rem; font-weight: 700; }
.locate__meta svg { width: 20px; height: 20px; flex: none; color: var(--accent); }
.locate__meta a { color: inherit; text-decoration: none; }
.locate__meta a:hover { color: var(--accent); }
.locate__map {
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow);
}
.locate__map iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 640px) { .locate__map iframe { height: 300px; } }

/* ---------- Emergency band -------------------------------------------- */

.band {
  background: linear-gradient(120deg, #1b1206, #251906 55%, #14181d);
  border-block: 1px solid rgba(255, 176, 0, .22);
}
.band__inner { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 880px) { .band__inner { grid-template-columns: 1fr auto; gap: 2.4rem; } }
.band h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); margin-bottom: .4rem; }
.band p { color: #cdb894; max-width: 54ch; }

/* ---------- Footer ---------------------------------------------------- */

.footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.6rem; } }
.footer h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; }
.footer a { text-decoration: none; color: var(--muted); font-size: .95rem; }
.footer a:hover { color: var(--text); }
.footer p { color: var(--muted); font-size: .95rem; }


.footer__tag { font-size: 1.02rem; font-weight: 700; color: var(--text); line-height: 1.5; }
.footer__info { display: grid; gap: 1.1rem; }
.footer__info li { display: flex; align-items: flex-start; gap: .7rem; }
.footer__info svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; color: var(--accent); }
.footer__info strong { color: var(--muted-2); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; }
.footer__info span { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.footer__info a { color: var(--muted); }
.footer__info a:hover { color: var(--accent); }

.footer__legal {
  margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .5rem .75rem; font-size: .86rem;
}
.footer__legal a { color: var(--muted); text-decoration: none; }
.footer__legal a:hover { color: var(--accent); text-decoration: underline; }
.footer__legal span { color: var(--line); }

.footer__bottom {
  margin-top: 1rem; display: flex; justify-content: center;
  font-size: .82rem; color: var(--muted-2);
}

/* ---------- Mobile sticky action bar ----------------------------------- */


/* ---------- Botao flutuante de WhatsApp (computador) -------------------- */

.wafloat {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  display: none; align-items: center; gap: .6rem;
  padding: .85rem 1.3rem; border-radius: 999px;
  background: var(--wa); color: var(--wa-ink);
  font-weight: 800; font-size: .95rem; text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55);
  transition: transform .18s, box-shadow .18s;
}
.wafloat:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(37, 211, 102, .7); }
.wafloat svg { width: 22px; height: 22px; }
@media (min-width: 940px) { .wafloat { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .wafloat { transition: none; } }

.actionbar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(17, 21, 26, .96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a {
  display: grid; place-items: center; gap: .18rem; padding: .62rem .3rem .68rem;
  text-decoration: none; font-size: .73rem; font-weight: 750; color: var(--muted);
  border-right: 1px solid var(--line-soft);
}
.actionbar a:last-child { border-right: 0; }
.actionbar a svg { width: 21px; height: 21px; }
.actionbar a.is-wa { color: var(--wa); }
.actionbar a.is-call { color: var(--accent); }
@media (min-width: 940px) { .actionbar { display: none; } }
@media (max-width: 939px) { body { padding-bottom: 66px; } }

/* ---------- Utilities -------------------------------------------------- */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Page header for inner pages */
.pagehead { border-bottom: 1px solid var(--line-soft); background: var(--ink-2); padding-block: clamp(2.4rem, 5vw, 4rem); }
.pagehead h1 { font-size: clamp(1.9rem, 4.6vw, 3.05rem); }
.crumbs { font-size: .84rem; color: var(--muted-2); margin-bottom: .9rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--text); }
