:root {
  --red: #e11d24;
  --red-dark: #b8151b;
  --dark: #1c1c1e;
  --dark-soft: #2a2a2d;
  --gray: #5a5a5e;
  --gray-light: #f4f4f5;
  --border: #e6e6e8;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --max-width: 1180px;
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 132px; }

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(225,29,36,0.3);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.logo__img { height: 101px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  position: relative;
}
.nav a:hover { color: var(--red); }
.header__cta { white-space: nowrap; padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero__text p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--gray-light); }
.section--dark { background: var(--dark); color: var(--white); }

.eyebrow {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.eyebrow--light { color: #ff6a6f; }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 26ch;
}
.section__title--light { color: var(--white); }
.section__subtitle {
  color: var(--gray);
  max-width: 60ch;
  margin-bottom: 40px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--gray); margin-bottom: 16px; }
.card__link { color: var(--red); font-weight: 700; }
.card__link:hover { color: var(--red-dark); }

.card--featured {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(225,29,36,0.15);
  position: relative;
}
.card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.card__tag--muted {
  background: var(--gray-light);
  color: var(--gray);
}

/* Trust strip (franja de clientes bajo el hero) */
.trust-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-strip__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  white-space: nowrap;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item__logo {
  height: 40px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.trust-item__logo img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}
.trust-item__logo--placeholder {
  background: var(--dark);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.trust-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

/* Mini steps (resumen del proceso, debajo del formulario de contacto) */
.mini-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.mini-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 600;
}
.mini-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
}

/* Trucks */
.trucks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.truck-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.truck-card img { height: 240px; width: 100%; object-fit: cover; }
.truck-card__info { padding: 22px; }
.truck-card__info h3 { margin-bottom: 8px; }
.truck-card__info p { color: var(--gray); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat strong { font-size: 1.8rem; color: var(--red); font-weight: 800; }
.stat span { color: var(--gray); font-size: 0.9rem; font-weight: 600; }

/* Coverage */
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
}
.coverage__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.coverage__image img { width: 100%; height: 100%; object-fit: cover; }
.coverage__info h3 { font-size: 1.3rem; margin-bottom: 10px; }
.coverage__info p { color: var(--gray); margin-bottom: 18px; }
.coverage__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.coverage__map iframe { width: 100%; height: 100%; border: 0; }

/* About */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.about__text p { color: #c9c9cc; margin-bottom: 20px; max-width: 55ch; }
.about__list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  color: #e4e4e6;
}
.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.about__highlights {
  background: var(--dark-soft);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about__highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__highlight h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 4px; }
.about__highlight p { color: #b8b8bb; font-size: 0.88rem; margin: 0; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__info p { color: var(--gray); margin-bottom: 24px; max-width: 48ch; }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--gray-light);
  padding: 28px;
  border-radius: var(--radius);
}
.contact__success {
  display: none;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact__success--visible { display: block; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark);
}
.contact__form select { cursor: pointer; }
.contact__form select:invalid { color: var(--gray); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact__form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: -6px;
}
.contact__form button { align-self: flex-start; }

/* Footer */
.footer { background: var(--dark); color: #c9c9cc; padding: 56px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 40px; margin-bottom: 12px; border-radius: 6px; }
.footer__brand p { max-width: 32ch; }
.footer__col h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.footer__col p { margin-bottom: 8px; }
.footer__col a:hover { color: var(--red); }
.footer__bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #8a8a8d;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .mini-steps { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trucks { grid-template-columns: 1fr; }
  .trust-strip__inner { flex-direction: column; gap: 16px; }
  .trust-strip__logos { gap: 18px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }

  .nav.nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
}
