/* ===== CHAVÍN MOTORS — ESTILOS GLOBALES ===== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-accent: #E63000;
  --dark: #1A1A1A;
  --dark-mid: #3D3D3D;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'Barlow', sans-serif;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== BARRA DE EMERGENCIA STICKY ===== */
.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  flex-wrap: wrap;
}
.emergency-bar__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.emergency-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 4px;
  min-height: 44px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.emergency-bar__btn:hover { background: var(--dark); color: var(--white); }
.emergency-bar__btn--gps {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.emergency-bar__btn--gps:hover { background: rgba(255,255,255,0.15); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(204,0,0,0.3);
  padding: 0 24px;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
}
.logo__icon { color: var(--red); font-size: 1.6rem; }
.logo span { color: var(--red); }

.nav { display: flex; align-items: center; gap: 0; }
.nav__list { display: flex; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--red); }

.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 997;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--red); }
.mobile-nav__cta {
  display: block;
  margin-top: 24px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 4px;
}

/* ===== LAYOUT / CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--light { background: var(--light); color: var(--dark); }
.section--dark-mid { background: var(--dark-mid); }
.section--white { background: var(--white); color: var(--dark); }

.section__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.6;
}
.section--light .section__subtitle,
.section--white .section__subtitle { color: var(--dark-mid); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.38) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
.hero__title span { color: var(--red); }
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
  min-height: 52px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(204,0,0,0.5);
  animation: pulse 2s infinite;
}
.btn--primary:hover { background: var(--red-dark); animation: none; transform: translateY(-2px); }
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline-red:hover { background: var(--red); color: var(--white); }
.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover { background: var(--light); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(204,0,0,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(204,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}

/* ===== SERVICIOS CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(204,0,0,0.4); transform: translateY(-4px); }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(204,0,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 1.6rem;
}
.service-card__badge {
  display: inline-block;
  background: rgba(204,0,0,0.15);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(204,0,0,0.3);
  margin-bottom: 16px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-card__link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-data);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__sublabel {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ===== ICON SVG SIZING ===== */
.service-card__icon svg,
.feature-item__icon svg,
.fleet-item__icon svg,
.footer__contact-icon svg,
.contact-card__icon svg,
.emergency-bar__label svg,
.emergency-bar__btn svg,
.logo__icon svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ===== COBERTURA ===== */
.coverage-map {
  position: relative;
  background: var(--dark-mid);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coverage-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.route-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.route-item__dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.route-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.route-item__desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== PROCESO SEGUROS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(204,0,0,0.3));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step__number {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid var(--dark);
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ===== CORPORATIVO HOME ===== */
.corporate-home {
  background: var(--white);
  color: var(--dark);
}
.corporate-home .section__label { color: var(--red); }
.corporate-home .section__title { color: var(--dark); }
.corporate-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.corporate-home__features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-item__title {
  font-family: var(--font-data);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}
.feature-item__desc { font-size: 0.9rem; color: var(--dark-mid); line-height: 1.5; }

/* ===== TESTIMONIOS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-card__stars { color: #FFB800; margin-bottom: 14px; font-size: 1.1rem; }
.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== FAQ ===== */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.08); }
.faq-question.active { background: rgba(204,0,0,0.1); color: var(--red); }
.faq-question .faq-icon { transition: transform var(--transition); font-size: 1.2rem; flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.faq-answer.open { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer__socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--red); color: var(--white); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--white);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--red); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer__contact-icon { color: var(--red); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer__contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer__contact-text strong { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__ruc { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); animation: none; }
@keyframes pulse-wa {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== PAGE HERO (subpáginas) ===== */
.page-hero {
  padding: 180px 0 80px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-block;
  background: rgba(204,0,0,0.15);
  color: var(--red);
  border: 1px solid rgba(204,0,0,0.3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero__title span { color: var(--red); }
.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--white); }

/* ===== CARACTERÍSTICAS LIST ===== */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.features-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FORMULARIO ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
  min-height: 52px;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-control option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}
.cta-section .section__title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.cta-section .btn--white { font-size: 1.1rem; padding: 16px 36px; }

/* ===== INFO BOXES ===== */
.info-box {
  background: rgba(204,0,0,0.08);
  border: 1px solid rgba(204,0,0,0.25);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(204,0,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card__content { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-card__content a { color: var(--red); }
.contact-card__content a:hover { text-decoration: underline; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__img {
  height: 180px;
  background: var(--dark-mid);
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 24px; }
.blog-card__tag {
  display: inline-block;
  background: rgba(204,0,0,0.15);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(204,0,0,0.3);
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--red); }
.blog-card__excerpt { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.blog-card__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== MAPA EMBED ===== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}
.map-container iframe { display: block; width: 100%; }

/* ===== FLOTA ITEMS ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.fleet-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.fleet-item__icon { font-size: 2.5rem; margin-bottom: 14px; }
.fleet-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.fleet-item__desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===== UTILIDADES ===== */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.gap-16 { gap: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat:nth-child(2) { border-right: none; }
  .stats-grid .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stats-grid .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-home__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .emergency-bar { padding: 8px 12px; gap: 6px; }
  .emergency-bar__label { display: none; }
  .site-header { top: 52px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 110px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-routes { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .whatsapp-fab { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .page-hero { padding: 160px 0 60px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
