﻿
:root {
  --color1: #F97316;
  --color2: #EA580C;
  --color3: #B45309;
  --color4: #0F172A;
  --color5: #1F2937;
  --white: #FFFFFF;
  --cream: #F8FAFC;
  --warm-bg: #F3F4F6;
  --soft-orange: #FED7AA;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: rgba(15, 23, 42, 0.12);
  --dark-footer: #0F172A;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  background: var(--warm-bg);
  color: var(--color5);
}

.container {
  width: min(90%, 1120px);
  margin: 0 auto;
}

.section, .hero, .site-footer {
  padding: 3rem 0;
}

.title-accent {
  display: inline;
}

.accent-orange {
  color: var(--color1);
}

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


/* Header */

.site-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.header-layout {
  width: min(96%, 1500px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 7.5rem;
  display: block;
}

.menu-toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--color4);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: var(--color1);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
}

.site-nav a {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  color: var(--color4);
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover, .site-nav a:focus, .site-nav a:active {
  color: var(--white);
  background: var(--color1);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(249, 115, 22, 0.22);
}

.brands-section {
  padding: 4rem 0;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 28%),
    linear-gradient(180deg, #e9e7e600 0%, #F8FAFC 100%);
}

.brands-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.brands-heading h2 {
  margin: 0;
  color: var(--color4);
  font-size: 3.2rem;
  line-height: 1;
}

.brands-collage {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
  animation: brandsSlide 34s linear infinite;
}

.brands-section .container {
  overflow: hidden;
  position: relative;
}

.brands-section .container::before, .brands-section .container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-bubble {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.brand-bubble:hover {
  transform: translateY(-4px);
  border-color: var(--color1);
  box-shadow: 0 20px 38px rgba(249, 115, 22, 0.16);
}

.brands-collage:hover {
  animation-play-state: paused;
}


/* Hero */

.hero {
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffffb1 0%, #F8FAFC 48%, #E5E7EB 100%);
  padding: 4.5rem 0;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--color2);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}

.hero-content h2 {
  margin: 0;
  width: 100%;
  max-width: 640px;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: normal;
  color: var(--color5);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px 20px 24px -20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.1), rgba(249, 115, 22, 0.12));
  border-radius: 24px;
  filter: blur(8px);
}



.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 150px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn-primary {
  background: var(--color1);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.22);
}

.hero-btn-secondary {
  background: var(--color4);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
}

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

.hero-btn-primary:hover {
  background: var(--color2);
}

.hero-btn-secondary:hover {
  background: #25D366;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
}

.hero-subtitle {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: rgba(31, 41, 55, 0.72);
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 2rem -1rem -1rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.16));
  filter: blur(18px);
}

.hero-main-image {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: 460px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
}

.hero-main-image:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}


/* Servicios */

#servicios {
  background: var(--white);
}

#servicios h2, .coverage-copy h2, .contact-section h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

#servicios h2 {
  margin-bottom: 2.8rem;
  color: var(--color4);
}

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

.card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--color5);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
}

.card::after {
  content: "";
  position: absolute;
  inset: 10px;
 
  pointer-events: none;

}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.12);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 8px;
  background: var(--color1);
  color: var(--white);
  box-shadow: 0 12px 20px rgba(249, 115, 22, 0.2);
  position: relative;
  z-index: 1;
}

.card-icon i {
  font-size: 1.75rem;
}

.card h3 {
  position: relative;
  margin: 0 0 1rem;
  color: var(--color2);
  font-size: 1.7rem;
  line-height: 1.1;
  z-index: 1;
}

.card p, .about-copy p, .coverage-copy p, .vehicle-text p {
  font-size: 1.05rem;
}

.card p {
  position: relative;
  margin: 0;
  line-height: 1.6;
  color: rgba(31, 41, 55, 0.82);
  z-index: 1;
}

