:root {
  --bg: #161513;
  --surface: #1f1d19;
  --surface2: #28251f;
  --red: #e0272b;
  --red-hover: #ff3b3f;
  --red-deep: #7a1418;
  --cream: #f2ede2;
  --tan: #a99d8a;
  --line: rgba(242, 237, 226, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

@keyframes wordIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Chamfered corner (buttons, photo frames) */
.chamfer {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

/* ===== HEADER (barra única) ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 18, 16, 0.97);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}

@media(min-width:769px) {
  header.header-top {
    background: rgba(19, 18, 16, 0.22);
    border-bottom-color: transparent;
  }

  header.header-top::after {
    opacity: 0;
  }

  header.header-top nav.nav-links a {
    color: #ffffff;
  }

  header.header-top nav.nav-links a:hover {
    color: var(--red) !important;
  }
}

header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,39,43,0.55), transparent);
  transition: opacity .3s ease;
}

header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(224, 39, 43, 0.35);
  padding: 2px;
  position: relative;
  z-index: 2;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

header .brand span {
  font-family: 'Bebas Neue';
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--cream);
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  transform: translateX(-28px);
}

header .brand.loaded span {
  animation: brandReveal 0.9s ease-out forwards;
}

@keyframes brandReveal {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.header-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
  flex-shrink: 0;
}

nav.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
}

nav.nav-links a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tan);
  white-space: nowrap;
  transition: color .25s ease;
}

nav.nav-links a:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: linear-gradient(to bottom, transparent, rgba(224, 39, 43, 0.65), transparent);
}

nav.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--red);
  transition: left .25s ease, right .25s ease;
}

nav.nav-links a:hover {
  color: var(--cream);
}

nav.nav-links a:hover::after {
  left: 0;
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  background: transparent;
  border: 1px solid rgba(224, 39, 43, 0.45);
  border-radius: 100px;
  color: var(--cream);
  fill: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}

.btn-cta svg {
  fill: var(--red);
  transition: fill .25s ease;
  flex-shrink: 0;
}

.btn-cta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.btn-cta:hover svg {
  fill: var(--cream);
}

.wa-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(224, 39, 43, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.wa-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--red);
  transition: fill .2s ease;
}

.wa-icon-btn:active {
  background: var(--red);
}

.wa-icon-btn:active svg {
  fill: var(--cream);
}

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  height: 1.5px;
  background: var(--cream);
  display: block;
  transition: width .2s ease;
}

.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }

@media(min-width:769px) {
  .mobile-only {
    display: none !important;
  }
}

@media(max-width:768px) {
  .desktop-only {
    display: none !important;
  }

  header .wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
  }

  header .wrap .wa-icon-btn {
    justify-self: start;
  }

  header .wrap .brand {
    justify-self: center;
  }

  header .wrap .header-actions {
    justify-self: end;
  }

  nav.nav-links {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 99;
  }

  nav.nav-links.open {
    transform: translateX(0);
  }

  nav.nav-links a {
    padding: 18px 4px;
    border-bottom: none;
    background-image: linear-gradient(90deg, transparent, rgba(224, 39, 43, 0.65), transparent);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 1px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  nav.nav-links a::after,
  nav.nav-links a::before {
    display: none;
  }
}

/* ===== DROPDOWN DE SERVIÇOS NO MENU ===== */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-parent-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  transition: transform .2s ease;
}

.nav-item-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-caret-btn {
  display: none;
  background: none;
  border: none;
  color: var(--tan);
  padding: 8px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--tan);
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(224, 39, 43, 0.1);
  color: var(--cream);
}

@media(max-width:768px) {
  .nav-item-dropdown {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-parent-link {
    padding: 18px 4px;
    border-bottom: none;
    background-image: linear-gradient(90deg, transparent, rgba(224, 39, 43, 0.65), transparent);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 1px;
    font-size: 16px;
    letter-spacing: 0.04em;
    justify-content: space-between;
    flex: 1;
  }

  .nav-caret-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 4px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .nav-item-dropdown.open .nav-dropdown-menu {
    max-height: 260px;
  }

  .nav-item-dropdown.open .nav-caret-btn svg {
    transform: rotate(180deg);
  }

  .nav-caret-btn svg {
    transition: transform .2s ease;
  }

  .nav-dropdown-menu a {
    padding: 14px 4px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  will-change: transform;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22, 21, 19, 0.6) 0%, rgba(22, 21, 19, 0.78) 55%, rgba(22, 21, 19, 0.93) 100%);
}

@media(min-width:769px) {
  .hero-bg::before {
    background:
      linear-gradient(100deg, var(--bg) 0%, rgba(22, 21, 19, 0.94) 26%, rgba(22, 21, 19, 0.55) 50%, rgba(22, 21, 19, 0.15) 74%),
      linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 42%);
  }

  .hero {
    margin-top: -86px;
  }

  .hero-wrap {
    padding-top: 86px;
  }
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
  padding-bottom: 10px;
  max-width: none;
  margin: 0;
}

