:root {
  --orange: #ff5a00;
  --orange-soft: #ff7a1a;
  --black: #070707;
  --ink: #171717;
  --muted: #666666;
  --line: #e8e4de;
  --paper: #f7f4ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--orange);
  font-weight: 900;
  border-radius: 6px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav a:last-child {
  color: var(--orange);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.86) 38%, rgba(7, 7, 7, 0.28) 76%, rgba(7, 7, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.65), rgba(7, 7, 7, 0.08)),
    url("assets/hero-assistencia-tv.png") right center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #bd3f00;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 78px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
}

.hero-actions,
.band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: var(--black);
  background: var(--orange);
}

.btn.primary:hover {
  background: var(--orange-soft);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.support-box {
  display: inline-grid;
  gap: 2px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.09);
}

.support-box span,
.support-box small {
  color: rgba(255, 255, 255, 0.72);
}

.support-box strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1.05;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--orange);
  color: var(--black);
}

.trust-strip div {
  min-height: 96px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(7, 7, 7, 0.2);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 32px;
  line-height: 1.05;
}

.trust-strip span {
  font-weight: 700;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 88px);
}

.section-copy {
  max-width: 540px;
}

.section-copy p:not(.eyebrow),
.contact-section p,
.band p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 6px;
  color: var(--black);
  background: var(--orange);
  font-weight: 900;
}

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

.band {
  justify-content: space-between;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(120deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.88));
}

.band div,
.band p {
  max-width: 560px;
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.band h2 {
  margin-bottom: 0;
}

.local-seo {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 88px);
  background: var(--paper);
}

.local-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.local-intro p:not(.eyebrow),
.location-grid p {
  color: var(--muted);
  font-size: 18px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.location-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.location-grid h3 {
  color: var(--black);
}

.location-grid article {
  border-top: 5px solid var(--orange);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 6vw, 88px);
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--black);
  border-top: 6px solid var(--orange);
}

.contact-card span,
.contact-card small {
  color: rgba(255, 255, 255, 0.68);
}

.contact-card a {
  color: var(--orange);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.66);
  background: var(--black);
}

.footer a {
  color: var(--orange);
}

.not-found-page {
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.88) 46%, rgba(7, 7, 7, 0.58) 100%),
    url("assets/hero-assistencia-tv.png") right center / cover no-repeat;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 44px;
  width: min(860px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 56px 0;
}

.not-found-brand {
  width: max-content;
  color: var(--white);
}

.not-found-panel {
  max-width: 680px;
}

.not-found-panel h1 {
  margin-bottom: 18px;
}

.not-found-panel p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card .icon {
    margin-bottom: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.88) 52%, rgba(7, 7, 7, 0.68) 100%),
      url("assets/hero-assistencia-tv.png") center bottom / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 64px 0 48px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .trust-strip strong {
    font-size: 28px;
  }

  .contact-card a {
    font-size: 32px;
  }

  .hero-actions .btn,
  .band .btn {
    width: 100%;
  }

  .support-box {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.2);
  }

  .band {
    align-items: stretch;
  }

  .not-found {
    width: calc(100% - 36px);
    margin: 0 auto;
  }
}