.services-intro {
  position: relative;
  max-width: 980px;
  margin: 1.6rem 0 2.2rem;
  padding: 1.15rem 1.35rem 1.15rem 1.6rem;
  border-left: 5px solid var(--color1);
  border-radius: 0 14px 14px 0;
  background:var(--color1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}




/* Nosotros */

.about-section {
  background: radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-copy {
  padding: 2rem 0;
}

.about-copy h2 {
  margin: 0 0 1rem;
  color: var(--color4);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.about-copy p {
  margin: 0;
  max-width: 720px;
  color: rgba(31, 41, 55, 0.86);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-stats div {
  padding: 1.1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px var(--line);
}

.about-stats strong {
  display: block;
  color: var(--color2);
  font-size: 2rem;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 0.45rem;
  color: var(--color5);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-card {
  position: relative;
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line);
}

.about-card h3 {
  margin: 0 0 1rem;
  color: var(--color4);
  font-size: 1.8rem;
}

.about-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.about-card li {
  margin-bottom: 0.8rem;
  color: var(--color5);
  font-size: 1rem;
  font-weight: 600;
}

.about-layout-featured {
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
}

.about-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color2);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-feature-card {
  position: relative;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about-feature-image {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 74%;
  height: 230px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.about-feature-image img {
  width: min(130%, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.3));
}

.about-feature-copy {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  color: var(--white);
}

.about-feature-copy span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--color1);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-feature-copy h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  line-height: 1.08;
}

.about-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.6;
}

.about-showcase-card {
  position: relative;
  padding: 0.85rem;
  border-radius: 22px;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 32%),
    linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.about-showcase-image {
  overflow: hidden;
  border-radius: 16px;
  background: #0F172A;
}

.about-showcase-image img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.about-showcase-copy {
  padding: 1.35rem 1.2rem 0.9rem;
  color: var(--white);
}

.about-showcase-copy p {
  margin: 0 0 0.45rem;
  color: var(--color1);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-showcase-copy h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.08;
}

.about-showcase-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}


/* Equipo */

.equipo-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #FFE2C4 0%, #F97316 100%);
}

.equipo-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.equipo-card {
  position: relative;
  overflow: hidden;
  padding: 2.6rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.16);
}

.equipo-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
}

.equipo-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  
}

.equipo-card-wide {
  max-width: 1160px;
  margin: 0 auto;
}

.equipo-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 2rem;
}

.equipo-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color2);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.equipo-card .equipo-tag {
  display: inline-flex;
  margin: 0 0 1.4rem 0;
}


.equipo-card h3 {
  position: relative;
  margin: 0 0 1rem;
  color: var(--color4);
  font-size: 2.7rem;
  line-height: 1.05;
}

.equipo-card p {
  position: relative;
  margin: 0;
  color: rgba(31, 41, 55, 0.84);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 650;
}

.equipo-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.equipo-indicator {
  position: relative;
  min-height: 132px;
  padding: 1.2rem 1.2rem 1.2rem 5.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.equipo-indicator i {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 36%),
    linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.24);
}

.equipo-indicator strong {
  display: block;
  color: var(--color1);
  font-size: 1.65rem;
  line-height: 1.05;
}

.equipo-indicator span {
  display: block;
  margin-top: 0.4rem;
  color: var(--color4);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.equipo-indicator:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
}
/* Cobertura */

.coverage {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.coverage-copy {
  order: 1;
  position: relative;
  padding: 2rem;
  border-radius: 14px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.92));
  color: var(--white);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.coverage-map {
  order: 2;
  position: relative;
  padding: 0.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgb(239, 138, 6), rgb(234, 149, 3));
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.2);
}

.map-zoom {
  position: relative;
  width: 100%;
  height: 430px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  background-color: var(--white);
  cursor: grab;
}

.map-zoom:active {
  cursor: grabbing;
}

.map-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: translate(0px, 0px) scale(1);
  transition: transform 0.15s ease;
  user-select: none;
  pointer-events: none;
}

.map-controls {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.map-controls button, .gallery-btn, .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-controls button {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--color4);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.map-controls button:hover {
  background: var(--color1);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.22);
}

.map-controls i {
  font-size: 1.35rem;
}

.coverage-copy h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.6rem;
  line-height: 1.05;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.coverage-copy::before {
  content: "Cobertura";
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: var(--color1);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(249, 115, 22, 0.65));
  pointer-events: none;
}


/* Vehiculos */

.vehicles-section {
  background: radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
}

.vehicles-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.vehicles-tag {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--color2);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}

.vehicles-heading h2 {
  margin: 0;
  color: var(--color4);
  font-size: 4rem;
  line-height: 1;
}

.vehicle-item.is-prev {
  opacity: 0.68;
  transform: translate(-165%, -50%) scale(0.82);
  z-index: 2;
  pointer-events: auto;
}

.vehicle-item.is-next {
  opacity: 0.68;
  transform: translate(65%, -50%) scale(0.82);
  z-index: 2;
  pointer-events: auto;
}

.gallery-btn i {
  font-size: 1.7rem;
}

.vehicle-gallery {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 1.4rem;
  align-items: center;
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.vehicle-stage {
  position: relative;
  min-height: 460px;
  overflow: visible;
}

.vehicle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28%, 300px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  filter: saturate(0.75);
  pointer-events: none;
  border-radius: 18px;
}