@media(min-width:769px) {
  .hero-wrap {
    padding-left: clamp(24px, 6vw, 96px);
  }
}

.hero-main {
  max-width: 560px;
}

.hero-main h1 {
  font-family: 'Anton', sans-serif;
  line-height: 0.95;
  max-width: 560px;
}

.hero-line1 {
  display: block;
  font-size: clamp(34px, 6vw, 60px);
  color: var(--cream);
}

.hero-line2 {
  display: block;
  font-size: clamp(46px, 9vw, 96px);
  color: var(--red);
  margin-top: 4px;
}

.hero-line1 span,
.hero-line2 span {
  display: inline-block;
  opacity: 0;
  animation: wordIn .6s ease forwards;
  margin-right: 0.28em;
}

.hero-sub {
  margin-top: 24px;
  max-width: 460px;
  color: var(--tan);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all .25s ease;
}

.hero-btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(224, 39, 43, 0.35);
}

.hero-btn-primary svg {
  transition: transform .25s ease;
}

.hero-btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(224, 39, 43, 0.45);
}

.hero-btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-btn-outline {
  background: rgba(242, 237, 226, 0.04);
  border-color: rgba(242, 237, 226, 0.25);
  color: var(--cream);
}

.hero-btn-outline:hover {
  border-color: var(--cream);
  background: rgba(242, 237, 226, 0.08);
  transform: translateY(-2px);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tan);
  transition: color .2s ease;
}

.hero-link:hover {
  color: var(--cream);
}

.hero-badges {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100% - 1180px) / 2 + 24px));
  bottom: 40px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-badges > * {
  border-right: 1px solid rgba(224, 39, 43, 0.4);
}

.hero-badges > *:last-child {
  border-right: none;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  background: #000;
  transition: background .2s ease;
}

.hero-social:hover {
  background: rgba(224, 39, 43, 0.25);
}

.hero-emblem {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 26px 16px 20px;
  background: rgba(22, 21, 19, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
}

.hero-emblem-big {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  color: var(--cream);
  line-height: 1;
}

.hero-emblem-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
  padding-left: 14px;
  border-left: 1px solid rgba(242, 237, 226, 0.15);
}

.hero-emblem-label span {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--tan);
  white-space: nowrap;
}

.hero-badges > *:first-child {
  border-radius: 4px 0 0 4px;
}

.hero-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  background: #000;
}

.hero-logo-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

