/* ============================================================
   Lavacarexpo — dark garage aesthetic
   Brand: #E31414 red · #006DD1 blue · #FFFFFF white
   Type: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

:root {
  --red: #E31414;
  --red-deep: #b30f0f;
  --blue: #006DD1;
  --blue-bright: #2b8ff0;
  --white: #FFFFFF;
  --bg: #0b0e13;
  --bg-raise: #12161f;
  --bg-panel: #161b26;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef1f6;
  --text-dim: #a7afbe;
  --whatsapp: #25d366;
  --radius: 10px;
  --container: 1180px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;
  --shadow-lift: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

section[id],
#marcacao { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0, 109, 209, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(227, 20, 20, 0.08), transparent 55%),
    var(--bg);
}

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

/* Mobile menu open: lock scroll and dim the page behind the menu */
body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(4, 6, 9, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

a { color: var(--blue-bright); }
a:hover { color: var(--white); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Typography ---------- */

h1, h2, h3, .form-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

.section-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.section-kicker::before {
  content: "";
  width: 2.2rem;
  height: 3px;
  background: var(--red);
  transform: skewX(-20deg);
}

.section-head { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head p { color: var(--text-dim); max-width: 56ch; margin-top: 0.6rem; }

section { padding-block: clamp(3rem, 8vw, 5.5rem); }

/* ---------- Stripe motif ---------- */

.stripe-divider {
  display: flex;
  height: 6px;
  transform: skewX(-20deg) translateX(-1%);
  width: 102%;
  overflow: hidden;
}
.stripe-divider span:first-child { flex: 2; background: var(--red); }
.stripe-divider span:last-child { flex: 1; background: var(--blue); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.7rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(160deg, var(--red), var(--red-deep));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(227, 20, 20, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(227, 20, 20, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--blue);
}
.btn-outline:hover { background: rgba(0, 109, 209, 0.18); color: var(--white); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 14, 19, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand img { width: 150px; height: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.5vw, 1.2rem);
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.02rem;
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.4rem 0.5rem;
  border-bottom: 2px solid transparent;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a[aria-current="page"] { color: var(--white); border-bottom-color: var(--red); }

.nav-item-dropdown { position: relative; }

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.02rem;
  color: var(--text-dim);
  background: none;
  border: 0;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}
.nav-drop-toggle svg { transition: transform 0.15s ease; }
.nav-item-dropdown:hover .nav-drop-toggle,
.nav-drop-toggle[aria-expanded="true"] { color: var(--white); }
.nav-item-dropdown:hover .nav-drop-toggle svg,
.nav-drop-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem;
  box-shadow: var(--shadow-lift);
}
.nav-item-dropdown:hover .dropdown,
.nav-item-dropdown:focus-within .dropdown,
.nav-item-dropdown.open .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-bottom: 0;
  border-radius: 6px;
}
.dropdown a:hover { background: rgba(0, 109, 209, 0.15); }
.dropdown a[aria-current="page"] { background: rgba(227, 20, 20, 0.15); }

.nav-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}
.nav-whatsapp a:hover { background: rgba(37, 211, 102, 0.12); color: var(--whatsapp); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav { position: static; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-raise);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 0.7rem 0.5rem; font-size: 1.15rem; }
  .nav-drop-toggle { pointer-events: none; padding: 0.7rem 0.5rem 0.2rem; font-size: 0.9rem; letter-spacing: 0.16em; color: var(--blue-bright); }
  .nav-drop-toggle svg { display: none; }
  .dropdown {
    display: block;
    position: static;
    min-width: 0;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 0.8rem;
  }
  .dropdown a { font-size: 1.05rem; padding: 0.55rem 0.5rem; }
  .nav-whatsapp { margin-top: 0.8rem; }
  .nav-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.82) 45%, rgba(7, 9, 13, 0.55) 100%),
    linear-gradient(to top, var(--bg), transparent 35%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--blue-bright);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 3px;
  background: var(--red);
  transform: skewX(-20deg);
}

.hero h1 .accent { color: var(--red); }

.hero-sub {
  margin-top: 1.1rem;
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 46ch;
}

.hero-meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  color: var(--text-dim);
  font-size: 0.98rem;
  list-style: none;
}
.hero-meta li { display: flex; align-items: center; gap: 0.45rem; }
.hero-meta li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: skewX(-20deg);
}

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

/* ---------- Form card ---------- */

.form-card {
  background: rgba(18, 22, 31, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-lift);
}

.form-title { font-size: 1.7rem; margin-bottom: 1.1rem; }

.booking-form .field { margin-bottom: 0.9rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 420px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 400; }

.field input,
.field select {
  width: 100%;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.15s ease;
  color-scheme: dark;
}
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 18px 18px;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 109, 209, 0.25);
}

/* On touch devices the native date/time controls render inconsistently
   (often with no visible affordance). Give them the same chevron as the
   select. Desktop (mouse/fine pointer) keeps its native calendar/clock icons. */