.vehicle-item::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(249, 115, 22, 0.18));
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.vehicle-item.is-active::before {
  opacity: 1;
}

.vehicle-item.is-active {
  width: min(44%, 460px);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: saturate(1);
  z-index: 3;
  pointer-events: auto;
}

.vehicle-item.is-prev, .vehicle-item.is-next {
  opacity: 0.54;
  filter: grayscale(0.2) saturate(0.72);
}

.gallery-btn {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
    var(--color4);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gallery-btn:hover {
  transform: translateY(-2px);
  background: var(--color1);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.28);
}

.vehicle-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--color5);
  padding: 1.6rem 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 34%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.11);
  position: relative;
  overflow: hidden;
}

.vehicle-text::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--color1), var(--color2));
}

.vehicle-text::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
}

.vehicle-kicker, .vehicle-text h3, .vehicle-text p {
  position: relative;
  z-index: 1;
}

.vehicle-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--color1);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.16);
}

.vehicle-text h3 {
  margin: 0 0 0.65rem;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--color4);
}

.vehicle-text p {
  margin: 0 auto;
  color: rgba(31, 41, 55, 0.78);
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.6;
}

.vehicle-item img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
  background-color: var(--white);
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 70%);
  object-position: center;
  padding: 0.7rem;
}

.vehicle-item.is-active img {
  height: 330px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
  object-fit: contain;
  object-position: center;
  padding: 0.85rem;
}

.vehicle-item.is-prev img, .vehicle-item.is-next img {
  height: 270px;
  object-fit: contain;
  object-position: center;
  padding: 0.65rem;
}


/* Contacto */

#contacto {
  --contact-image: url("imagenes/formulario.png");
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #F8FAFC;
  box-shadow: none;
}

#contacto::before {
  content: "";
  position: absolute;
  inset: 0 0 26%;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.9) 33%, rgba(15, 23, 42, 0.36) 62%, rgba(15, 23, 42, 0.04) 100%),
    var(--contact-image) center / cover no-repeat;
}

#contacto::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.contact-section {
  max-width: 1120px;
}

.contact-landing {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding: 4.4rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  grid-template-areas:
    "copy form"
    "stats form"
    "benefits form"
    "note form";
  gap: 1.35rem 2rem;
  align-items: start;
}

.contact-hero-copy {
  grid-area: copy;
  max-width: 560px;
  color: var(--white);
}

.contact-kicker {
  position: relative;
  margin: 0 0 1.4rem;
  color: var(--color1);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-kicker::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: var(--color1);
}

.contact-hero-copy h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero-copy h2 span {
  display: block;
  color: var(--color1);
}

.contact-hero-copy p {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 500;
}

.contact-stats-panel {
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1rem;
  padding: 1.35rem 1.2rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-stat {
  min-height: 134px;
  padding: 0.25rem 1rem;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-stat:last-child {
  border-right: 0;
}

.contact-stat i {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.28);
}

.contact-stat strong {
  display: block;
  color: var(--color1);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.contact-stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: lowercase;
}

.contact-stat span::first-line {
  color: var(--color1);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.95rem 1.15rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.2);
}

.contact-benefits div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1rem;
}

.contact-benefits div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-benefits i {
  font-size: 2rem;
  flex: 0 0 auto;
}

.contact-benefits p,
.contact-note {
  margin: 0;
}

.contact-benefits strong,
.contact-benefits span {
  display: block;
}

.contact-benefits strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.contact-benefits span {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-note {
  grid-area: note;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--color5);
  font-size: 0.95rem;
  font-weight: 650;
  text-align: center;
}

.contact-note i {
  color: var(--color1);
}

.contact-panel {
  grid-area: form;
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 1.65rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.contact-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--color4);
  text-align: left;
}

.contact-heading-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  font-size: 1.45rem;
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
}

.contact-heading h2 {
  margin: 0;
  color: var(--color4);
  font-size: 1.55rem;
  line-height: 1.1;
}

