:root {
  --ink: #12181d;
  --muted: #5d6871;
  --red: #b40018;
  --red2: #dd1830;
  --wine: #771124;
  --cloud: #f4f6f7;
  --line: #dfe4e7;
  --white: #fff;
  --shadow: 0 18px 60px rgba(18, 24, 29, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.75rem 1rem;
}
.shell {
  width: min(1180px, calc(100% - 2rem));
  margin: auto;
}
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}
.topbar .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}
.topbar a {
  text-decoration: none;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img {
  display: block;
  width: 270px;
  max-height: 62px;
  object-fit: contain;
}
.menu {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.menu a {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.94rem;
}
.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--red);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.65rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border-radius: 0.5rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--red);
  cursor: pointer;
}
.button:hover {
  background: #920014;
  border-color: #920014;
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
}
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  color: #fff;
  background: #20272d;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 15, 18, 0.92) 0%,
      rgba(10, 15, 18, 0.72) 42%,
      rgba(10, 15, 18, 0.08) 75%
    ),
    url("/assets/hero-azotea.webp") center/cover;
}
.hero .shell {
  position: relative;
  padding: 5rem 0;
}
.eyebrow {
  display: inline-flex;
  padding: 0.38rem 0.65rem;
  background: rgba(180, 0, 24, 0.92);
  color: #fff;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  border-radius: 0.25rem;
}
h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  max-width: 850px;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.25rem;
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 760px;
  color: #eef1f2;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-weight: 750;
}
.trust span {
  padding: 0.5rem 0.7rem;
  border-left: 3px solid var(--red2);
  background: rgba(0, 0, 0, 0.28);
}
.section {
  padding: 5.5rem 0;
}
.section.alt {
  background: var(--cloud);
}
.section.dark {
  background: var(--ink);
  color: #fff;
}
.section-head {
  max-width: 780px;
  margin-bottom: 2.4rem;
}
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}
.dark .section-head p {
  color: #cbd2d7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(18, 24, 29, 0.06);
}
.card strong.tag {
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.card p {
  color: var(--muted);
}
.card ul {
  padding-left: 1.2rem;
}
.number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.split figure {
  margin: 0;
}
.split figure img {
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.proof div {
  background: #fff;
  padding: 1.5rem;
}
.proof strong {
  display: block;
  font-size: 1.1rem;
}
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #a6adb2;
}
.page-hero {
  padding: 4.8rem 0 3.5rem;
  background: linear-gradient(135deg, var(--ink), #313b43);
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}
.prose {
  max-width: 850px;
}
.prose h2 {
  margin-top: 2.7rem;
  font-size: 2rem;
}
.prose li {
  margin: 0.5rem 0;
}
.notice {
  padding: 1.25rem;
  border-left: 4px solid var(--red);
  background: #fff2f4;
  border-radius: 0.35rem;
}
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price {
  border-top: 5px solid var(--red);
}
.price .amount {
  font-size: 2rem;
  font-weight: 900;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}
.form .full {
  grid-column: 1/-1;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #aeb7be;
  border-radius: 0.45rem;
  padding: 0.7rem;
  font: inherit;
}
.form textarea {
  min-height: 125px;
}
.result {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0.55rem;
}
.result .quote-action {
  margin-top: 0.75rem;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.result .quote-action:hover {
  background: #f2f4f5;
  border-color: #f2f4f5;
}
.link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
  border: 0;
  background: none;
  padding: 1.1rem 0;
  font: inherit;
  font-weight: 800;
}
.faq [role="region"] {
  padding: 0 0 1rem;
  color: var(--muted);
}
.cta {
  background: linear-gradient(120deg, var(--red), var(--wine));
  color: #fff;
  padding: 3rem;
  border-radius: 0.8rem;
}
.footer {
  background: #0b0f12;
  color: #dce1e4;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.footer a {
  color: #fff;
}
.legal {
  font-size: 0.86rem;
  color: #aeb7be;
  border-top: 1px solid #30363b;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.private-bar {
  background: #171d22;
  border-top: 1px solid #343b40;
  color: #dce1e4;
  padding: 1rem 0;
}
.private-bar .shell {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.private-bar a {
  font-size: 0.82rem;
}
.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  border-radius: 999px;
  background: #168b52;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
}
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  margin: auto;
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem;
  border-radius: 0.7rem;
}
.cookie .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cookie p {
  margin: 0;
  flex: 1;
}
.cookie button {
  white-space: nowrap;
}
.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;
}
@media (max-width: 900px) {
  .grid,
  .prices {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
  }
  .menu-button {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .menu[data-open] {
    display: flex;
  }
  .menu a {
    padding: 0.5rem;
  }
  .hero {
    min-height: 590px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 15, 18, 0.93), rgba(10, 15, 18, 0.55)),
      url("/assets/hero-azotea.webp") 62% center/cover;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .topbar .shell {
    justify-content: center;
  }
  .topbar span {
    display: none;
  }
  .brand img {
    width: 210px;
  }
  .grid,
  .prices,
  .proof,
  .footer-grid,
  .form {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .form .full {
    grid-column: auto;
  }
  .cookie .inner {
    align-items: stretch;
    flex-direction: column;
  }
  .private-bar .shell {
    justify-content: center;
    flex-wrap: wrap;
  }
  .whatsapp {
    bottom: 5rem;
  }
}


/* Contextual service imagery and brand-governed private access */
.service-card { padding: 0; overflow: hidden; }
.service-card > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card .card-body { padding: 1.35rem 1.5rem 1.5rem; }
.split figure.vehicle-cutout img { mix-blend-mode: multiply; box-shadow: none; }
.private-bar a { display: inline-flex; align-items: center; min-height: 2.5rem; padding: 0.55rem 0.9rem; border: 1px solid #596269; border-radius: 0.45rem; font-size: 0.88rem; font-weight: 750; text-decoration: none; }
