:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --ink: #f4f4f4;
  --muted: #d4d4d4;
  --red: #e31e24;
  --red-2: #b8181d;
  --card: #ffffff;
  --line: #222;
  --paper: #f3f3f3;
  --from: #5c5c5c;
  --wa: #25d366;
  --header-h: 4.5rem;
  --font: "Barlow", "Segoe UI", system-ui, sans-serif;
  --font-display: "Barlow Condensed", "Barlow", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: clip;
}

h1, h2, h3,
.brand-text strong,
.kicker,
.price,
.info-card h3 {
  font-family: var(--font-display);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

a:hover { text-decoration: underline; }

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: .5rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .55rem max(1.4rem, env(safe-area-inset-right)) .55rem max(1.4rem, env(safe-area-inset-left));
  background: var(--bg);
  border-bottom: 3px solid var(--red);
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: .04em;
  font-weight: 800;
}

.brand-text span {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .02em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav a:not(.btn-wa)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.nav a:not(.btn-wa):hover::after,
.nav a:not(.btn-wa).is-active::after {
  transform: scaleX(1);
}

.nav a:hover { text-decoration: none; }

.nav a.is-active {
  text-decoration: none;
}

.btn-wa {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: .7rem 1.15rem;
  min-height: 44px;
  border-radius: 999px;
}

.btn-wa:hover { text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  .btn-wa:hover { filter: brightness(1.05); transform: translateY(-1px); }
}

.hero .btn-wa,
.contact-cta .btn-wa {
  background: var(--red);
  color: #fff;
}

.hero .btn-wa:hover,
.contact-cta .btn-wa:hover {
  background: var(--red-2);
  filter: none;
}

.hero .btn-sheen,
.contact-cta .btn-sheen { display: none; }

.nav a.btn-wa {
  color: #fff;
  padding: .55rem 1rem;
}

.btn-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-sheen {
    animation: sheen 4.2s ease-in-out 1.2s infinite;
  }
  .hero-copy h1::after {
    animation: lineDraw .7s ease .15s both;
  }
}

@keyframes sheen {
  0%, 70% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes lineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.contato a.btn-wa {
  margin-top: .6rem;
}

.menu-btn {
  display: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: .4rem .7rem;
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 720px);
  padding: 2.2rem 0 3rem;
  overflow: hidden;
  background: #111;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease;
}

.hero-slides img.is-on {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.1s ease, transform 7s ease-out;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.55) 48%, rgba(8,8,8,.28) 100%),
    linear-gradient(180deg, rgba(8,8,8,.35) 0%, rgba(8,8,8,.15) 40%, rgba(8,8,8,.55) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: .6rem;
  max-width: 38rem;
}

.hero-copy h1 {
  margin: 0 0 .55rem;
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.05;
  max-width: 16ch;
  position: relative;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 4.2rem;
  height: 4px;
  margin-top: .7rem;
  background: var(--red);
  transform-origin: left;
}

.kicker {
  margin: 0 0 .45rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0 0 1.2rem;
  color: #ececec;
  max-width: 42ch;
}

.place {
  margin: -.4rem 0 1.1rem;
  max-width: none;
}

.place a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  font-size: .95rem;
}

.place a:hover { text-decoration: underline; }