.contact-heading p {
  margin: 0.3rem 0 0;
  color: rgba(31, 41, 55, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-group {
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.form-group label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-field-icon i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(31, 41, 55, 0.42);
  font-size: 0.95rem;
  z-index: 1;
}

.form-field-icon textarea + i,
.form-group textarea ~ i {
  top: 1.1rem;
  transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 0.95rem 0.78rem 2.45rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  background: #FFFFFF;
  color: var(--color5);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 82px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(31, 41, 55, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.privacy-check input {
  width: auto;
  min-height: auto;
  margin-top: 0.15rem;
  accent-color: var(--color1);
}

.contact-form button {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 9px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--color1), var(--color2));
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(249, 115, 22, 0.3);
  filter: brightness(1.03);
}

#formMessage {
  margin: 0;
  color: var(--color4);
  font-size: 0.9rem;
  font-weight: 800;
}
/* Footer */

.site-footer {
  position: relative;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 32%),
    linear-gradient(135deg, #0F172A 0%, #111827 100%);
  padding: 1.25rem 0;
  color: var(--white);
  border-top: 4px solid var(--color1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 58px;
  margin: 0;
  display: block;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-contact {
  justify-self: center;
  display: flex;
  gap: 1.4rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-contact i {
  color: var(--color1);
}

.socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.socials a i {
  line-height: 1;
  display: block;
}

.socials a:hover {
  transform: translateY(-2px);
  background: var(--color1);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.24);
}

.site-footer .footer-content {
  width: min(96%, 1500px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.site-footer .footer-brand, .site-footer .footer-content > div:first-child {
  justify-self: start;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.site-footer .footer-brand p, .site-footer .footer-content > div:first-child p {
  margin: 0;
  text-align: left;
}

.site-footer .footer-contact {
  justify-self: center;
  text-align: center;
}

.site-footer .socials, .site-footer .social-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}


/* Informacion */

.info-hero {
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 48%, #E5E7EB 100%);
}

.info-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.info-copy h1 {
  margin: 0 0 1rem;
  max-width: 760px;
  color: var(--color5);
  font-size: 4rem;
  line-height: 1.05;
}

.info-copy p {
  margin: 0;
  font-size: 1.08rem;
  max-width: 680px;
}

.info-card {
  padding: 2rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line);
}

.info-card h2, .info-section h2, .info-section-alt h2, .info-cta h2 {
  margin-top: 0;
}

.info-image-wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-image-wrap::before {
  content: "";
  position: absolute;
  inset: 2rem -1rem -1rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.16));
  filter: blur(18px);
}
.info-main-image {
  position: relative;
  z-index: 1;
  width: min(150%, 1000px);
  height: 460px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
}

.info-main-image:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}


.info-section {
  background: var(--white);
}

.info-section h2 {
  color: var(--color4);
  font-size: 2.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.info-section-alt {
  background: radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
}

.info-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-two-columns h2 {
  color: var(--color4);
  font-size: 2.2rem;
}

.info-list {
  margin: 0;
  padding-left: 1.2rem;
}

.info-list li {
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.info-cta {
  text-align: center;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 28%),
    linear-gradient(180deg, #F8FAFC 0%, #E5E7EB 100%);
}

.info-cta h2 {
  color: var(--color4);
  font-size: 2.6rem;
}

.info-cta p {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: rgba(31, 41, 55, 0.82);
  font-size: 1.08rem;
}

.info-button {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  background: var(--color1);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.2);
}

.info-page-hero {
  padding: 5rem 0;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 52%, #E5E7EB 100%);
}

.info-page-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.info-page-copy h1 {
  margin: 0 0 1rem;
  max-width: 760px;
  color: var(--color4);
  font-size: 4rem;
  line-height: 1.05;
}

.info-page-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(31, 41, 55, 0.82);
  font-size: 1.08rem;
}

.info-highlight {
  min-height: 350px;
  padding: 2rem;
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.22), transparent 35%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--white);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-right: 15rem;
}

.info-highlight span {
  color: var(--color1);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.info-highlight strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 2rem;
  line-height: 1.1;
}

.info-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-value-card, .objective-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.info-value-card h2, .info-section-heading h2 {
  margin: 0 0 1rem;
  color: var(--color4);
  font-size: 2.3rem;
  line-height: 1.1;
}

.info-objectives {
  background: radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #F8FAFC 0%, #EEF2F7 100%);
}

.info-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.info-highlight-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
}

.info-values {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.07), transparent 28%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.info-value-card {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: none;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-value-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 14px;
  border: none;
  pointer-events: none;
}

.info-value-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
}

.info-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
}

.info-card-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 1.4rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 36%),
    linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 28px rgba(249, 115, 22, 0.24);
}

.info-value-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--color4);
  font-size: 2.45rem;
}

.info-value-card p {
  margin: 0;
  color: rgba(31, 41, 55, 0.82);
  font-size: 1.08rem;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.objective-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 2.2rem 1.7rem 1.7rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.objective-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
}

.objective-card::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.09);
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(15, 23, 42, 0.14);
}

.objective-card span {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--color1);
  font-size: 1.65rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}

.objective-card p {
  margin: 0;
  color: var(--color4);
  font-weight: 800;
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.55;
}


