:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-2: #eef4fa;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe5f0;
  --brand: #0b3a67;
  --brand-2: #0f5f9f;
  --accent: #0ea5a4;
  --wa: #16a34a;
  --call: #ea580c;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
  --radius: 18px;
  --container: 1120px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(14, 165, 164, 0.08), transparent 45%),
    radial-gradient(circle at 95% 8%, rgba(11, 58, 103, 0.08), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 95, 159, 0.28);
  outline-offset: 2px;
}

.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: absolute;
  left: 12px;
  top: -48px;
  padding: 8px 12px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section-pad {
  padding: 64px 0;
}

.section-pad.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(238, 244, 250, 0.92));
  border-top: 1px solid rgba(219, 229, 240, 0.8);
  border-bottom: 1px solid rgba(219, 229, 240, 0.8);
}

.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(1.95rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

code {
  background: rgba(11, 58, 103, 0.07);
  border: 1px solid rgba(11, 58, 103, 0.1);
  padding: 0.08rem 0.35rem;
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(var(--header-h) - 6px);
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--surface-2);
  color: var(--brand);
}

.hero {
  padding-top: 34px;
}

.hero-grid {
  display: grid;
  gap: 20px;
}

.hero-copy,
.hero-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.hero-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.subheadline,
.subtitle {
  margin-top: 12px;
  color: var(--brand);
  font-weight: 700;
}

.hero-text {
  margin-top: 14px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
}

.btn-call {
  background: var(--call);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--brand);
}

.hero-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 58, 103, 0.08);
  border: 1px solid rgba(11, 58, 103, 0.1);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 600;
}

.panel-card {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(11, 58, 103, 0.05), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(11, 58, 103, 0.08);
}

.panel-card h2 {
  font-size: 1.15rem;
}

.panel-list {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.panel-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-2);
  font-weight: 700;
}

.hero-photo {
  margin: 14px 0 0;
}

.hero-photo img {
  border-radius: 14px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe8f2;
}

.hero-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--muted);
}

.trust-photos {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.trust-photos figure,
.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.trust-photos img,
.gallery-item img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe8f2;
}

.trust-photos figcaption,
.gallery-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-groups {
  display: grid;
  gap: 18px;
}

.service-group {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.service-group h3 {
  margin-bottom: 12px;
  color: var(--brand);
}

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

.service-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 14px;
}

.service-card h4 {
  margin-bottom: 6px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 16px 64px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
}

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

.gallery-item {
  overflow: hidden;
}

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

.location-card,
.map-embed,
.contact-info,
.contact-form-wrap,
.contact-location-wrap {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.location-card,
.contact-info,
.contact-form-wrap,
.contact-location-wrap {
  padding: 18px;
}

.location-card address {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.location-card p {
  margin-top: 10px;
  color: var(--muted);
}

.location-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-embed {
  overflow: hidden;
  min-height: 320px;
}

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

.contact-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

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

.contact-item strong {
  color: var(--brand);
  text-align: right;
}

.hours-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 165, 164, 0.06), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(14, 165, 164, 0.12);
}

.hours-box h3 {
  margin-bottom: 10px;
}

.hours-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.hours-box li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(71, 85, 105, 0.25);
  padding-bottom: 6px;
}

.hours-box li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--muted);
}

.contact-location-wrap h3 {
  margin-bottom: 8px;
}

.contact-location-address {
  color: var(--muted);
  margin-bottom: 12px;
}

#contato .contact-location-wrap {
  overflow: hidden;
}

.contact-map-embed {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  height: 240px;
  min-height: 0 !important;
}

#contato .contact-map-embed iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
  display: block;
  max-width: 100%;
}

#contato.section-pad {
  padding: 50px 0;
}

#contato .contact-grid {
  gap: 14px;
}

#contato .contact-info,
#contato .contact-form-wrap,
#contato .contact-location-wrap {
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#contato .contact-info h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.2;
  margin-bottom: 6px;
}

#contato .contact-list,
#contato .hours-box,
#contato .contact-form {
  margin-top: 12px;
}

#contato .contact-form-wrap h3,
#contato .hours-box h3 {
  font-size: 1.02rem;
}

#contato .contact-form-wrap h3,
#contato .contact-location-wrap h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  #contato .contact-map-embed {
    height: 220px;
    min-height: 220px !important;
  }
}

.contact-form {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 95, 159, 0.18);
  border-color: var(--brand-2);
}

.form-note,
.form-feedback {
  color: var(--muted);
  font-size: 0.87rem;
}

.form-feedback {
  min-height: 1.2em;
}

.sticky-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(219, 229, 240, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-weight: 800;
}

.sticky-btn.wa {
  background: #0f8f40;
  color: #fff;
}

.sticky-btn.call {
  background: #c2410c;
  color: #fff;
}

.floating-wa {
  position: fixed;
  right: 14px;
  bottom: 72px;
  z-index: 61;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1bbf5c, #109f4b);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.site-footer {
  margin-top: 0;
  padding: 42px 0 92px;
  background: linear-gradient(180deg, #0c2038, #091729);
  color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 10px;
  color: #fff;
}

.footer-grid h2 {
  font-size: 1rem;
  white-space: nowrap;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.store-only-note {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(234, 88, 12, 0.18);
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 6px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 450ms ease, transform 450ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .menu-toggle span:not(.sr-only) {
    transition: none;
  }
}

@media (min-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .trust-photos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.9fr;
  }
}

@media (min-width: 960px) {
  .section-pad {
    padding: 78px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 4px;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .hero-copy,
  .hero-panel {
    padding: 24px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 2.45vw, 2.45rem);
    line-height: 1.1;
  }

  .service-group {
    padding: 18px;
  }

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

  .service-group:last-child .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  #contato .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }

  .map-embed {
    min-height: 100%;
  }

  #contato.section-pad {
    padding: 56px 0;
  }

  .sticky-contact {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 230px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    grid-template-columns: 1fr;
  }

  .sticky-btn {
    min-height: 46px;
  }

  .floating-wa {
    display: none;
  }

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