.card {
  background: var(--card);
  color: #111;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,.14);
  }
  .card:hover img {
    transform: scale(1.07);
  }
  .js [data-reveal].in.card:hover {
    transform: translateY(-6px);
  }
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top: 6px solid var(--red);
  transition: transform .5s ease;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js [data-reveal].in {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

.js .grid [data-reveal]:nth-child(1) { transition-delay: .04s; }
.js .grid [data-reveal]:nth-child(2) { transition-delay: .12s; }
.js .grid [data-reveal]:nth-child(3) { transition-delay: .2s; }
.js .grid [data-reveal]:nth-child(4) { transition-delay: .28s; }

.section {
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}

.section.paper {
  background: var(--paper);
  color: #111;
  border-top: 0;
}

.section.paper h2 { color: #111; }

.section.paper .sub,
.section.paper .lead { color: #444; }

.section h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.sub {
  margin: .2rem 0 1.3rem;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card-body { padding: .85rem .9rem 1rem; }

.card h3 {
  margin: 0 0 .35rem;
  font-size: .98rem;
}

.card .desc {
  margin: 0 0 .45rem;
  font-size: .85rem;
  color: #555;
  line-height: 1.35;
}

.from {
  margin: 0;
  font-size: .8rem;
  color: var(--from);
}

.price {
  margin: .1rem 0 0;
  color: #111;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.btn-card {
  margin-top: .75rem;
  width: 100%;
  font-size: .82rem;
  padding: .55rem .7rem;
  min-height: 44px;
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 62ch;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.svc {
  border-top: 2px solid var(--red);
  padding: .85rem 0 0;
}

.svc h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
}

.svc p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.pros {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.pros li {
  padding: .65rem 0 .65rem 1.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.pros li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: .45rem;
  height: .45rem;
  background: var(--red);
}

.hours-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hours-box article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}

.hours-box h3 { margin: 0 0 .4rem; }

.hours-box p { margin: 0; color: var(--muted); }

.table-wrap {
  max-width: 720px;
  overflow-x: auto;
}

.prices {
  width: 100%;
  border-collapse: collapse;
}

.prices th,
.prices td {
  text-align: left;
  padding: .7rem .4rem;
  border-bottom: 1px solid var(--line);
}

.prices .val { color: var(--red); font-weight: 800; }

.prices .ask { text-align: right; }

.prices .ask a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.prices .ask a:hover { text-decoration: underline; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
  margin-top: 1.15rem;
}

.contact-panel { min-width: 0; }

.info-card {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: .85rem;
  margin: 0 0 .8rem;
  padding: 1rem 1.05rem 1.05rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
}

.info-card:last-child { margin-bottom: 0; }

.info-ico {
  color: var(--red);
  display: grid;
  place-items: start center;
  padding-top: .1rem;
}

.info-card h3 {
  margin: 0 0 .35rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.info-card address {
  font-style: normal;
  margin: 0 0 .7rem;
}

.info-card p {
  margin: 0 0 .4rem;
  color: var(--muted);
  line-height: 1.4;
}

.info-card p:last-child { margin-bottom: 0; }

.info-card .btn-outline { margin-top: .15rem; }

.contato a:not(.btn-wa):not(.btn-outline) {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.contato a:not(.btn-wa):not(.btn-outline):hover { text-decoration: underline; }

.contact-cta { margin: 1.15rem 0 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .55rem 1rem;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline:hover { text-decoration: none; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: .7rem 0 0;
}

.map-wrap {
  margin: 0;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-wrap iframe[hidden] { display: none; }

.quote {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, .72);
}

.quote[hidden] { display: none; }

body.is-quote { overflow: hidden; }

.quote-box {
  position: relative;
  width: min(440px, 100%);
  background: #111;
  color: #fff;
  border-top: 4px solid var(--red);
  border-radius: 16px 16px 0 0;
  padding: 1.15rem 1.15rem calc(1.2rem + env(safe-area-inset-bottom, 0px));
}

.quote-x {
  position: absolute;
  top: .7rem;
  right: .7rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 40px;
  padding: .3rem .65rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-box .kicker { margin-bottom: .2rem; }

.quote-box h2 {
  margin: 0 0 .35rem;
  font-size: 1.85rem;
}

.quote-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .95rem;
}

.quote-box label {
  display: block;
  margin: .55rem 0 .3rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}

.quote-box input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  padding: .6rem .8rem;
}

.quote-box input:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.quote-err {
  margin: .55rem 0 0;
  color: #ffb4b4;
  font-size: .9rem;
  font-weight: 700;
}

.quote-box .btn-wa {
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 721px) {
  .quote { align-items: center; padding: 1.2rem; }
  .quote-box {
    border-radius: 14px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--red);
  }
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  background: var(--wa);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: .7rem 1.05rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
  font-size: .85rem;
  border-top: 1px solid var(--line);
}

.footer p { margin: 0; }

.footer a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .grid,
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: #444;
  }
  .header {
    flex-wrap: nowrap;
    padding: .45rem max(1rem, env(safe-area-inset-right)) .45rem max(1rem, env(safe-area-inset-left));
  }
  .menu-btn { margin-left: auto; }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand-mark svg {
    width: 24px;
    height: 24px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: .8rem 1rem 1.1rem;
    gap: .15rem;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 12px 24px rgba(0,0,0,.35);
  }
  .nav.open { display: flex; }
  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: .4rem .2rem;
  }
  .nav a:not(.btn-wa)::after { bottom: 8px; }
  .nav a.btn-wa {
    margin-top: .55rem;
    width: 100%;
    justify-content: center;
  }
  .wrap { padding: 0 1rem; }
  .hero {
    min-height: min(52dvh, 420px);
    padding: 1.5rem 0 2.2rem;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.62) 42%, rgba(8,8,8,.78) 100%);
  }
  .hero-copy {
    max-width: none;
    padding-top: .15rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: 14ch;
  }
  .hero-copy p { max-width: none; }
  .hero .btn-wa { min-height: 48px; }
  .section { padding: 1.7rem 0; }
  .card img { height: 150px; }
  .btn-card { font-size: .8rem; }
  .footer { padding: 1.2rem 0 5rem; }
}

@media (max-width: 720px) {
  .grid,
  .svc-grid,
  .hours-box,
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 260px; }
}

@media (max-width: 560px) {
  .brand-text span { display: none; }
  .contato .btn-wa,
  .contato .btn-outline { width: 100%; }
  .hero { padding: 1.25rem 0 2rem; }
  .map-wrap iframe { min-height: 220px; height: 220px; }
  .info-card { padding: .9rem .85rem; }
}

@media (min-width: 1081px) {
  .wa-float { display: none; }
  .hero { min-height: min(78vh, 720px); }
  .grid { grid-template-columns: repeat(4, 1fr); }
}

@media print {
  .header,
  .wa-float,
  .menu-btn,
  .map-wrap,
  .btn-wa,
  .btn-outline,
  .quote,
  .nav { display: none !important; }
  body { background: #fff; color: #111; }
  .hero-copy h1,
  .price,
  .prices .val { color: #111; }
  a { color: #111; }
}