/* Animaciones */

@keyframes brandsSlide {
  from {
  transform: translateX(0);
  }
  
  to {
  transform: translateX(-50%);
  }
}


/* Flotante */

.floating-contact {
  position: fixed;
  right: 1.4rem;
  bottom: 2.2rem;
  width: 56px;
  height: 56px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color1);
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.32);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact:hover {
  transform: translateY(-4px);
  background: var(--color2);
  box-shadow: 0 20px 38px rgba(249, 115, 22, 0.42);
}


/* Por Que Elegir TERCAM */

.why-heading {
  max-width: 100%;
  margin-bottom: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--color2);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.why-heading h2 {
  margin: 0;
  color: var(--color4);
  font-size: 3.2rem;
  line-height: 1.05;
  text-align: center;
}

.why-section {
  background: radial-gradient(circle at 10% 12%, rgba(249, 115, 22, 0.12), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(15, 23, 42, 0.08), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 48%, #EEF2F7 100%);
  position: relative;
  overflow: hidden;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 36%),
    linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--white);
  font-size: 1.45rem;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.28);
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
}

.why-card img {
  width: 100%;
  height: 220px;
  margin: 0;
  padding: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
}

.why-card h3, .why-card p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.why-card h3 {
  margin: 0 0 0.65rem;
  color: var(--color4);
  font-size: 1.45rem;
  line-height: 1.15;
}

