@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --color-primary: #f45b0a;
  --color-primary-dark: #c93d04;
  --color-primary-soft: #fff0e6;
  --color-accent: #ff8a00;
  --color-brown: #35190d;
  --color-brown-light: #6c3b23;
  --color-text: #2b211d;
  --color-muted: #6e6661;
  --color-surface: #ffffff;
  --color-surface-soft: #fffaf6;
  --color-border: #f0e3d9;
  --color-success: #10a845;
  --gradient-primary: linear-gradient(135deg, #ef4d00 0%, #ff7a00 100%);
  --gradient-dark: linear-gradient(135deg, #321508 0%, #6d2c0e 100%);
  --gradient-cta: linear-gradient(110deg, #9e2d00 0%, #ef4e00 56%, #ff7200 100%);
  --shadow-sm: 0 8px 22px rgba(82, 36, 12, 0.08);
  --shadow-md: 0 18px 50px rgba(82, 36, 12, 0.13);
  --shadow-glow: 0 15px 35px rgba(244, 91, 10, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 108px;
  --space-section: clamp(64px, 7vw, 96px);
  --transition-base: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(.site-header) {
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

section[id],
footer[id] {
  scroll-margin-top: var(--header-height);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--color-brown);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  color: var(--color-muted);
}

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

.section {
  padding-block: var(--space-section);
}

.section-soft {
  background:
    radial-gradient(circle at 14% 25%, rgba(255, 134, 45, 0.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.accent {
  color: var(--color-primary);
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.fill {
  fill: currentColor;
  stroke: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

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

.btn-primary {
  color: white;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: white;
}

.btn-whatsapp {
  color: #078c39;
  background: white;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(79, 35, 15, 0.06);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 24px rgba(74, 32, 11, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(74, 32, 11, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  backdrop-filter: blur(20px) saturate(155%);
}

.nav-wrap {
  display: grid;
  height: 100%;
  grid-template-columns: 285px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: 275px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-link,
.nav-toggle {
  position: relative;
  padding: 14px 0;
  border: 0;
  color: #2e211b;
  background: none;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link::after,
.nav-toggle::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active,
.nav-toggle:hover,
.nav-toggle.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-toggle:hover::after,
.nav-toggle.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown {
  position: relative;
}

.nav-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle::before {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  order: 2;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: -22px;
  display: grid;
  width: 275px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  opacity: 0;
  background: white;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--color-text);
  font-size: 0.83rem;
  font-weight: 600;
}

.dropdown-menu a:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.header-call {
  padding-inline: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.menu-button {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 91, 10, 0.12);
  border-radius: 50%;
  color: var(--color-brown);
  background: var(--color-primary-soft);
  box-shadow: 0 8px 18px rgba(82, 36, 12, 0.08);
  cursor: pointer;
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.menu-button:hover {
  color: var(--color-primary);
  background: #ffe7d7;
  box-shadow: 0 10px 24px rgba(244, 91, 10, 0.17);
}

.hamburger {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transform-origin: center;
  transition:
    top 240ms ease,
    opacity 160ms ease,
    transform 240ms ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 7px;
}

.hamburger span:nth-child(3) {
  top: 14px;
}

.menu-button[aria-expanded="true"] {
  color: white;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.menu-button[aria-expanded="true"] .hamburger span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button[aria-expanded="true"] .hamburger span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  background: #f8f1eb;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.home-hero::before {
  z-index: -2;
  inset: -4%;
  background: url("assets/hero-inicio.webp") center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.02);
  transform-origin: center;
}

.home-hero::after {
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 251, 247, 0.98) 0%, rgba(255, 251, 247, 0.9) 34%, rgba(255, 251, 247, 0.58) 44%, rgba(255, 251, 247, 0.08) 59%, rgba(255, 251, 247, 0) 72%);
}

.home-hero .container {
  width: min(calc(100% - 40px), 1500px);
}

.home-hero .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(150px, 14vw, 270px);
}

.home-hero .hero-copy {
  max-width: 720px;
}

.home-hero .hero-copy h1 {
  font-size: clamp(2.65rem, 4.2vw, 4.15rem);
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .home-hero::before {
    animation: homeHeroZoom 16s ease-in-out infinite alternate;
    will-change: transform;
  }
}

@keyframes homeHeroZoom {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1.055);
  }
}

.hero-grid {
  display: grid;
  min-height: inherit;
  grid-template-columns: 1.25fr 0.78fr;
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  padding-block: 44px;
}

.hero-copy {
  max-width: 625px;
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 32px;
  color: #473a34;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.trust-row {
  display: flex;
  max-width: 520px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-top: 38px;
}

.trust-item {
  flex: 1;
  color: var(--color-brown);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.icon-circle {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  place-items: center;
  border: 1.5px solid #ffb27f;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.82);
}

.icon-circle .icon {
  width: 31px;
  height: 31px;
}

.form-card {
  width: min(100%, 390px);
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.form-card h2 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.form-card > p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field {
  position: relative;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px 13px 44px;
  border: 1px solid #e8ddd5;
  border-radius: 9px;
  outline: none;
  color: var(--color-text);
  background: white;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(244, 91, 10, 0.12);
}

.field > .icon {
  position: absolute;
  top: 17px;
  left: 15px;
  z-index: 1;
  width: 19px;
  height: 19px;
  color: #8d8681;
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
  border-radius: 9px;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: #706964;
  font-size: 0.74rem;
}

.form-security .icon {
  width: 14px;
  height: 14px;
}

/* Home services */
.services-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.services-section::before,
.services-section::after {
  position: absolute;
  width: 480px;
  height: 280px;
  border: 1px solid rgba(244, 91, 10, 0.08);
  border-radius: 50%;
  content: "";
}

.services-section::before {
  top: 100px;
  left: -260px;
}

.services-section::after {
  right: -250px;
  bottom: 50px;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 0 28px 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card:hover {
  border-color: #ffc6a2;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card .service-icon {
  display: grid;
  width: 90px;
  height: 90px;
  margin: -1px auto 18px;
  place-items: center;
  border-radius: 0 0 50% 50%;
  color: white;
  background: var(--gradient-primary);
}

.service-card .service-icon .icon {
  width: 46px;
  height: 46px;
}

.service-card h3 {
  text-align: center;
}

.service-card > p {
  min-height: 52px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  text-align: center;
}

.check-list,
.plain-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 7px 0;
  padding-left: 24px;
  color: #554a44;
  font-size: 0.86rem;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 13px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  content: "";
  transform: rotate(42deg);
}

.service-card .btn {
  min-height: 42px;
  margin: auto auto 0;
  padding: 10px 22px;
  font-size: 0.76rem;
}

/* Brands */
.brands-bar {
  overflow: hidden;
  padding-block: 30px 36px;
  color: white;
  background: var(--gradient-dark);
}

.brands-bar h2 {
  margin-bottom: 24px;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.brand-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brands-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 18px;
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: brand-scroll 38s linear infinite;
  will-change: transform;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.brand-logo-card {
  display: grid;
  width: 190px;
  height: 82px;
  flex: 0 0 190px;
  padding: 9px 14px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(21, 7, 1, 0.18);
}

.brand-logo-card--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  min-width: 150px;
  min-height: 64px;
  padding: 10px 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.055);
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
}

.brand-name.small {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brands-list .brand-name {
  min-width: 0;
}

@keyframes brand-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Why us */
.why-section {
  padding: 0;
}

.why-grid {
  display: grid;
  min-height: 360px;
  grid-template-columns: 0.78fr 1.22fr;
}

.why-photo {
  background: url("assets/hero-inicio.webp") 82% center / cover no-repeat;
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px max(30px, calc((100vw - var(--container)) / 2));
  padding-left: 7vw;
  background: white;
}

.why-content h2 {
  margin-bottom: 6px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.mini-feature {
  text-align: center;
}

.mini-feature .icon-circle {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  background: var(--color-primary-soft);
}

.mini-feature .icon {
  width: 28px;
  height: 28px;
}

.mini-feature h3 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.mini-feature p {
  margin: 0;
  font-size: 0.75rem;
}

/* Coverage strip */
.coverage-strip {
  position: relative;
  overflow: hidden;
  padding-block: 34px;
  color: white;
  background:
    radial-gradient(circle at 90% 40%, transparent 0 28px, rgba(255, 255, 255, 0.1) 29px 30px, transparent 31px),
    linear-gradient(115deg, #e94a00 0%, #ff7300 100%);
}

.coverage-strip::after {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 430px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 52% 39% 61%;
  content: "";
  transform: rotate(-10deg);
}

.coverage-strip-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr 140px;
  align-items: center;
  gap: 40px;
}

.coverage-strip h2,
.coverage-strip p {
  color: white;
}

.coverage-strip h2 {
  margin-bottom: 6px;
  font-size: 2rem;
}

.coverage-strip p {
  margin-bottom: 16px;
}

.coverage-strip .btn {
  min-height: 42px;
  padding: 10px 18px;
  color: #b63d04;
  background: white;
  font-size: 0.73rem;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 7px;
  color: #633018;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 7px 18px rgba(110, 42, 8, 0.12);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  font-size: 0.72rem;
  font-weight: 700;
}

.chip .icon {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.map-pin-big {
  position: relative;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.06);
}

.map-pin-big .icon {
  width: 58px;
  height: 58px;
  color: white;
  fill: rgba(255, 255, 255, 0.18);
}

/* Inner service hero */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #675f5a;
  font-size: 0.78rem;
}

.breadcrumbs span:not(:last-child)::after,
.breadcrumbs a::after {
  margin-left: 8px;
  color: #a69d97;
  content: "›";
}

.service-hero {
  --service-hero-image: url("assets/hero-tecnico.webp");

  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  background: #f8f1eb;
}

.service-hero.maintenance-hero {
  --service-hero-image: url("assets/hero-mantenimiento.webp");
}

.service-hero.pool-hero {
  --service-hero-image: url("assets/hero-climatizadores-piscina.webp");
}

.service-hero.central-heater-hero {
  --service-hero-image: url("assets/hero-calefactores-centrales.webp");
}

.service-hero::before,
.service-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.service-hero::before {
  z-index: -2;
  inset: -5%;
  background: var(--service-hero-image) center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.04);
  transform-origin: center;
}

.service-hero::after {
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 252, 248, 0.94) 38%, rgba(255, 252, 248, 0.12) 59%, rgba(255, 252, 248, 0.22) 100%);
}

.service-hero .container {
  width: min(calc(100% - 40px), 1500px);
}

.service-hero .hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(70px, 10vw, 190px);
  padding-block: 28px;
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .service-hero::before {
    animation: heroZoom 12s ease-in-out infinite alternate;
    will-change: transform;
  }
}

@keyframes heroZoom {
  from {
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
}

.service-hero .form-card {
  justify-self: end;
}

.service-hero .hero-copy {
  max-width: 570px;
}

.service-hero .hero-copy h1 {
  font-size: clamp(2.7rem, 4.7vw, 4.25rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.service-hero .trust-row {
  max-width: 490px;
}

.service-brands .brand-track {
  animation-duration: 26s;
}

.service-brands {
  padding-block: 44px 38px;
}

.brand-expertise {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-bottom: 30px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 116, 26, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 55px rgba(19, 5, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand-expertise-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ff8b45;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-expertise-kicker::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.brands-bar .brand-expertise h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: white;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-align: left;
  text-transform: none;
}

.brand-expertise h2 span {
  color: #ff7a27;
}

.brand-expertise-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.brand-service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-service-list li {
  position: relative;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.brand-service-list li::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #ff7a27;
  border-bottom: 2px solid #ff7a27;
  content: "";
  transform: rotate(42deg);
}

.brand-service-list strong,
.brand-service-list span {
  display: block;
}

.brand-service-list strong {
  margin-bottom: 3px;
  color: white;
  font-size: 0.9rem;
}

.brand-service-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.45;
}

.brands-bar .brand-carousel-title {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

/* Icon benefits and problems */
.benefits-band {
  padding-block: 42px;
  border-bottom: 1px solid var(--color-border);
  background: #fffdfb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.benefit-card {
  position: relative;
  padding: 10px 22px;
  text-align: center;
}

.benefit-card:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: -13px;
  width: 1px;
  height: 110px;
  background: var(--color-border);
  content: "";
}

.benefit-card .icon-circle {
  width: 64px;
  height: 64px;
}

.benefit-card h3 {
  font-size: 0.95rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.78rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.problem {
  text-align: center;
}

.problem .icon-circle {
  width: 72px;
  height: 72px;
  background: var(--color-primary-soft);
}

.problem p {
  margin: 0;
  color: #554944;
  font-size: 0.82rem;
}

.center-action {
  margin-top: 36px;
  text-align: center;
}

/* Process */
.process {
  border-top: 1px solid var(--color-border);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process-grid::before {
  position: absolute;
  top: 18px;
  right: 9%;
  left: 9%;
  border-top: 1px dashed #e3c9b8;
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--gradient-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-step .icon-circle {
  width: 64px;
  height: 64px;
  background: var(--color-primary-soft);
}

.process-step h3 {
  font-size: 0.95rem;
}

.process-step p {
  margin: 0;
  font-size: 0.76rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 2fr 0.85fr;
  align-items: stretch;
  gap: 42px;
  margin-top: 54px;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
}

.included-list .check-list {
  margin: 0;
}

.recommend-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: var(--shadow-sm);
}

.recommend-card .icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  color: var(--color-accent);
}

.recommend-card p {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.compact-why {
  padding-block: 42px;
}

.compact-why .feature-row {
  margin-top: 28px;
}

/* Coverage page */
.coverage-hero {
  min-height: calc(100svh - var(--header-height));
  background: linear-gradient(90deg, #fffaf6 0 38%, #f8eee6 100%);
}

.coverage-hero-grid {
  display: grid;
  min-height: inherit;
  grid-template-columns: 0.9fr 1.35fr;
  align-items: center;
  gap: 28px;
}

.coverage-map {
  position: relative;
  isolation: isolate;
  align-self: stretch;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(125, 92, 67, 0.13);
  border-radius: 30px 0 0 30px;
  background: #f5efe4;
  box-shadow: -18px 22px 55px rgba(80, 48, 25, 0.11);
}

.coverage-map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, rgba(255, 250, 246, 0.12), transparent 45%);
  box-shadow: inset 0 0 45px rgba(80, 48, 25, 0.08);
  content: "";
  pointer-events: none;
}

.coverage-map-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-route-badge rect {
  fill: #fff;
  stroke: #e18a26;
  stroke-width: 2;
  filter: url("#map-shadow");
}

.map-route-badge text {
  fill: #a65014;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.map-route-badge--small text {
  font-size: 10px;
}

.river-name {
  fill: rgba(31, 103, 123, 0.58);
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.map-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(244, 91, 10, 0.11);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 16px rgba(71, 44, 22, 0.14);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #35241b;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.map-label .icon {
  width: 21px;
  height: 21px;
  color: var(--color-primary);
  fill: var(--color-primary);
  stroke: white;
}

.map-label.escobar { top: 4%; right: 27%; }
.map-label.garin { top: 12%; left: 44%; }
.map-label.villarosa { top: 16%; left: 5%; }
.map-label.benavidez { top: 20%; right: 31%; }
.map-label.nordelta { top: 28%; right: 25%; }
.map-label.tigre { top: 34%; right: 2%; }
.map-label.tortuguitas { top: 29%; left: 24%; }
.map-label.delviso { top: 39%; left: 19%; }
.map-label.rincon { top: 40%; right: 22%; }
.map-label.lalonja { top: 49%; left: 8%; }
.map-label.victoria { top: 49%; right: 3%; }
.map-label.pilar { top: 58%; left: 3%; }
.map-label.sanfernando { top: 57%; right: 2%; }
.map-label.sanisidro { top: 64%; right: 4%; }
.map-label.beccar { top: 69%; right: 21%; }
.map-label.martinez { top: 75%; right: 7%; }
.map-label.olivos { top: 82%; right: 11%; }
.map-label.vicentelopez { top: 89%; right: 3%; }

.caba-badge {
  position: absolute;
  z-index: 3;
  right: 32%;
  bottom: 3%;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  color: var(--color-brown);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  font-weight: 800;
}

.coverage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coverage-card {
  display: flex;
  min-height: 135px;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow-sm);
}

.coverage-card .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--color-primary);
}

.coverage-card h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.coverage-card p {
  margin: 0;
  font-size: 0.76rem;
}

.locality-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  padding: 20px 38px;
  border-radius: var(--radius-sm);
  background: #fff4eb;
}

.locality-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--gradient-primary);
}

.locality-icon .icon {
  width: 38px;
  height: 38px;
}

.locality-card h3 {
  margin-bottom: 2px;
}

.locality-card p {
  margin: 0;
  font-size: 0.84rem;
}

/* CTA and footer */
.cta {
  color: white;
  background: var(--gradient-cta);
}

.cta-grid {
  display: grid;
  min-height: 118px;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.cta-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid white;
  border-radius: 50%;
}

.cta-icon .icon {
  width: 34px;
  height: 34px;
}

.cta h2,
.cta p {
  color: white;
}

.cta h2 {
  margin-bottom: 4px;
  font-size: 1.45rem;
}

.cta p {
  max-width: 520px;
  margin: 0;
  font-size: 0.88rem;
}

.cta .btn-outline {
  color: white;
  border-color: white;
  background: transparent;
}

.site-footer {
  padding-block: 36px 16px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: 52px;
}

.footer-brand img {
  display: block;
  width: 245px;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.78rem;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--color-brown);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.contact-list li {
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-list .icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--color-brown);
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: #6d615b;
  font-size: 0.68rem;
}

.legal-links {
  display: flex;
  gap: 28px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  border-radius: 50%;
  color: white;
  background: #1bc85a;
  box-shadow: 0 10px 28px rgba(0, 126, 53, 0.28);
  transition: transform var(--transition-base);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp::before {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(27, 200, 90, 0.38);
  border-radius: inherit;
  animation: pulse 2s infinite;
  content: "";
}

.floating-whatsapp .icon {
  width: 32px;
  height: 32px;
}

.thanks-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
}

.page-thanks {
  height: 100svh;
  overflow: hidden;
}

.page-thanks .thanks-page {
  height: calc(100svh - var(--header-height));
  min-height: 0;
  padding-block: clamp(16px, 2.8vh, 30px);
  overflow: hidden;
}

.thanks-content {
  display: flex;
  max-height: 100%;
  max-width: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content > a:first-child {
  line-height: 0;
}

.thanks-logo {
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto clamp(12px, 2vh, 20px);
  object-fit: contain;
}

.thanks-icon {
  width: clamp(58px, 7vh, 72px);
  height: clamp(58px, 7vh, 72px);
  margin-bottom: clamp(10px, 1.6vh, 16px);
}

.thanks-icon .icon {
  width: 36px;
  height: 36px;
}

.thanks-content h1 {
  margin-bottom: clamp(8px, 1.4vh, 14px);
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.thanks-content p {
  max-width: 650px;
  margin-bottom: 6px;
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
}

.thanks-content .urgent-note {
  max-width: 610px;
  margin: 12px auto 0;
  color: var(--color-brown-light);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(14px, 2vh, 22px);
}

.thanks-actions .btn-whatsapp {
  border: 1px solid rgba(16, 168, 69, 0.25);
  box-shadow: 0 10px 26px rgba(16, 168, 69, 0.14);
}

@media (max-height: 700px) {
  .thanks-logo {
    width: 220px;
    margin-bottom: 8px;
  }

  .thanks-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
  }

  .thanks-icon .icon {
    width: 26px;
    height: 26px;
  }

  .thanks-content h1 {
    margin-bottom: 4px;
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }

  .thanks-content p {
    margin-bottom: 3px;
    font-size: 0.84rem;
  }

  .thanks-content .urgent-note {
    margin-top: 5px;
  }

  .thanks-actions {
    margin-top: 10px;
  }

  .thanks-actions .btn {
    min-height: 42px;
    padding-block: 9px;
  }
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.85); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 92px;
  }

  .nav-wrap {
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
  }

  .brand {
    width: 215px;
  }

  .brand img {
    height: 72px;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-link,
  .nav-toggle {
    font-size: 0.74rem;
  }

  .header-call {
    padding-inline: 16px;
    font-size: 0.76rem;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height));
  }

  .form-card {
    padding: 24px;
  }

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

  .coverage-strip-grid {
    grid-template-columns: 250px 1fr 100px;
    gap: 25px;
  }

  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }
}

