:root {
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --soft: #EEF3F8;
  --soft-blue: #E8F2FB;
  --navy: #123A5D;
  --blue: #1E6BA8;
  --blue-2: #2A82C4;
  --orange: #FF8A00;
  --yellow: #F6C343;
  --text: #1F2937;
  --muted: #64748B;
  --border: #D8E1EA;
  --whatsapp: #25D366;
  --success: #16A34A;
  --shadow: 0 18px 45px rgba(18, 58, 93, 0.12);
  --shadow-soft: 0 12px 28px rgba(30, 107, 168, 0.10);
  --radius: 8px;
  --container: 1180px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  background: var(--bg);
  color-scheme: only light;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.72);
  outline-offset: 3px;
}

section {
  scroll-margin-top: 96px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--surface);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-bar {
  background: var(--navy);
  color: var(--surface);
  font-size: 14px;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar a {
  font-weight: 800;
  color: var(--yellow);
  white-space: nowrap;
}

.top-bar span {
  min-width: 0;
}

.top-bar__mobile {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 225, 234, 0.72);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(18, 58, 93, 0.10);
  background: rgba(255, 255, 255, 0.97);
}

.header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

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

.brand--image {
  min-width: 188px;
}

.brand__logo,
.brand__logo img {
  display: block;
}

.brand__logo img {
  width: clamp(184px, 19vw, 238px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 7px solid var(--navy);
  background:
    radial-gradient(circle at center, var(--surface) 0 26%, transparent 27%),
    conic-gradient(from 22deg, var(--orange), var(--yellow), var(--blue-2), var(--orange));
  box-shadow: inset 0 0 0 3px var(--surface);
  flex: 0 0 auto;
}

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

.brand strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover {
  color: var(--blue);
}

.cta-row,
.desktop-float div,
.emergency__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 10px 20px rgba(18, 58, 93, 0.09);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(18, 58, 93, 0.13);
}

.btn--small {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn--large {
  min-height: 56px;
  padding-inline: 20px;
}

.btn--primary {
  background: var(--orange);
  color: var(--surface);
  border-color: #E97700;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #0B3D20;
  border-color: #1BBC59;
}

.btn--light {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border);
}

.hero {
  background:
    linear-gradient(135deg, rgba(232, 242, 251, 0.95), rgba(247, 249, 252, 0.80) 50%, rgba(255, 255, 255, 0.95)),
    var(--soft-blue);
  padding: clamp(34px, 7vw, 78px) 0 clamp(32px, 6vw, 70px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(34px, 9vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 690px;
  color: var(--text);
  font-size: clamp(18px, 3.5vw, 22px);
  line-height: 1.45;
  margin-bottom: 14px;
}

.benefit-line,
.address-line {
  color: var(--muted);
  font-weight: 800;
}

.benefit-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.benefit-line span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 32px;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(30, 107, 168, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.address-line {
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 4px solid var(--yellow);
  overflow-wrap: anywhere;
}

.hero__ctas {
  align-items: stretch;
}

.hero__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero__media picture,
.hero__media img {
  width: 100%;
  aspect-ratio: 1120 / 780;
  object-fit: cover;
}

.hero-badges {
  position: absolute;
  inset: auto 12px 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-badges span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 18px rgba(18, 58, 93, 0.12);
}

.section {
  padding: clamp(48px, 7vw, 86px) 0;
}

.section--tight {
  padding: clamp(36px, 5vw, 58px) 0;
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading p,
.split__content p,
.detail-card p,
.final-cta p,
.safety p {
  color: var(--muted);
}

.emergency__grid {
  display: grid;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 4vw, 28px);
  box-shadow: var(--shadow-soft);
}

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

.step-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.step-list span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
}

.emergency__image {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.emergency__image img {
  width: 100%;
  aspect-ratio: 720 / 480;
  object-fit: cover;
}

.service-grid,
.detail-grid,
.tire-options,
.vehicle-grid,
.area-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.detail-card,
.tire-options article,
.address-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.service-card--image {
  padding: 0;
  overflow: hidden;
}

.service-card--image div {
  padding: 16px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 720 / 430;
  object-fit: cover;
}

.service-card p,
.tire-options p,
.faq-list p,
.footer-grid p {
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--blue);
  font-weight: 900;
}

.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split__media {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 900 / 620;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.detail-card {
  overflow: hidden;
}

.detail-card img,
.tire-options img {
  width: 100%;
  aspect-ratio: 720 / 520;
  object-fit: cover;
}

.detail-card > div,
.tire-options article {
  padding: 18px;
}

.tire-options article {
  overflow: hidden;
  padding: 0;
}

.tire-options article h3,
.tire-options article p {
  padding-inline: 18px;
}

.tire-options article h3 {
  margin-top: 18px;
}

.tire-options article p {
  padding-bottom: 18px;
}

.cta-row--center {
  justify-content: center;
  margin-top: 24px;
}

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

.vehicle-grid span,
.area-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.map-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.address-card {
  padding: 18px;
  color: var(--muted);
}

.address-card strong {
  color: var(--navy);
}

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

.map-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px dashed var(--blue-2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 242, 251, 0.92), rgba(255, 255, 255, 0.95)),
    var(--surface);
  color: var(--navy);
  text-align: center;
}

.map-placeholder span {
  color: var(--blue);
  font-weight: 900;
}

.map-placeholder a {
  color: var(--blue);
  font-weight: 900;
}

.map-card picture {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.map-card img {
  width: 100%;
  aspect-ratio: 900 / 620;
  object-fit: cover;
}

.safety__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(18px, 4vw, 30px);
  box-shadow: var(--shadow-soft);
}

.safety__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(18, 58, 93, 0.96), rgba(30, 107, 168, 0.92)),
    var(--navy);
  color: var(--surface);
}