.why-card p {
  margin: 0 0 1.5rem;
  color: rgba(31, 41, 55, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 62px rgba(15, 23, 42, 0.16);
}


/* Responsive: @media (max-width: 1100px) */

@media (max-width: 1100px) {
  .header-layout {
    width: min(94%, 1000px);
    gap: 1rem;
  }

  .brand-logo {
    width: 7.5rem;
  }

  .hero-content h2 {
    font-size: 3.3rem;
  }

  .hero-layout, .coverage-layout, .about-layout {
    grid-template-columns: 1fr;
  }

  .coverage-copy, .coverage-map {
    order: initial;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(170px, 72vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.65rem;
    margin-left: 0;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.58rem 0.7rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

}

/* Responsive: @media (max-width: 420px) */

@media (max-width: 420px) {
  .container {
    width: min(92%, 360px);
  }

  .hero-content h2 {
    max-width: 100%;
    font-size: 2.35rem;
  }

  .about-copy h2, .vehicles-heading h2, .brands-heading h2 {
    font-size: 2.25rem;
  }

  .site-nav a {
    font-size: 0.82rem;
    padding: 0.52rem 0.55rem;
  }

  .vehicle-gallery {
    grid-template-columns: 38px 1fr 38px;
  }

  .gallery-btn, .map-controls button {
    width: 38px;
    height: 38px;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }

}

/* Responsive: @media (max-width: 900px) */

@media (max-width: 900px) {
  .info-page-layout, .info-values-grid, .objectives-grid {
    grid-template-columns: 1fr;
  }

  .info-page-copy h1 {
    font-size: 2.7rem;
  }

  .info-highlight {
    min-height: 220px;
  }

  .equipo-layout {
    grid-template-columns: 1fr;
  }

  .equipo-media {
    min-height: 340px;
  }

  .equipo-metrics {
    grid-template-columns: 1fr;
  }

  .about-layout-featured {
    grid-template-columns: 1fr;
  }

  .about-feature-card {
    min-height: 420px;
  }

  .coverage-layout {
    gap: 1.5rem;
  }

  .coverage-copy {
    padding: 1.5rem;
  }

  .coverage-copy h2 {
    font-size: 2.1rem;
  }

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

  .why-heading h2 {
    font-size: 2.35rem;
  }

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

  .why-card img {
  width: 100%;
  height: 220px;
  margin: 0;
  padding: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
}

}

/* Responsive: @media (max-width: 768px) */

@media (max-width: 768px) {
  .brands-heading h2 {
    font-size: 2.4rem;
  }

  .brand-bubble {
    flex-basis: 105px;
    width: 6.6rem;
    height: 6.6rem;
  }

  .brands-collage {
    animation-duration: 26s;
  }

  .site-footer {
    padding: 1.6rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-brand, .footer-contact, .socials {
    justify-self: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.6rem;
  }

 .site-header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

  .header-layout {
    width: min(92%, 560px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .brand-logo {
    width: 7.5rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    font-size: 1.15rem;
  }

  .site-nav {
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(160px, 72vw);
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.65rem;
    margin-left: 0;
  }

  .site-nav a {
    padding: 0.55rem 0.65rem;
    font-size: 0.84rem;
    border-radius: 8px;
  }

  .section, .hero, .site-footer {
    padding: 2.4rem 0;
  }

  .hero {
    padding-top: 2.6rem;
    padding: 3.2rem 0;
  }

  .hero-layout, .coverage-layout, .about-layout, .info-layout, .info-grid, .info-two-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h2 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 1.12;
  }

  .hero-tag {
    font-size: 0.9rem;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .contact-video video {
    max-width: 100%;
  }

  .grid, .about-stats {
    grid-template-columns: 1fr;
  }

  .about-copy h2, .vehicles-heading h2, .brands-heading h2 {
    font-size: 2.7rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .map-zoom {
    height: 320px;
  }

  .vehicle-item {
    width: 46%;
  }

  .vehicle-item.is-prev {
    transform: translate(-126%, -50%) scale(0.72);
  }

  .vehicle-item.is-next {
    transform: translate(26%, -50%) scale(0.72);
  }

  .vehicle-item img {
    height: 230px;
  }

  .gallery-btn i {
    font-size: 1.45rem;
  }

  .vehicle-text h3 {
    font-size: 1.35rem;
  }

  .contact-panel {
    padding: 1.5rem;
    border-radius: 8px;
  }

  .contact-heading h2 {
    font-size: 1.6rem;
  }

  .contact-heading p {
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .footer-content > div:first-child, .footer-contact, .socials {
    justify-self: center;
  }

  .footer-content > div:first-child {
    flex-direction: column;
  }

  .info-copy h1 {
    font-size: 2.6rem;
  }

  .info-cta h2 {
    font-size: 2rem;
  }

  .hero-actions {
    align-items: stretch;
    width: 100%;
    margin-top: 2rem;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn {
    width: 100%;
    min-height: 64px;
    font-size: 1.05rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }

  .hero-visual {
    width: 100%;
  }

  .contact-video video, .hero-visual img, .info-main-image {
    width: 100%;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery {
    grid-template-columns: 44px 1fr 44px;
    gap: 0.55rem;
  }

  .vehicle-stage {
    min-height: 340px;
  }

  .vehicle-item.is-active {
    width: 74%;
  }

  .vehicle-item.is-active img, .vehicle-item img {
    height: 235px;
  }

  .vehicle-item.is-prev img, .vehicle-item.is-next img {
    height: 205px;
  }

  .gallery-btn {
    width: 44px;
    height: 44px;
  }

  .vehicle-text {
    margin-top: 1.6rem;
    padding: 1.3rem 1.2rem;
  }

  .about-feature-card {
    min-height: auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-feature-card::before {
    inset: 0.8rem;
  }

  .about-feature-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0.4rem 0.4rem 0.2rem;
    text-align: left;
  }

  .about-feature-copy h3 {
    font-size: 1.65rem;
  }

  .about-feature-copy p {
    font-size: 0.98rem;
  }

  .equipo-media {
    min-height: auto;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .equipo-media img {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(92%, 320px);
    max-height: 210px;
    margin: 0 auto;
    object-fit: contain;
  }

  .equipo-media-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0.3rem 0.4rem 0.2rem;
    text-align: left;
  }

  .equipo-media-copy h4 {
    font-size: 1.65rem;
  }

  .equipo-media-copy p {
    font-size: 0.98rem;
  }

  .floating-contact {
    right: 1rem;
    bottom: 3.2rem;
    width: 50px;
    height: 50px;
    font-size: 1.18rem;
  }

  .vehicle-item img, .vehicle-item.is-active img, .vehicle-item.is-prev img, .vehicle-item.is-next img {
    object-fit: contain;
    object-position: center;
    padding: 0.45rem;
  }

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .about-section, .about-layout, .about-layout-featured, .about-copy, .about-feature-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-stats {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-stats div {
    width: 100%;
    min-width: 0;
  }

  .about-copy h2 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .about-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .about-feature-image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 210px;
    transform: none;
    display: grid;
    place-items: center;
  }

  .about-feature-image img {
    width: min(90%, 280px);
    max-height: 210px;
    object-fit: contain;
    max-width: 100%;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }

  .hero-image-wrap {
    order: -1;
    min-height: auto;
    width: 100%;
  }

  .hero-main-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    border-width: 4px;
  }

  .info-image-wrap {
    order: -1;
    min-height: auto;
    width: 100%;
  }

  .info-main-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    border-width: 4px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .services-intro {
    margin: 1.2rem 0 1.8rem;
    padding: 1rem 1rem 1rem 1.15rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-showcase-card {
    padding: 0.7rem;
    border-radius: 18px;
  }

  .about-showcase-image img {
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: #0F172A;
  }

  .about-showcase-copy {
    padding: 1rem 0.8rem 0.7rem;
  }

  .about-showcase-copy h3 {
    font-size: 1.45rem;
  }

  .about-showcase-copy span {
    font-size: 0.95rem;
    line-height: 1.55;
  }

}


/* ==============================
   Ajustes finales consolidados
   ============================== */

/* Textos */
.objective-card p:first-of-type {
  color: var(--color1);
}

p,
li,
.card p,
.why-card p,
.about-copy p,
.equipo-card p,
.coverage-copy p,
.vehicle-text p,
.contact-hero-copy p,
.contact-heading p,
.contact-benefits p,
.info-page-copy p,
.info-value-card p,
.objective-card p {
  text-align: justify;
  text-justify: inter-word;
}

.objective-card p,
.objective-card strong,
.objective-card span,
.objective-card li {
  text-align: left;
  text-align-last: left;
  word-spacing: normal;
  letter-spacing: 0;
  hyphens: auto;
}

.objective-card p {
  line-height: 1.45;
}

/* Hero */
.hero-layout {
  grid-template-columns: minmax(560px, 0.95fr) minmax(520px, 1.05fr);
  gap: 3.5rem;
}

.hero-content {
  max-width: 760px;
}

.hero-content h2 {
  max-width: 760px;
  font-size: clamp(3.4rem, 4.6vw, 5.2rem);
  line-height: 1.06;
}

/* Servicios */
.services-intro,
#servicios .section-lead,
#servicios .services-intro {
  width: 100%;
  max-width: none;
}

#servicios .container {
  max-width: 1400px;
}

#servicios .grid {
  width: 100%;
}

/* Equipo */
@media (min-width: 901px) {
  .equipo-card-wide {
    max-width: 1060px;
  }

  .equipo-card {
    padding: 2.1rem 2.4rem 2.3rem;
  }

  .equipo-copy {
    margin-bottom: 1.35rem;
  }

  .equipo-metrics {
    gap: 0.85rem;
  }

  .equipo-indicator {
    min-height: 96px;
    align-content: center;
    padding: 0.9rem 1rem 0.9rem 4.35rem;
    border-radius: 14px;
  }

  .equipo-indicator i {
    top: 50%;
    left: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    transform: translateY(-50%);
  }

  .equipo-indicator strong {
    font-size: 1.45rem;
  }

  .equipo-indicator span {
    margin-top: 0.25rem;
    font-size: 0.86rem;
    line-height: 1.2;
  }
}

/* Cobertura */
.coverage-copy-image {
  margin-top: 1.6rem;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.coverage-copy-image img {
  width: 100%;
  height: auto;
  max-height: 240px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #0F172A;
  box-shadow: none;
}

/* Pagina de informacion */
.info-page-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 4rem;
  align-items: center;
}

.info-page-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.info-page-copy h1 {
  max-width: 640px;
  font-size: clamp(3rem, 4vw, 4.8rem);
}

.info-page-copy p {
  max-width: 620px;
}

.info-image-wrap {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.info-main-image {
  width: 100%;
  display: block;
}

/* Por que TERCAM */
#porque-tercam .why-card {
  padding: 0;
  overflow: hidden;
  border: none;
}

#porque-tercam .why-card > img {
  width: 100%;
  max-width: none;
  height: 236px;
  display: block;
  margin: -16px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

#porque-tercam .why-card h3 {
  margin-top: 1.4rem;
}

/* Contacto */
.form-group:has(textarea) i {
  top: 1rem;
  transform: none;
}

.contact-kicker,
.contact-hero-kicker,
.contact-hero .hero-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  color: var(--color1);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.18);
}

.contact-kicker::after,
.contact-hero-kicker::after,
.contact-hero .hero-tag::after,
#contacto .contact-kicker::after {
  display: none;
  content: none;
}

#contacto .contact-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contacto .contact-kicker {
  width: max-content;
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 1.4rem;
  text-align: center;
}

@media (min-width: 769px) {
  #contacto .contact-landing {
    position: relative;
  }

  #contacto .contact-kicker {
    position: absolute;
    top: 3.4rem;
    left: 50%;
    z-index: 3;
    margin: 0;
    transform: translateX(-50%);
  }

  #contacto .contact-hero-copy {
    padding-top: 5.2rem;
  }
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-content h2 {
    max-width: 820px;
  }
}

