:root {
  --bg: #121212;
  --bg-soft: #1b1b1b;
  --text: #f5f5f5;
  --text-muted: #cfcfcf;
  --accent: #d62828;
  --accent-hover: #b71c1c;
  --surface: #242424;
  --border: #3a3a3a;
  --header-offset: 96px;
  --header-bg-light: #f2f2f2;
  --header-text-dark: #1a1a1a;
  --header-text-muted: #4d4d4d;
  --header-border-light: #d5d5d5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #1f1f1f;
  background: #f4f4f4;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 242, 0.97);
  color: var(--header-text-dark);
  border-bottom: 1px solid var(--header-border-light);
  backdrop-filter: blur(3px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--header-border-light);
  background: #fff;
  color: var(--header-text-dark);
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.menu-toggle-lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background 0.2s ease;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(220px, 33vw, 430px);
  max-height: 66px;
  height: auto;
  object-fit: contain;
}

#menu-principal {
  flex: 1;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

.menu a {
  text-decoration: none;
  color: var(--header-text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--header-text-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.link-social {
  color: var(--header-text-muted);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.btn-cta,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  min-height: 42px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.email-reveal {
  border: 0;
  background: transparent;
  color: #4a4a4a;
  border-radius: 0;
  padding: 0;
  font: inherit;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  position: relative;
  max-width: 23ch;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-reveal.is-masked::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5ch;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(244, 244, 244, 0), #f4f4f4 85%);
}

.email-reveal:hover,
.email-reveal:focus-visible {
  color: #1f1f1f;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--text);
}

.email-reveal.is-revealed {
  display: inline-flex;
  align-items: center;
  max-width: none;
  overflow: visible;
  text-decoration: underline;
}

.footer-email {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  text-align: left;
}

.footer-email.is-masked {
  color: var(--text-muted);
}

.footer-email.is-masked::after {
  background: linear-gradient(to right, rgba(13, 13, 13, 0), #0d0d0d 85%);
}

.email-reveal-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.email-copy-btn {
  border: 1px solid #b7b7b7;
  background: #fff;
  color: #1f1f1f;
  border-radius: 6px;
  padding: 4px 8px;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.1;
  cursor: pointer;
}

.email-copy-btn:hover,
.email-copy-btn:focus-visible {
  border-color: var(--accent);
}

.email-copy-btn-footer {
  border-color: #5b5b5b;
  background: #181818;
  color: var(--text);
}

.btn-cta {
  background: var(--accent);
  color: #fff;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--accent-hover);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.hero {
  position: relative;
  isolation: isolate;
  background: #151515;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../imagens/bg.png");
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.8) 0%, rgba(25, 25, 25, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin-bottom: 4px;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-text {
  color: var(--text-muted);
  max-width: 65ch;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.info-grid,
.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.info-card,
.service-card {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}

.payment-logos {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-logos img {
  height: 34px;
  width: auto;
  display: block;
}

.section-dark .service-card {
  background: var(--bg-soft);
}

.gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8d8d8;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.location-grid iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 10px;
}

.contact-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 28px 0;
  background: #0d0d0d;
  color: var(--text);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-grid h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 80px;
    gap: 10px;
  }

  .brand img {
    width: clamp(190px, 30vw, 300px);
    max-height: 56px;
  }

  .menu {
    gap: 10px;
  }

  .menu a {
    font-size: 0.9rem;
  }

  .header-links .btn-cta {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .info-grid,
  .services-grid,
  .contact-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  #menu-principal {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    display: none;
    z-index: 120;
  }

  #menu-principal.is-open {
    display: block;
  }

  .menu {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
    background: #f6f6f6;
    border: 1px solid var(--header-border-light);
    border-radius: 10px;
  }

  .menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: #ececec;
  }

  .header-links {
    width: 100%;
    justify-content: space-between;
  }

  .info-grid,
  .services-grid,
  .contact-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