.final-cta__inner {
  max-width: 860px;
  text-align: center;
}

.final-cta h2,
.final-cta p,
.final-cta .section-kicker {
  color: var(--surface);
}

.final-cta .section-kicker {
  opacity: 0.88;
}

.final-cta p {
  opacity: 0.92;
}

.site-footer {
  background: var(--navy);
  color: var(--surface);
  padding: 42px 0 112px;
}

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

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--surface);
  font-size: 18px;
}

.footer-grid a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-credit {
  width: min(100% - 32px, var(--container));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-credit a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.desktop-float {
  display: none;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(18, 58, 93, 0.20);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  min-height: 54px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 104px;
  }

  .top-bar__inner {
    min-height: 32px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    padding-block: 5px;
  }

  .top-bar span {
    white-space: normal;
  }

  .top-bar__desktop {
    display: none;
  }

  .top-bar__mobile {
    display: inline;
  }

  .top-bar a {
    display: none;
  }

  .header__inner {
    min-height: 64px;
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .brand--image {
    min-width: 0;
  }

  .brand__logo img {
    width: min(220px, 76vw);
    max-height: 52px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .hero__lead {
    margin-bottom: 12px;
  }

  .benefit-line {
    gap: 7px;
  }

  .benefit-line span {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 13px;
  }

  .hero__ctas .btn {
    flex: 1 1 100%;
  }

  .hero__ctas .btn--light {
    min-height: 46px;
    padding-block: 10px;
  }

  .hero__media picture,
  .hero__media img {
    aspect-ratio: 720 / 560;
    max-height: 220px;
  }

  .hero-badges {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges span {
    min-height: 34px;
    font-size: 11px;
    padding-inline: 8px;
  }

  .section-heading {
    text-align: left;
  }

  .section {
    padding: 42px 0;
  }

  .section--tight {
    padding: 30px 0;
  }

  .emergency__grid {
    border-radius: 14px;
    padding: 18px;
    gap: 16px;
  }

  .emergency__actions .btn {
    flex: 1 1 0;
  }

  .emergency__image {
    display: none;
  }

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

  .mobile-sticky-cta {
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 8px;
    border-radius: 16px;
  }
}

@media (min-width: 640px) {
  .service-grid,
  .detail-grid,
  .tire-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-grid,
  .area-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .hero__grid,
  .split__grid,
  .map-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

  .split__grid--reverse .split__media {
    order: 2;
  }

  .emergency__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(230px, 0.8fr);
  }

  .emergency__image {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none;
  }

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

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card--image {
    grid-column: span 1;
  }

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

  .desktop-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: block;
    width: 286px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .desktop-float strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .desktop-float p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(100% - 48px, var(--container));
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-badges span {
    font-size: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
