:root {
  --ink: #111111;
  --panel: #181818;
  --panel-2: #222222;
  --steel: #36383b;
  --line: #393a3d;
  --muted: #b8b3aa;
  --paper: #f4efe6;
  --paper-soft: #ddd4c7;
  --red: #df2f2b;
  --red-dark: #a81f1c;
  --amber: #d88a2e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --shell: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(216, 138, 46, 0.95);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 32px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(17, 17, 17, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.main-nav {
  position: fixed;
  inset: var(--header) 0 auto 0;
  display: grid;
  gap: 2px;
  padding: 12px 16px 18px;
  background: rgba(17, 17, 17, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-130%);
  transition: transform 180ms ease;
}

.main-nav.is-open {
  transform: translateY(0);
}

.main-nav a {
  padding: 14px 12px;
  border-radius: var(--radius);
  color: var(--paper-soft);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.header-whatsapp {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 120px 0 58px;
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/optimized/facebook-promocao.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.88) 38%, rgba(13, 13, 13, 0.55) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 12px);
}

.hero-content {
  max-width: 920px;
}

.hero-kicker,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kicker span,
.trust-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--paper-soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 840px;
  font-size: 2.08rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero p {
  margin: 0;
  max-width: 700px;
  color: var(--paper-soft);
  font-size: 1.03rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(223, 47, 43, 0.24);
}

.btn-primary:hover {
  background: #f13a34;
}

.btn-secondary,
.btn-map {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.btn-map {
  background: var(--panel-2);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 1px;
  max-width: 880px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-row div {
  padding: 16px;
  background: rgba(17, 17, 17, 0.82);
}

.proof-row dt {
  color: var(--white);
  font-size: 1.56rem;
  line-height: 1;
  font-weight: 950;
}

.proof-row dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-band {
  background: var(--red);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.trust-grid {
  padding: 18px 0;
}

.trust-grid span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(17, 17, 17, 0.2);
  color: var(--white);
}

.section {
  position: relative;
  padding: 76px 0;
  background: var(--ink);
}

.section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, #151515 0%, #111111 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 90px);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.eyebrow {
  margin: 0;
  color: var(--amber);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  max-width: 830px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.shop-copy > p,
.reviews-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 700px;
}

.services-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.service-card:hover {
  border-color: rgba(216, 138, 46, 0.45);
}

.service-index {
  color: var(--red);
  font-weight: 950;
  font-size: 0.84rem;
}

.service-card h3 {
  margin: 18px 0 12px;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card p,
.process-list p,
.faq-list p,
.contact-details dd,
.service-form .form-note {
  margin: 0;
  color: var(--muted);
}

.real-shop {
  background:
    linear-gradient(90deg, #111111, #171717),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
}

.shop-layout,
.reviews-layout,
.faq-layout,
.contact-layout {
  display: grid;
  gap: 34px;
}

.shop-copy {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--paper-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: var(--red);
}

.shop-visual {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.shop-visual figure,
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
}

.shop-visual img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050505;
}

.visual-primary {
  aspect-ratio: 1 / 1;
}

.visual-secondary {
  aspect-ratio: 16 / 9;
}

figcaption {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-list li {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 22px;
  background: var(--panel);
}

.process-list span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
}

.process-list strong {
  color: var(--white);
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-grid figure {
  min-height: 260px;
}

.gallery-grid img {
  height: 260px;
}

.reviews-section {
  background: linear-gradient(135deg, #1d1d1d 0%, #101010 100%);
}

.reviews-grid {
  display: grid;
  gap: 12px;
}

.reviews-grid blockquote {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.reviews-grid p {
  margin: 0;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--white);
  font-weight: 850;
}

.faq-list p {
  padding: 0 20px 20px;
}

.contact-section {
  background:
    linear-gradient(180deg, #151515 0%, #0f0f10 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
}

.contact-info {
  display: grid;
  gap: 18px;
}

address {
  color: var(--paper-soft);
  font-style: normal;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.contact-details div {
  padding: 16px;
  background: var(--panel);
}

.contact-details dt {
  color: var(--amber);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-details dd {
  margin-top: 5px;
}

.service-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-form h3 {
  margin: 0 0 4px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}

.service-form label {
  display: grid;
  gap: 7px;
  color: var(--paper-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-form input,
.service-form select,
.service-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #101010;
  color: var(--paper);
  padding: 13px 12px;
  min-height: 48px;
}

.service-form textarea {
  resize: vertical;
}

.service-form input::placeholder,
.service-form textarea::placeholder {
  color: #7f7a72;
}

.service-form .is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 47, 43, 0.16);
}

.form-note {
  font-size: 0.82rem;
}

.map-panel {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(223, 47, 43, 0.2), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
    var(--panel);
}

.map-panel iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-fallback {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 17, 17, 0.88);
  color: var(--paper);
  pointer-events: none;
}

.map-fallback strong {
  font-size: 0.96rem;
  text-transform: uppercase;
}

.map-fallback span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 26px 0 calc(88px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0b0b;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 10px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--paper);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  z-index: 42;
  left: 16px;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-cta.is-hidden {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 680px) {
  .hero h1 {
    font-size: 3.55rem;
  }

  .proof-row,
  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full-field,
  .service-form h3,
  .form-note {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  :root {
    --header: 82px;
  }

  .shell {
    width: min(100% - 48px, var(--shell));
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    transition: none;
  }

  .main-nav a {
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--red);
    color: var(--white);
    font-weight: 900;
  }

  .hero {
    min-height: 86svh;
    padding-top: 142px;
    padding-bottom: 66px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: 4.35rem;
  }

  .hero p {
    font-size: 1.14rem;
  }

  .proof-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.64fr);
    align-items: center;
  }

  .shop-visual {
    grid-template-columns: 1.1fr 0.82fr;
    align-items: end;
  }

  .visual-primary {
    min-height: 430px;
  }

  .visual-secondary {
    transform: translateY(34px);
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.7fr;
  }

  .gallery-grid figure {
    min-height: 320px;
  }

  .gallery-grid img {
    height: 320px;
  }

  .gallery-grid figure:first-child {
    grid-row: span 2;
  }

  .gallery-grid figure:first-child img {
    height: 694px;
  }

  .reviews-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: start;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 780px;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 30px;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 5rem;
  }
}

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 1.96rem;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .btn:hover {
    transform: none;
  }
}