@media(max-width:768px) {
  .hero {
    min-height: 540px;
    padding: 24px 0 32px;
  }

  .hero-wrap {
    align-items: flex-end;
  }

  .hero-badges {
    position: static;
    order: -1;
    align-self: flex-end;
    margin: 0 4px 20px auto;
  }

  .hero-emblem {
    gap: 0;
    padding: 10px 14px;
    border-left: none;
    border-top: 3px solid var(--red);
    border-radius: 0 4px 0 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-emblem-big {
    font-size: 22px;
  }

  .hero-emblem-label {
    padding-left: 0;
    border-left: none;
    margin-top: 2px;
  }

  .hero-emblem-label span {
    font-size: 8.5px;
    white-space: nowrap;
    line-height: 1.2;
  }

  .hero-badges > *:first-child {
    border-radius: 4px 0 0 0;
  }

  .hero-logo-mark {
    width: 50px;
    border-top: 3px solid var(--red);
  }

  .hero-logo-mark img {
    width: 26px;
    height: 26px;
  }

  .hero-social {
    width: 50px;
    border-top: 3px solid var(--red);
  }

  .hero-social svg {
    width: 15px;
    height: 15px;
  }
}

@media(max-width:420px) {
  .hero {
    min-height: 500px;
  }
}

/* ===== MARQUEE (informativos) ===== */
.marquee-strip {
  position: relative;
  padding: 34px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(224, 39, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-item span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.marquee-dot {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(224, 39, 43, 0.55), transparent);
  flex-shrink: 0;
  align-self: center;
}

/* ===== SECTION generic ===== */
.section {
  padding: 100px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 20px;
}

.section-tag .tick {
  width: 18px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.section h2 {
  font-family: 'Bebas Neue';
  font-size: clamp(30px, 4.2vw, 48px);
  text-transform: uppercase;
}

.section-desc {
  color: var(--tan);
  margin-top: 16px;
  font-size: 16.5px;
  line-height: 1.6;
}

/* ===== QUEM SOMOS ===== */
.about-grid {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-photo {
  flex: 0.85;
  min-width: 260px;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--tan);
  font-size: 14px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1.2;
  min-width: 280px;
}

.about-text .lead::first-letter {
  font-family: 'Anton';
  font-size: 60px;
  float: left;
  line-height: 0.8;
  padding: 6px 10px 0 0;
  color: var(--red);
}

.about-text p {
  color: var(--tan);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-pull {
  font-family: 'Anton';
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--cream) !important;
  line-height: 1.25;
  margin: 24px 0;
  padding-left: 22px;
  border-left: 3px solid var(--red);
}

/* ===== ONDE ESTAMOS ===== */
.map-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.map-embed {
  flex: 1.3;
  min-width: 300px;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.location-block {
  flex: 1;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  align-self: flex-start;
}

.location-block h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 14px;
}

.location-block p {
  color: var(--tan);
  font-size: 15px;
  line-height: 1.8;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 9px 0;
  color: var(--tan);
  border-bottom: 1px solid var(--line);
}

.hours-row span:last-child {
  color: var(--cream);
  font-weight: 700;
}

/* ===== SERVIÇOS (cards flutuantes + carrossel mobile) ===== */
.svc-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.svc-row::-webkit-scrollbar {
  display: none;
}

.svc-item {
  flex: 0 0 82%;
  scroll-snap-align: center;
}

@media(min-width:769px) {
  .svc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
  }

  .svc-item {
    flex: initial;
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  padding: 36px 32px;
  transition: transform .25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
}

.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-code {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.service-card h3 {
  font-family: 'Bebas Neue';
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p.desc {
  color: var(--tan);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--red);
}

.service-book:hover {
  color: var(--red-hover);
}

.service-more {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--tan);
  transition: color .2s ease;
}

.service-more:hover {
  color: var(--cream);
}

/* ===== RESULTADOS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 56px;
}

@media(max-width:760px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--tan);
  border: none;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(-1deg);
  z-index: 2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item:nth-child(even):hover {
  transform: scale(1.05) rotate(1deg);
}

.compare-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media(min-width:769px) {
  .compare-wrap {
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
  }
}

.compare-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.compare-list::-webkit-scrollbar {
  display: none;
}

@media(min-width:769px) {
  .compare-list {
    flex-direction: column;
    min-width: 210px;
  }
}

.compare-item-btn {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--tan);
}

@media(min-width:769px) {
  .compare-item-btn {
    border-radius: 0;
    text-align: left;
    width: 100%;
  }
}

.compare-item-btn.active {
  background: var(--red);
  color: var(--cream);
  border-color: var(--red);
}

.compare-stage {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 16px;
  aspect-ratio: 4/3;
}

@media(min-width:769px) {
  .compare-stage {
    aspect-ratio: 16/10;
  }
}

.compare-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 18px;
  text-transform: uppercase;
}

.layer-before {
  background: linear-gradient(135deg, #2b2620, #1a1815);
  color: var(--tan);
}

.layer-after {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: var(--cream);
  clip-path: inset(0 0 0 50%);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle::after {
  content: '⇔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--cream);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.compare-tag {
  position: absolute;
  top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(22, 21, 19, 0.7);
}

.tag-before {
  left: 16px;
}

.tag-after {
  right: 16px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 9, 8, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: 'Bebas Neue';
  font-size: 18px;
  text-transform: uppercase;
  color: var(--tan);
  transition: transform .1s ease;
  transform-origin: center;
}

.lightbox-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--surface);
}

.lightbox-controls button {
  background: none;
  border: none;
  color: var(--cream);
  display: flex;
}

.lightbox-zoom-level {
  font-size: 12px;
  color: var(--tan);
  width: 40px;
  text-align: center;
}

/* ===== AVALIAÇÕES ===== */
.rev-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rev-row::-webkit-scrollbar {
  display: none;
}

.rev-item {
  flex: 0 0 calc(50% - 6px);
  scroll-snap-align: start;
  background: var(--surface);
  padding: 24px;
}

@media(min-width:769px) {
  .rev-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    overflow: visible;
  }

  .rev-item {
    flex: initial;
    padding: 36px;
  }
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-quote {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.review-author .name {
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.review-author .car {
  color: var(--tan);
  font-size: 12.5px;
}

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  color: var(--cream);
  font-size: 16.5px;
  font-weight: 600;
}

.faq-question .plus {
  font-family: 'Bebas Neue';
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer-inner {
  padding: 0 4px 24px;
  color: var(--tan);
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
}

/* ===== AGENDAMENTO ===== */
.booking-box {
  background: linear-gradient(160deg, var(--surface), var(--surface2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width:760px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-box {
    padding: 24px;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1/-1;
}

.field.field-half {
  grid-column: span 1;
}

@media(max-width:760px) {
  .field.field-half {
    grid-column: 1/-1;
  }
}

.field label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tan);
}

.field-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: rgba(169, 157, 138, 0.6);
}

.field-required {
  color: var(--red);
  font-weight: 700;
}

.wa-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: none;
  transition: background .2s ease;
}

.wa-submit-btn svg {
  color: #ffffff;
  flex-shrink: 0;
}

.wa-submit-btn:hover {
  background: #1ebe5a;
  box-shadow: none;
}

.wa-submit-btn:focus {
  outline: none;
  box-shadow: none;
}

.field-input {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 15px;
  color: var(--tan);
  pointer-events: none;
  z-index: 1;
  transition: color .2s ease;
}

.field-input:focus-within .field-icon {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(22, 21, 19, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  padding: 14px 16px 14px 42px;
  font-size: 15.5px;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a99d8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.field select option {
  background: var(--surface);
  color: var(--cream);
}

.field input[type="date"],
.field input[type="time"] {
  cursor: pointer;
}

.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(70%) sepia(50%) saturate(600%) hue-rotate(315deg) brightness(1.1);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.field input[type="time"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(22, 21, 19, 0.85);
  box-shadow: 0 0 0 3px rgba(224, 39, 43, 0.18);
}

.field textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 90px;
}

.form-note {
  color: var(--tan);
  font-size: 13px;
  margin-top: 14px;
}

/* ===== FIDELIDADE ===== */
.loyalty-card {
  background: linear-gradient(160deg, var(--surface), var(--surface2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 44px;
}

.loyalty-stamps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 8px;
}

.loyalty-stamps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 1px;
  background-image: linear-gradient(to right, var(--line) 60%, transparent 0%);
  background-size: 14px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}

.stamp {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 60px;
  flex-shrink: 0;
}

.stamp svg {
  width: 60px;
  height: 60px;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 50%;
}

.stamp span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tan);
  white-space: nowrap;
}

.stamp.done svg {
  background: var(--bg);
  border: 1.5px solid rgba(224, 39, 43, 0.5);
  color: var(--red);
}

.stamp-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px dashed rgba(169, 157, 138, 0.35);
  box-sizing: border-box;
}

.stamp.pending span {
  color: rgba(169, 157, 138, 0.6);
}

.stamp.reward {
  width: 74px;
}

.stamp.reward svg {
  width: 74px;
  height: 74px;
  padding: 20px;
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  border: none;
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(224, 39, 43, 0.4);
}

.stamp.reward span {
  color: var(--cream);
  font-weight: 800;
}

.loyalty-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.loyalty-note {
  color: var(--tan);
  font-size: 13px;
  opacity: 0.85;
}

.loyalty-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--red);
  flex-shrink: 0;
  transition: color .2s ease, gap .2s ease;
}