@media (hover: none) and (pointer: coarse) {
  .field input[type="date"],
  .field input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 18px 18px;
  }
  /* Keep the native picker tappable but let the chevron show through. */
  .field input[type="date"]::-webkit-calendar-picker-indicator,
  .field input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
  }
}

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-status { margin-top: 0.8rem; font-size: 0.98rem; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--whatsapp); }
.form-status.error { color: #ff7b7b; }

.booking-form.sent .field,
.booking-form.sent button { display: none; }
.booking-form.sent .form-status { font-size: 1.05rem; }

/* ---------- Service cards ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.cards-grid .service-card { grid-column: span 2; }
.cards-grid .service-card:nth-last-child(-n+2) { grid-column: span 3; }

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .service-card,
  .cards-grid .service-card:nth-last-child(-n+2) { grid-column: auto; }
  .cards-grid .service-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid .service-card:last-child { grid-column: auto; }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.3rem;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.2rem;
  height: 4px;
  background: var(--blue);
  transform: skewX(-20deg) translateX(-4px);
  transition: width 0.2s ease, background 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 109, 209, 0.5);
  box-shadow: var(--shadow-lift);
  color: var(--text);
}
.service-card:hover::before { width: 100%; background: var(--red); }

.service-card h3 { color: var(--white); }
.service-card p { color: var(--text-dim); font-size: 0.97rem; flex-grow: 1; }

.service-card .card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card .card-price::after { content: "→"; color: var(--red); font-size: 1.3rem; }

/* ---------- Showcase / antes-depois ---------- */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.showcase-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.showcase-item figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(7, 9, 13, 0.85), transparent);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 700px) { .pair-grid { grid-template-columns: 1fr; } }

.pair-grid .showcase-item img { aspect-ratio: 4 / 3; }

.tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
  transform: skewX(-8deg);
}
.tag-antes { background: rgba(7, 9, 13, 0.8); color: var(--text-dim); border: 1px solid var(--line); }
.tag-depois { background: var(--red); color: var(--white); }
.tag-blue { background: var(--blue); color: var(--white); }

/* ---------- Before/after slider (faróis) ---------- */

.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-slider img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "◂ ▸";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}
.ba-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

/* ---------- Price tables ---------- */

.table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 480px;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  background: linear-gradient(120deg, rgba(227, 20, 20, 0.16), rgba(0, 109, 209, 0.16));
  color: var(--white);
}

.price-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.price-table td {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--blue-bright);
  white-space: nowrap;
}
.price-table td .na { color: var(--text-dim); font-weight: 400; }
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: rgba(0, 109, 209, 0.07); }

@media (max-width: 560px) {
  .price-table { min-width: 520px; }
  .price-table th,
  .price-table td {
    padding: 0.7rem 0.7rem;
  }
  .price-table thead th {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .price-table tbody th { letter-spacing: 0.04em; }
}

.vat-note { margin-top: 0.7rem; font-size: 0.9rem; color: var(--text-dim); }

/* ---------- Inclusions ---------- */

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 2rem;
}

.inclusion-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.inclusion-card:last-child { border-left-color: var(--red); }
.inclusion-card h3 { margin-bottom: 0.8rem; }
.inclusion-card dt {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--blue-bright);
  margin-top: 0.7rem;
}
.inclusion-card dd { color: var(--text-dim); font-size: 0.97rem; }

/* ---------- Localização ---------- */

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (max-width: 860px) { .local-grid { grid-template-columns: 1fr; } }

.local-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.local-info address { font-style: normal; margin-bottom: 1.2rem; }
.local-info address a { font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; margin-block: 1rem; }
.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.hours-table td:last-child { text-align: right; color: var(--text); font-variant-numeric: tabular-nums; }
.hours-table tr.closed td:last-child { color: var(--red); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  align-self: stretch;
}
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.2); }

/* ---------- CTA section ---------- */

.cta-section {
  background:
    linear-gradient(120deg, rgba(227, 20, 20, 0.10), transparent 45%),
    linear-gradient(300deg, rgba(0, 109, 209, 0.12), transparent 45%),
    var(--bg-raise);
  border-top: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }

.cta-copy p { color: var(--text-dim); margin-top: 0.8rem; max-width: 50ch; }

.cta-points { list-style: none; margin-top: 1.4rem; }
.cta-points li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-block: 0.35rem;
  color: var(--text-dim);
}
.cta-points li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: skewX(-20deg);
}

/* ---------- Page hero (service pages) ---------- */

.page-hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(0, 109, 209, 0.18), transparent 60%),
    radial-gradient(500px 260px at 5% 100%, rgba(227, 20, 20, 0.12), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .lead { margin-top: 1rem; font-size: 1.15rem; color: var(--text-dim); max-width: 62ch; }

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }

.note-box {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(0, 109, 209, 0.1);
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* ---------- FAB ---------- */

.fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fab:hover { color: #fff; transform: scale(1.08); }
.fab[data-hidden="true"] {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #07090d;
  margin-top: 0;
  /* the skewed stripe-divider intentionally bleeds past both edges */
  overflow-x: hidden;
}
.site-footer .stripe-divider { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 150px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.97rem; max-width: 34ch; }

.footer-title {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--blue-bright);
  margin-bottom: 0.9rem;
}

.site-footer address { font-style: normal; color: var(--text-dim); }
.site-footer address p { margin-bottom: 0.8rem; }
.site-footer a { color: var(--text); text-decoration-color: rgba(255, 255, 255, 0.25); }
.site-footer a:hover { color: var(--blue-bright); }

.footer-links { list-style: none; }
.footer-links li { padding-block: 0.25rem; }
.footer-links a { text-decoration: none; color: var(--text-dim); }
.footer-links a:hover { color: var(--white); }

.footer-hours { list-style: none; font-size: 0.95rem; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.18rem;
  color: var(--text-dim);
}
.footer-hours li span:last-child { font-variant-numeric: tabular-nums; color: var(--text); }
.footer-hours li:first-child span:last-child { color: var(--red); }

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social .social-whatsapp:hover { color: var(--whatsapp); border-color: var(--whatsapp); }
.footer-social .social-instagram:hover { color: #e1306c; border-color: #e1306c; }
.footer-social .social-facebook:hover { color: #1877f2; border-color: #1877f2; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}

.footer-signature a { color: var(--text-dim); }
.footer-signature a:hover { color: var(--blue-bright); }

/* ---------- Reveal animation ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.in { opacity: 1; transform: none; }
}