@media (max-width: 900px) {
  body.menu-open::before {
    position: fixed;
    z-index: 900;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(53, 25, 13, 0.28);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    content: "";
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .main-nav {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    bottom: auto;
    left: auto;
    display: flex;
    width: min(88vw, 410px);
    height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 26px 22px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px 0 0;
    opacity: 0;
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 232, 0.9));
    box-shadow: -18px 22px 60px rgba(53, 25, 13, 0.22);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
    backdrop-filter: blur(24px) saturate(155%);
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(105%);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-link,
  .nav-toggle {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
  }

  .main-nav .nav-link::after,
  .main-nav .nav-toggle::after {
    display: none;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active,
  .main-nav .nav-toggle:hover,
  .main-nav .nav-toggle.active {
    color: var(--color-primary);
    background: rgba(244, 91, 10, 0.09);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: none;
    overflow: hidden;
    pointer-events: auto;
    transform: none;
  }

  .dropdown.open .dropdown-menu {
    max-height: 240px;
    border-color: rgba(244, 91, 10, 0.11);
    padding-block: 8px;
  }

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

  .home-hero .hero-grid {
    gap: 38px;
  }

  .service-hero .hero-grid {
    gap: 38px;
  }

  .service-hero .form-card {
    justify-self: start;
  }

  .service-hero::before {
    animation: none;
    background-position: 63% center;
    transform: scale(1.05);
  }

  .home-hero::before {
    animation: none;
    background-position: 76% center;
    transform: scale(1.03);
  }

  .home-hero::after {
    background: rgba(255, 250, 246, 0.64);
  }

  .service-hero::after {
    background:
      linear-gradient(rgba(255, 250, 246, 0.64), rgba(255, 250, 246, 0.64)),
      linear-gradient(90deg, rgba(255, 252, 248, 0.98) 0%, rgba(255, 252, 248, 0.94) 38%, rgba(255, 252, 248, 0.12) 59%, rgba(255, 252, 248, 0.22) 100%);
  }

  .brand-expertise {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    padding-block: 56px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .form-card {
    width: min(100%, 570px);
    justify-self: start;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .brand-name {
    min-width: 132px;
    min-height: 58px;
  }

  .brand-logo-card {
    width: 164px;
    height: 72px;
    flex-basis: 164px;
  }

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

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

  .why-photo {
    min-height: 300px;
  }

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

  .map-pin-big {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .process-grid::before {
    display: none;
  }

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

  .coverage-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .coverage-map {
    min-height: 720px;
    border-radius: 24px;
  }

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

  .cta-grid {
    grid-template-columns: 70px 1fr;
    padding-block: 28px;
  }

  .cta .btn {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
    --space-section: 60px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    width: 190px;
  }

  .brand img {
    height: 64px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .home-hero,
  .service-hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 42px;
  }

  .trust-row {
    gap: 10px;
  }

  .icon-circle {
    width: 56px;
    height: 56px;
  }

  .trust-item {
    font-size: 0.7rem;
  }

  .form-card {
    padding: 22px 18px;
  }

  .brand-track {
    animation-duration: 30s;
  }

  .service-brands {
    padding-block: 34px 30px;
  }

  .brand-expertise {
    margin-bottom: 24px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .brands-bar .brand-expertise h2 {
    font-size: 1.65rem;
  }

  .brand-expertise-copy p {
    font-size: 0.88rem;
  }

  .brands-bar .brand-carousel-title {
    font-size: 0.65rem;
    line-height: 1.5;
  }

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

  .feature-row,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card {
    padding-inline: 6px;
  }

  .benefit-card::after {
    display: none;
  }

  .why-content {
    padding: 44px 20px;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 14px;
  }

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

  .included-list {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 780px;
  }

  .map-label {
    gap: 3px;
    padding: 4px 7px 4px 4px;
    font-size: 0.58rem;
  }

  .map-label .icon {
    width: 18px;
    height: 18px;
  }

  .map-label.escobar { top: 3%; right: 3%; }
  .map-label.garin { top: 10%; right: 4%; left: auto; }
  .map-label.villarosa { top: 10%; left: 2%; }
  .map-label.benavidez { top: 17%; right: 3%; }
  .map-label.tortuguitas { top: 22%; left: 2%; }
  .map-label.nordelta { top: 25%; right: 3%; }
  .map-label.delviso { top: 31%; left: 2%; }
  .map-label.tigre { top: 33%; right: 2%; }
  .map-label.lalonja { top: 41%; left: 2%; }
  .map-label.rincon { top: 41%; right: 2%; }
  .map-label.pilar { top: 50%; left: 2%; }
  .map-label.victoria { top: 49%; right: 2%; }
  .map-label.sanfernando { top: 57%; right: 2%; }
  .map-label.sanisidro { top: 64%; right: 2%; }
  .map-label.beccar { top: 70%; right: 12%; }
  .map-label.martinez { top: 76%; right: 2%; }
  .map-label.olivos { top: 83%; right: 8%; }
  .map-label.vicentelopez { top: 90%; right: 2%; }

  .coverage-cards {
    grid-template-columns: 1fr;
  }

  .locality-card {
    grid-template-columns: 62px 1fr;
    padding: 18px;
  }

  .locality-icon {
    width: 58px;
    height: 58px;
  }

  .locality-card .btn {
    grid-column: 1 / -1;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .cta-icon {
    margin: auto;
  }

  .cta .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-track {
    animation: none;
  }

  .service-hero::before {
    animation: none;
    transform: scale(1.05);
    will-change: auto;
  }

  .home-hero::before {
    animation: none;
    transform: scale(1.03);
    will-change: auto;
  }
}