.loyalty-cta:hover {
  color: var(--red-hover);
  gap: 12px;
}

@media(max-width:640px) {
  .loyalty-stamps::before {
    display: none;
  }

  .loyalty-card {
    padding: 32px 24px;
  }

  .loyalty-stamps {
    justify-content: center;
    gap: 18px 14px;
  }
}

/* ===== PÁGINA DE SERVIÇO ===== */
.service-hero {
  padding-top: 64px;
  padding-bottom: 56px;
  background: linear-gradient(160deg, var(--surface), var(--bg));
  border-bottom: 1px solid var(--line);
}

.service-hero-inner {
  max-width: 720px;
}

.breadcrumb {
  font-size: 12.5px;
  color: var(--tan);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--tan);
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--cream);
}

.breadcrumb span {
  color: rgba(169, 157, 138, 0.5);
}

.service-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 18px;
}

.service-hero-sub {
  color: var(--tan);
  font-size: 17px;
  line-height: 1.65;
  max-width: 600px;
}

.service-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.service-detail-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.steps-list {
  flex: 1.6;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step-item:first-child {
  padding-top: 0;
}

.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--red);
  opacity: 0.6;
  flex-shrink: 0;
  width: 50px;
}

.step-body h3 {
  font-family: 'Bebas Neue';
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-body p {
  color: var(--tan);
  font-size: 15px;
  line-height: 1.65;
}

.service-side-card {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(160deg, var(--surface), var(--surface2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  align-self: flex-start;
  position: sticky;
  top: 110px;
}

.service-side-card h3 {
  font-family: 'Bebas Neue';
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--tan);
  line-height: 1.5;
}

.benefits-list li svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-list {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13.5px;
}

.spec-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
  flex-shrink: 0;
}

.spec-value {
  color: var(--cream);
  text-align: right;
}

@media(max-width:900px) {
  .service-side-card {
    position: static;
  }
}

/* ===== PROGRAMA PARCERIA ===== */
.partner-card {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}

.partner-features {
  flex: 1.7;
  min-width: 300px;
  background: linear-gradient(160deg, var(--surface), var(--surface2));
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media(max-width:900px) {
  .partner-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.partner-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(224, 39, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.partner-feature h3 {
  font-family: 'Bebas Neue';
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.partner-feature p {
  color: var(--tan);
  font-size: 14.5px;
  line-height: 1.65;
}

.partner-cta-panel {
  flex: 1;
  min-width: 280px;
  background: linear-gradient(160deg, var(--red-deep), var(--red));
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.partner-cta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 226, 0.8);
}

.partner-cta-panel h3 {
  font-family: 'Bebas Neue';
  font-size: 27px;
  text-transform: uppercase;
  color: var(--cream);
}

.partner-cta-panel p {
  color: rgba(242, 237, 226, 0.85);
  font-size: 14.5px;
  line-height: 1.6;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: var(--cream);
  color: var(--red-deep);
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.partner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}

@media(min-width:769px) {
  .footer-grid {
    flex-direction: row;
    gap: 40px;
  }
}

.footer-col {
  flex: 1;
}

.footer-col.brand-col {
  flex: 1.4;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 14px;
}

.footer-col p {
  color: var(--tan);
  font-size: 14px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--tan);
  font-size: 12.5px;
}

/* ===== FLOAT WHATSAPP ===== */
.wa-bubble {
  position: fixed;
  bottom: 36px;
  right: 92px;
  z-index: 200;
  background: var(--cream);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: 100px;
  white-space: nowrap;
}

@media(max-width:600px) {
  .wa-bubble {
    display: none;
  }
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: var(--cream);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}