@media (max-width: 900px) {
  #contacto::before {
    inset: 0;
    width: 100%;
  }

  #contacto::after {
    top: auto;
    width: 100%;
    height: 48%;
  }

  .contact-landing {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stats"
      "benefits"
      "form"
      "note";
    gap: 1rem;
    padding: 3rem 0 2.5rem;
  }

  .contact-hero-copy {
    max-width: 100%;
    text-align: left;
  }

  .contact-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.8rem;
    padding: 1rem;
  }

  .contact-stat:nth-child(2n) {
    border-right: none;
  }

  .contact-stat:nth-child(n + 3) {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .contact-panel {
    padding: 1.4rem;
  }

  .contact-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-heading h2 {
    font-size: 1.35rem;
  }

  .info-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-page-copy h1,
  .info-page-copy p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 76px;
  }

  main {
    margin-top: 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .site-nav {
    right: 1rem;
    z-index: 10000;
  }

  #inicio.hero {
    padding-top: 0.8rem;
  }

  #inicio .hero-layout,
  #inicio .hero-image-wrap {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-content h2 {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1.08;
  }

  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-section .container {
    width: 100%;
    padding-right: 1.1rem;
    padding-left: 1.1rem;
  }

  .about-copy {
    padding: 0 0.15rem;
  }

  .about-tag {
    margin-bottom: 0.8rem;
    font-size: 0.78rem;
  }

  .about-copy h2 {
    margin-bottom: 1rem;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .about-copy p {
    color: rgba(31, 41, 55, 0.78);
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.8rem;
    padding-right: 0.15rem;
    padding-left: 0.15rem;
  }

  .about-stats div {
    position: relative;
    margin-right: 0;
    margin-left: 0;
    padding: 1.2rem 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  }

  .about-stats div::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--color1);
  }

  .about-stats strong {
    color: var(--color1);
    font-size: 2rem;
  }

  .about-stats span {
    font-size: 0.95rem;
  }

  .about-feature-card {
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 18px;
    background: #101b2d;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
  }

  .about-feature-inner {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .about-feature-card img {
    width: 100%;
    display: block;
    margin: 0;
    border-radius: 0;
  }

  .about-feature-content {
    padding: 1.35rem 1.35rem 1.6rem;
  }

  .coverage-copy {
    padding: 1.4rem;
    overflow: hidden;
  }

  .coverage-copy-image {
    width: 100%;
    max-width: 100%;
    margin-top: 1.2rem;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
  }

  .coverage-copy-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: none;
  }

  .equipo-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .equipo-card::after {
    width: 5px;
  }

  .equipo-copy {
    margin-bottom: 1.5rem;
  }

  .equipo-card h3 {
    font-size: 2rem;
  }

  .equipo-card p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .equipo-metrics {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .equipo-indicator {
    min-height: auto;
    padding: 1rem 1rem 1rem 4.6rem;
  }

  .equipo-indicator i {
    top: 1rem;
    left: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .equipo-indicator strong {
    font-size: 1.45rem;
  }

  #porque-tercam .why-card > img {
    width: calc(100% + 32px);
    max-width: none;
    height: 226px;
    margin: -16px -16px 0;
    border-radius: 0;
    object-fit: cover;
  }

  #porque-tercam .why-card h3,
  #porque-tercam .why-card p {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .contact-stat:nth-child(n + 3) {
    padding-top: 1.35rem;
  }

  .floating-contact {
    bottom: 2.4rem;
  }

  .site-footer {
    padding: 1.6rem 0 2rem;
  }

  .site-footer .footer-content {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand socials"
      "contact contact";
    align-items: center;
    column-gap: 1rem;
    row-gap: 1.2rem;
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  .site-footer .footer-brand,
  .site-footer .footer-content > div:first-child {
    grid-area: brand;
    justify-self: start;
  }

  .site-footer .socials {
    grid-area: socials;
    justify-self: end;
  }

  .site-footer .footer-contact {
    width: 100%;
    display: grid;
    grid-area: contact;
    justify-items: center;
    gap: 0.5rem;
  }

  .site-footer .footer-contact p {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, auto);
    align-items: center;
    justify-content: center;
    column-gap: 0.45rem;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.25;
    text-align: center;
  }

  .site-footer .footer-contact p span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .contact-hero-copy h2 {
    font-size: 2.35rem;
  }

  .contact-hero-copy p {
    font-size: 1rem;
  }

  .contact-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }

  .contact-stat {
    padding: 0.3rem 0.65rem;
  }

  .contact-stat-icon {
    width: 48px;
    height: 48px;
  }

  .contact-stat strong {
    font-size: 1.35rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-heading-icon {
    width: 50px;
    height: 50px;
  }
}
