/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;

  --accent: #02459c;
  --accent-hover: #02459c;

  --text: #1e293b;
  --text-light: #64748b;

  --background: #f8fafc;
  --white: #ffffff;

  --border: #e2e8f0;

  --max-width: 1200px;

  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  width: 100%;
  background: var(--white);

  border-bottom: 1px solid var(--border);

  position: sticky;
  top: 0;
  z-index: 1000;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}


.navbar-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 0 25px;

  height: 75px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  color: var(--primary);

  font-weight: 800;

  font-size: 20px;

  letter-spacing: 0.5px;
}


.logo-icon {
  font-size: 30px;
}


.logo-text {
  font-weight: 800;
}


/* =========================================================
   MENU
========================================================= */

.nav-menu {
  display: flex;
  align-items: center;

  gap: 8px;
}


.nav-link {
  position: relative;

  display: flex;
  align-items: center;

  padding: 10px 16px;

  text-decoration: none;

  color: var(--text-light);

  font-size: 15px;

  font-weight: 600;

  border-radius: 8px;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}


.nav-link:hover {
  color: var(--primary);

  background: #f1f5f9;
}


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


/* Línea debajo del enlace activo */

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 16px;
  right: 16px;

  bottom: 3px;

  height: 2px;

  background: var(--accent);

  border-radius: 10px;
}


/* =========================================================
   BOTÓN CONTACTO
========================================================= */

.nav-contact {
  background: var(--accent);

  color: var(--primary);

  margin-left: 8px;

  padding: 11px 20px;

  border-radius: 8px;

  font-weight: 700;
}


.nav-contact:hover {
  background: var(--accent-hover);

  color: var(--white);
}


.nav-contact.active::after {
  display: none;
}


/* =========================================================
   MAIN
========================================================= */

.main-content {
  min-height: calc(100vh - 75px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  margin-top: 80px;

  background: var(--primary);

  color: var(--white);
}


.footer-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 60px 25px;

  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  gap: 60px;
}


.footer-logo {
  font-size: 20px;

  font-weight: 800;

  margin-bottom: 15px;
}


.footer-brand p {
  max-width: 400px;

  color: #94a3b8;

  line-height: 1.8;
}


.footer h3 {
  margin-bottom: 18px;

  font-size: 16px;
}


.footer-links {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


.footer-links a {
  color: #94a3b8;

  text-decoration: none;

  transition: color 0.2s ease;
}


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


.footer-contact {
  color: #94a3b8;
}


.footer-contact p {
  margin-bottom: 10px;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  text-align: center;

  padding: 20px;

  color: #64748b;

  font-size: 14px;
}

/* Centra el logo y el texto dentro del bloque del footer */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente el logo y el texto */
  text-align: center;  /* Centra las líneas de texto del párrafo */
}

/* Opcional: Ajusta el margen del contenedor del logo */
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px; /* Espacio entre el logo y el texto inferior */
}

/* Asegura que la imagen mantenga su proporción */
.footer-logo .logo-img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


/* =========================================================
   RESPONSIVE
========================================================= */
/* =========================================================
   BOTÓN HAMBURGUESA
========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: none;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 5px;

  border-radius: 8px;
}

.menu-toggle:hover {
  background: #f1f5f9;
}

.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  background: var(--primary);

  border-radius: 5px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 850px) {

  .navbar-container {
    height: 70px;
    padding: 0 20px;
  }

  /*
     Mostramos el botón hamburguesa
  */

  .menu-toggle {
    display: flex;
  }


  /*
     Menú oculto inicialmente
  */

  .nav-menu {

    position: absolute;

    top: 70px;
    left: 0;
    right: 0;

    width: 100%;

    background: var(--white);

    border-top: 1px solid var(--border);

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);

    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }


  /*
     Menú abierto
  */

  .nav-menu.active {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  /*
     Enlaces móviles
  */

  .nav-link {

    width: 100%;

    justify-content: flex-start;

    padding: 14px 16px;

    font-size: 15px;

    border-radius: 8px;
  }


  .nav-link:hover {
    background: #f1f5f9;
  }


  /*
     Quitamos la línea inferior
     del enlace activo en móvil
  */

  .nav-link.active::after {
    display: none;
  }


  /*
     Contacto
  */

  .nav-contact {

    margin-left: 0;

    margin-top: 8px;

    justify-content: center;
  }


  /*
     Animación del botón hamburguesa
  */

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /*
     FOOTER
  */

  .footer-container {

    grid-template-columns: 1fr;

    gap: 35px;

    padding: 45px 25px;
  }

}


/* =========================================================
   TELÉFONOS
========================================================= */

@media (max-width: 500px) {

  .navbar-container {
    padding: 0 15px;
  }


  .logo {
    font-size: 16px;
    gap: 7px;
  }


  .logo-img {
    height: 35px;
  }


  .logo-text {
    font-size: 15px;
  }


  .menu-toggle {
    width: 42px;
    height: 42px;
  }


  .nav-menu {
    top: 70px;

    padding: 8px 15px 18px;
  }


  .nav-link {
    padding: 13px 14px;
    font-size: 14px;
  }


  .footer-container {
    padding: 40px 20px;
  }


  .footer-bottom {
    padding: 18px 15px;

    font-size: 12px;
  }

}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.98) 0%,
      rgba(15, 23, 42, 0.88) 45%,
      rgba(15, 23, 42, 0.45) 100%
    ),
    linear-gradient(
      135deg,
      #1e293b,
      #0f172a
    );

  overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;

  /* Agregamos la imagen como capa inferior usando el helper de Rails asset-url o la ruta directa */
  background-image: 
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.98) 0%,
      rgba(15, 23, 42, 0.88) 45%,
      rgba(15, 23, 42, 0.45) 100%
    ),
    url("/assets/hero-truck-bg-921c3db9.jpg"); /* Nombre de tu imagen en app/assets/images */

  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover; /* O usa "contain" si prefieres que no se recorte */

  overflow: hidden;
}

/* Eliminamos el emoji del pseudoelemento */
.hero::after {
  content: "";
  display: none;
}


.hero-container {
  position: relative;

  z-index: 2;

  width: 100%;

  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 25px;
}


.hero-content {
  max-width: 720px;

  color: var(--white);
}


.hero-label {
  display: inline-block;

  padding: 8px 14px;

  margin-bottom: 25px;

  background: rgba(102, 188, 253, 0.15);

  border: 1px solid rgba(11, 171, 245, 0.35);

  color: var(--accent);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 1px;
}


.hero h1 {
  font-size: clamp(42px, 6vw, 72px);

  line-height: 1.05;

  letter-spacing: -2px;

  margin-bottom: 25px;

  font-weight: 800;
}


.hero h1 span {
  display: block;

  color: var(--accent);
}


.hero p {
  max-width: 620px;

  font-size: 19px;

  color: #cbd5e1;

  line-height: 1.7;

  margin-bottom: 35px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}


.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 25px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 15px;

  font-weight: 700;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


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


.btn-primary {
  background: var(--accent);

  color: var(--primary);

  box-shadow: 0 8px 25px rgba(11, 140, 245, 0.25);
}


.btn-primary:hover {
  background: var(--accent-hover);

  color: var(--white);
}


.btn-secondary {
  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.2);

  color: var(--white);
}


.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
  display: flex;

  gap: 30px;

  margin-top: 35px;

  flex-wrap: wrap;
}


.trust-item {
  display: flex;

  align-items: center;

  gap: 8px;

  color: #cbd5e1;

  font-size: 14px;
}


.trust-item span {
  color: var(--accent);

  font-weight: 800;
}

/* =========================================================
   STATS
========================================================= */

.stats {
  background: var(--white);

  border-bottom: 1px solid var(--border);
}


.stats-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 35px 25px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


.stat-item {
  text-align: center;

  padding: 10px 20px;

  border-right: 1px solid var(--border);
}


.stat-item:last-child {
  border-right: none;
}


.stat-item strong {
  display: block;

  font-size: 32px;

  color: var(--primary);

  font-weight: 800;
}


.stat-item span {
  display: block;

  margin-top: 5px;

  color: var(--text-light);

  font-size: 14px;
}

/* =========================================================
   SECTION GENERAL
========================================================= */

.section-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;
}


.section-heading {
  max-width: 700px;

  margin: 0 auto 60px;

  text-align: center;
}


.section-label {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--accent-hover);

  font-size: 13px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.15;

  color: var(--primary);

  margin-bottom: 20px;

  letter-spacing: -1px;
}


.section-heading h2 span {
  color: var(--accent-hover);
}


.section-heading p {
  color: var(--text-light);

  font-size: 17px;

  line-height: 1.7;
}

/* =========================================================
   SERVICES
========================================================= */

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


.services-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.service-card {
  background: var(--white);

  padding: 35px 28px;

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.service-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);

  border-color: rgba(11, 124, 245, 0.4);
}


.service-icon {
  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  background: #fff7ed;

  border-radius: 12px;

  font-size: 28px;
}


.service-card h3 {
  margin-bottom: 12px;

  color: var(--primary);

  font-size: 20px;
}


.service-card p {
  margin-bottom: 20px;

  color: var(--text-light);

  font-size: 15px;

  line-height: 1.7;
}


.service-card a {
  color: var(--accent-hover);

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;
}


.service-card a:hover {
  text-decoration: underline;
}

/* =========================================================
   WHY US
========================================================= */

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


.why-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}


.why-content h2 {
  max-width: 550px;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;

  color: var(--primary);

  margin-bottom: 25px;
}


.why-content h2 span {
  color: var(--accent-hover);
}


.why-content > p {
  max-width: 580px;

  color: var(--text-light);

  font-size: 17px;

  line-height: 1.8;

  margin-bottom: 35px;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}


.benefit {
  display: flex;

  gap: 15px;
}


.benefit-icon {
  flex-shrink: 0;

  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #edf1ff;

  color: var(--accent-hover);

  border-radius: 50%;

  font-weight: 800;
}


.benefit h3 {
  margin-bottom: 5px;

  color: var(--primary);

  font-size: 16px;
}


.benefit p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================================
   IMAGE / VISUAL PLACEHOLDER
========================================================= */

.why-image {
  min-height: 550px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #334155,
      #0f172a
    );

  overflow: hidden;

  position: relative;
}


.why-image::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(11, 97, 245, 0.15);

  top: -100px;

  right: -100px;
}


.why-image::after {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  border-radius: 50%;

  background: rgba(11, 62, 245, 0.08);

  bottom: -80px;

  left: -80px;
}


.why-image-content {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  color: var(--white);
}


.why-image-content span {
  font-size: 110px;

  margin-bottom: 20px;
}


.why-image-content strong {
  font-size: 30px;

  font-weight: 800;
}


.why-image-content small {
  margin-top: 10px;

  color: #94a3b8;

  font-size: 15px;
}

/* =========================================================
   PROCESS
========================================================= */

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


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}


.process-item {
  position: relative;

  background: var(--white);

  padding: 30px;

  border-radius: 12px;

  border: 1px solid var(--border);
}


.process-number {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 50px;

  height: 50px;

  margin-bottom: 25px;

  background: var(--primary);

  color: var(--accent);

  border-radius: 10px;

  font-weight: 800;

  font-size: 14px;
}


.process-item h3 {
  margin-bottom: 10px;

  color: var(--primary);

  font-size: 18px;
}


.process-item p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  background: var(--primary);

  color: var(--white);
}


.cta-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.cta-content {
  max-width: 700px;
}


.cta-content .section-label {
  color: var(--accent);
}


.cta-content h2 {
  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;

  margin-bottom: 20px;
}


.cta-content h2 span {
  color: var(--accent);
}


.cta-content p {
  color: #94a3b8;

  font-size: 17px;

  line-height: 1.7;
}


.cta-action {
  flex-shrink: 0;
}


.btn-cta {
  background: var(--accent);

  color: var(--primary);

  padding: 17px 28px;

  white-space: nowrap;
}


.btn-cta:hover {
  background: var(--accent-hover);

  color: var(--white);
}

/* =========================================================
   HOME RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

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


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


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

    gap: 50px;
  }


  .why-image {
    min-height: 400px;
  }

}


@media (max-width: 750px) {

  .hero {
    min-height: 600px;
  }


  .hero h1 {
    font-size: 44px;

    letter-spacing: -1px;
  }


  .hero p {
    font-size: 17px;
  }


  .stats-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }


  .stat-item {
    border-right: none;

    border-bottom: 1px solid var(--border);

    padding-bottom: 20px;
  }


  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }


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


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


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


  .cta-container {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 500px) {

  .hero {
    min-height: 580px;
  }


  .hero-container {
    padding: 60px 20px;
  }


  .hero h1 {
    font-size: 38px;
  }


  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }


  .btn {
    width: 100%;
  }


  .hero-trust {
    flex-direction: column;

    gap: 12px;
  }


  .section-container,
  .why-container {
    padding: 70px 20px;
  }


  .section-heading {
    margin-bottom: 40px;
  }


  .why-image {
    min-height: 350px;
  }


  .why-image-content span {
    font-size: 80px;
  }


  .why-image-content strong {
    font-size: 24px;
  }


  .cta-container {
    padding: 65px 20px;
  }

}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
  min-height: 460px;
  display: flex;
  align-items: center;

  background:
    linear-gradient(
      110deg,
      rgba(15, 23, 42, 0.98),
      rgba(15, 23, 42, 0.78)
    );

  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  

  right: -10px; 
  bottom: 0;
  
  /* Ajusta el tamaño de la imagen */
  width: 1650px;
  height: 1500px;
  
  background-image: url("/assets/about-truck-bg-c5bb19d8.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;

  /* DIFUMINADO EN EL LADO IZQUIERDO */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
  mask-image: linear-gradient(to right, transparent 0%, black 90%);

  opacity: 0.20; /* Transparencia para efecto marca de agua */
  pointer-events: none;
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: var(--max-width);

  margin: 0 auto;
  padding: 80px 25px;
}

.about-hero-content {
  max-width: 750px;
  color: var(--white);
}

.about-hero-content .section-label {
  color: var(--accent);
}

.about-hero-content h1 {
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.about-hero-content h1 span {
  display: block;
  color: var(--accent);
}

.about-hero-content p {
  max-width: 650px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
  background: var(--white);
}


.about-story-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 110px 25px;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: center;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.about-story-image {
  min-height: 560px;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #334155,
      #0f172a
    );
}


.about-story-image::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: rgba(11, 77, 245, 0.12);

  top: -160px;

  left: -160px;
}


.about-story-image::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  border-radius: 50%;

  background: rgba(255,255,255,0.04);

  bottom: -120px;

  right: -100px;
}


.about-truck-placeholder {
  position: relative;

  z-index: 2;

  font-size: 140px;

  filter: drop-shadow(
    0 20px 20px rgba(0,0,0,0.25)
  );
}


.about-image-badge {
  position: absolute;

  z-index: 3;

  bottom: 25px;

  left: 25px;

  right: 25px;

  padding: 18px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  background: rgba(15,23,42,0.9);

  border: 1px solid rgba(255,255,255,0.1);

  border-radius: 10px;

  backdrop-filter: blur(10px);
}


.about-image-badge strong {
  color: var(--white);

  font-size: 17px;
}


.about-image-badge span {
  color: var(--accent);

  font-size: 14px;
}


/* =========================================================
   STORY CONTENT
========================================================= */

.about-story-content h2 {
  max-width: 650px;

  margin-bottom: 25px;

  color: var(--primary);

  font-size: clamp(35px, 4vw, 50px);

  line-height: 1.1;

  letter-spacing: -1px;
}


.about-story-content h2 span {
  color: var(--accent-hover);
}


.about-story-content > p {
  margin-bottom: 18px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.8;
}


.about-signature {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 30px;

  color: var(--primary);

  font-size: 14px;

  font-weight: 700;
}


.signature-line {
  width: 45px;

  height: 3px;

  background: var(--accent);

  border-radius: 10px;
}

/* =========================================================
   ABOUT NUMBERS
========================================================= */

.about-numbers {
  background: var(--primary);

  color: var(--white);
}


.about-numbers-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 55px 25px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}


.about-number {
  text-align: center;

  padding: 10px 20px;

  border-right: 1px solid rgba(255,255,255,0.12);
}


.about-number:last-child {
  border-right: none;
}


.about-number strong {
  display: block;

  margin-bottom: 5px;

  color: var(--accent);

  font-size: 38px;

  font-weight: 800;
}


.about-number span {
  color: #94a3b8;

  font-size: 14px;
}

/* =========================================================
   VALUES
========================================================= */

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


.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.value-card {
  padding: 35px 30px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.value-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);

  border-color: rgba(11, 85, 245, 0.4);
}


.value-icon {
  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 22px;

  background: #edf3ff;

  border-radius: 12px;

  font-size: 27px;
}


.value-card h3 {
  margin-bottom: 10px;

  color: var(--primary);

  font-size: 20px;
}


.value-card p {
  color: var(--text-light);

  font-size: 15px;

  line-height: 1.7;
}

/* =========================================================
   MISSION / VISION
========================================================= */

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


.mission-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}


.mission-card {
  padding: 55px;

  border-radius: 16px;

  position: relative;

  overflow: hidden;
}


.mission-card-dark {
  background: var(--primary);

  color: var(--white);
}


.mission-card-light {
  background: #edf6ff;

  color: var(--primary);
}


.mission-number {
  position: absolute;

  top: 25px;

  right: 30px;

  font-size: 50px;

  font-weight: 900;

  opacity: 0.1;
}


.mission-card .section-label {
  margin-bottom: 18px;
}


.mission-card-dark .section-label {
  color: var(--accent);
}


.mission-card-light .section-label {
  color: var(--accent-hover);
}


.mission-card h2 {
  max-width: 450px;

  margin-bottom: 20px;

  font-size: 32px;

  line-height: 1.2;
}


.mission-card p {
  color: #94a3b8;

  font-size: 15px;

  line-height: 1.8;
}


.mission-card-light p {
  color: var(--text-light);
}

/* =========================================================
   DIFFERENCES
========================================================= */

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


.difference-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0;
}


.difference-item {
  display: flex;

  gap: 25px;

  padding: 35px;

  border-bottom: 1px solid var(--border);
}


.difference-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}


.difference-number {
  flex-shrink: 0;

  color: var(--accent-hover);

  font-size: 15px;

  font-weight: 800;
}


.difference-item h3 {
  margin-bottom: 8px;

  color: var(--primary);

  font-size: 19px;
}


.difference-item p {
  color: var(--text-light);

  font-size: 15px;

  line-height: 1.7;
}

/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
  background: var(--primary);

  color: var(--white);
}


.about-cta-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.about-cta-container > div {
  max-width: 700px;
}


.about-cta .section-label {
  color: var(--accent);
}


.about-cta h2 {
  margin-bottom: 18px;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.15;
}


.about-cta p {
  color: #94a3b8;

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================================
   ABOUT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .about-story-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .about-story-image {
    min-height: 450px;
  }


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


  .mission-container {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 750px) {

  .about-hero {
    min-height: 430px;
  }


  .about-hero-content h1 {
    font-size: 43px;
  }


  .about-story-container {
    padding: 70px 20px;
  }


  .about-numbers-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }


  .about-number {
    border-right: none;

    border-bottom: 1px solid rgba(255,255,255,0.12);

    padding-bottom: 20px;
  }


  .about-number:nth-last-child(-n+2) {
    border-bottom: none;
  }


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


  .mission-container {
    padding: 70px 20px;
  }


  .mission-card {
    padding: 40px 30px;
  }


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


  .difference-item:nth-child(odd) {
    border-right: none;
  }


  .about-cta-container {
    flex-direction: column;

    align-items: flex-start;

    padding: 65px 20px;
  }

}


@media (max-width: 500px) {

  .about-hero-container {
    padding: 60px 20px;
  }


  .about-hero-content h1 {
    font-size: 37px;

    letter-spacing: -1px;
  }


  .about-hero-content p {
    font-size: 16px;
  }


  .about-story-image {
    min-height: 350px;
  }


  .about-truck-placeholder {
    font-size: 100px;
  }


  .about-image-badge {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }


  .about-story-content h2 {
    font-size: 35px;
  }


  .about-number strong {
    font-size: 30px;
  }


  .mission-card h2 {
    font-size: 27px;
  }


  .difference-item {
    padding: 25px 0;
  }

}

/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* Imagen centrada cubriendo todo el fondo + gradientes de oscurecimiento */
  background: 
    /* Gradiente frontal para asegurar la legibilidad del texto */
    linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.80) 45%,
      rgba(15, 23, 42, 0.65) 100%
    ),
    url("/assets/services-hero-bg-a7c8eaab.jpg");

  background-position: center center; /* Centrada */
  background-size: cover;             /* Cubre todo el Hero */
  background-repeat: no-repeat;
}

/* Eliminamos el pseudoelemento con emoji previo */
.services-hero::after {
  content: "";
  display: none;
}

.services-hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 25px;
  position: relative;
  z-index: 2;
}

.services-hero-content {
  max-width: 760px;
  color: var(--white);
}

.services-hero-content .section-label {
  color: var(--accent);
}

.services-hero-content h1 {
  margin-bottom: 25px;
  font-size: clamp(43px, 5vw, 65px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.services-hero-content h1 span {
  display: block;
  color: var(--accent);
}

.services-hero-content p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
  background: var(--white);
}


.services-intro-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 90px 25px;

  display: grid;

  grid-template-columns: 1.4fr 0.6fr;

  gap: 80px;

  align-items: center;
}


.services-intro-content {
  max-width: 700px;
}


.services-intro-content h2 {
  margin-bottom: 25px;

  color: var(--primary);

  font-size: clamp(35px, 4vw, 50px);

  line-height: 1.1;
}


.services-intro-content h2 span {
  color: var(--accent-hover);
}


.services-intro-content p {
  margin-bottom: 18px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.8;
}


.services-intro-highlight {
  min-height: 300px;

  padding: 40px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b
    );

  border-radius: 18px;

  color: var(--white);

  position: relative;

  overflow: hidden;
}


.services-intro-highlight::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: rgba(245,158,11,0.1);

  top: -80px;

  right: -60px;
}


.highlight-icon {
  position: relative;

  z-index: 2;

  font-size: 75px;

  margin-bottom: 20px;
}


.services-intro-highlight strong {
  position: relative;

  z-index: 2;

  font-size: 24px;
}


.services-intro-highlight span {
  position: relative;

  z-index: 2;

  margin-top: 8px;

  color: #94a3b8;

  font-size: 14px;
}

/* =========================================================
   MAIN SERVICES
========================================================= */

.main-services-section {
  background: var(--background);
}


.main-services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.main-service-card {
  padding: 32px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 14px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  display: flex;

  flex-direction: column;
}


.main-service-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);

  border-color: rgba(11, 132, 245, 0.45);
}


.main-service-card-featured {
  background: var(--primary);

  color: var(--white);

  border-color: var(--primary);
}


.main-service-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 25px;
}


.main-service-icon {
  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #edf5ff;

  border-radius: 12px;

  font-size: 27px;
}


.main-service-number {
  color: #cbd5e1;

  font-size: 14px;

  font-weight: 800;
}


.main-service-card-featured .main-service-number {
  color: #64748b;
}


.main-service-card h3 {
  margin-bottom: 12px;

  color: var(--primary);

  font-size: 22px;
}


.main-service-card-featured h3 {
  color: var(--white);
}


.main-service-card > p {
  margin-bottom: 20px;

  color: var(--text-light);

  font-size: 15px;

  line-height: 1.7;
}


.main-service-card-featured > p {
  color: #94a3b8;
}


.main-service-card ul {
  list-style: none;

  margin-bottom: 25px;
}


.main-service-card li {
  padding: 5px 0;

  color: var(--text-light);

  font-size: 14px;
}


.main-service-card-featured li {
  color: #cbd5e1;
}


.service-action {
  margin-top: auto;

  padding-top: 15px;

  color: var(--accent-hover);

  text-decoration: none;

  font-size: 14px;

  font-weight: 800;
}


.service-action:hover {
  text-decoration: underline;
}


.main-service-card-featured .service-action {
  color: var(--accent);
}


/* =========================================================
   CARGO
========================================================= */

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


.cargo-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}


.cargo-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: var(--background);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}


.cargo-item:hover {
  transform: translateY(-3px);

  border-color: rgba(11, 109, 245, 0.4);
}


.cargo-icon {
  flex-shrink: 0;

  width: 50px;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--white);

  border-radius: 10px;

  font-size: 24px;
}


.cargo-item h3 {
  margin-bottom: 3px;

  color: var(--primary);

  font-size: 16px;
}


.cargo-item p {
  color: var(--text-light);

  font-size: 13px;

  line-height: 1.5;
}


/* =========================================================
   SERVICE BENEFITS
========================================================= */

.service-benefits-section {
  background: var(--primary);

  color: var(--white);
}


.service-benefits-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 90px 25px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}


.service-benefits-content {
  max-width: 600px;
}


.service-benefits-content .section-label {
  color: var(--accent);
}


.service-benefits-content h2 {
  margin-bottom: 22px;

  font-size: clamp(35px, 4vw, 50px);

  line-height: 1.1;
}


.service-benefits-content h2 span {
  color: var(--accent);
}


.service-benefits-content > p {
  color: #94a3b8;

  font-size: 16px;

  line-height: 1.8;
}


.service-benefits-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;
}


.service-benefit {
  display: flex;

  gap: 15px;
}


.service-benefit > span {
  flex-shrink: 0;

  width: 35px;

  height: 35px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(245,158,11,0.15);

  color: var(--accent);

  border-radius: 50%;

  font-weight: 800;
}


.service-benefit h3 {
  margin-bottom: 5px;

  font-size: 17px;
}


.service-benefit p {
  color: #94a3b8;

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================================
   SERVICE PROCESS
========================================================= */

.service-process-section {
  background: var(--background);
}


.service-process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


.service-process-item {
  position: relative;

  padding: 30px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;
}


.service-process-number {
  width: 52px;

  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 25px;

  background: var(--primary);

  color: var(--accent);

  border-radius: 10px;

  font-size: 14px;

  font-weight: 800;
}


.service-process-item h3 {
  margin-bottom: 10px;

  color: var(--primary);

  font-size: 18px;
}


.service-process-item p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
  background: var(--white);
}


.services-cta-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.services-cta-container > div {
  max-width: 700px;
}


.services-cta .section-label {
  color: var(--accent-hover);
}


.services-cta h2 {
  margin-bottom: 18px;

  color: var(--primary);

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;
}


.services-cta h2 span {
  color: var(--accent-hover);
}


.services-cta p {
  color: var(--text-light);

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================================
   SERVICES RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .services-intro-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }


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


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


  .service-benefits-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }


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

}


@media (max-width: 750px) {

  .services-hero {
    min-height: 480px;
  }


  .services-hero-content h1 {
    font-size: 43px;
  }


  .main-services-grid {
    grid-template-columns: 1fr;
  }


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


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


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


  .services-cta-container {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 500px) {

  .services-hero-container {
    padding: 65px 20px;
  }


  .services-hero-content h1 {
    font-size: 37px;

    letter-spacing: -1px;
  }


  .services-hero-content p {
    font-size: 16px;
  }


  .services-intro-container {
    padding: 70px 20px;
  }


  .services-intro-content h2 {
    font-size: 35px;
  }


  .services-intro-highlight {
    min-height: 250px;
  }


  .main-service-card {
    padding: 27px;
  }


  .service-benefits-container {
    padding: 70px 20px;
  }


  .services-cta-container {
    padding: 65px 20px;
  }

}

/* =========================================================
   CLIENTS HERO
========================================================= */

.clients-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* Imagen centrada cubriendo todo el fondo con gradiente de contraste */
  background:
    linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.82) 45%,
      rgba(15, 23, 42, 0.65) 100%
    ),
    url("/assets/clients-hero-bg-6c328435.jpg");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Se elimina el emoji del pseudoelemento */
.clients-hero::after {
  content: "";
  display: none;
}

.clients-hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 25px;
  position: relative;
  z-index: 2;
}

.clients-hero-content {
  max-width: 760px;
  color: var(--white);
}

.clients-hero-content .section-label {
  color: var(--accent);
}

.clients-hero-content h1 {
  margin-bottom: 25px;
  font-size: clamp(43px, 5vw, 65px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.clients-hero-content h1 span {
  display: block;
  color: var(--accent);
}

.clients-hero-content p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================================================
   CLIENTS INTRO
========================================================= */

.clients-intro {
  background: var(--white);
}


.clients-intro-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;

  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 80px;

  align-items: center;
}


.clients-intro-content {
  max-width: 700px;
}


.clients-intro-content h2 {
  margin-bottom: 25px;

  color: var(--primary);

  font-size: clamp(35px, 4vw, 50px);

  line-height: 1.1;
}


.clients-intro-content h2 span {
  color: var(--accent-hover);
}


.clients-intro-content p {
  margin-bottom: 18px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.8;
}


.clients-intro-card {
  min-height: 300px;

  padding: 45px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: #edf3ff;

  border-radius: 18px;

  position: relative;

  overflow: hidden;
}


.clients-intro-card::before {
  content: "";

  position: absolute;

  width: 230px;

  height: 230px;

  border-radius: 50%;

  background: rgba(11, 105, 245, 0.12);

  right: -90px;

  top: -90px;
}


.clients-intro-icon {
  position: relative;

  z-index: 2;

  width: 75px;

  height: 75px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  background: var(--white);

  border-radius: 50%;

  font-size: 34px;

  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
}


.clients-intro-card strong {
  position: relative;

  z-index: 2;

  max-width: 250px;

  color: var(--primary);

  font-size: 23px;

  line-height: 1.25;
}


.clients-intro-card p {
  position: relative;

  z-index: 2;

  max-width: 260px;

  margin-top: 10px;

  color: var(--text-light);

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================================
   CLIENT SECTORS
========================================================= */

.client-sectors-section {
  background: var(--background);
}


.client-sectors-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.client-sector-card {
  padding: 30px;

  display: flex;

  gap: 20px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.client-sector-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);
}


.client-sector-icon {
  flex-shrink: 0;

  width: 58px;

  height: 58px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #fff7ed;

  border-radius: 10px;

  font-size: 27px;
}


.client-sector-number {
  color: var(--accent-hover);

  font-size: 12px;

  font-weight: 800;
}


.client-sector-card h3 {
  margin: 5px 0 8px;

  color: var(--primary);

  font-size: 20px;
}


.client-sector-card p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.65;
}

/* =========================================================
   CLIENT BENEFITS
========================================================= */

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


.client-benefits-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: center;
}


.client-benefits-visual {
  min-height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #334155,
      #0f172a
    );

  border-radius: 18px;
}


.client-benefits-visual::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  border-radius: 50%;

  background: rgba(245,158,11,0.1);

  top: -150px;

  right: -100px;
}


.client-benefits-truck {
  position: relative;

  z-index: 2;

  font-size: 135px;

  filter: drop-shadow(
    0 20px 20px rgba(0,0,0,0.25)
  );
}


.client-benefits-badge {
  position: absolute;

  z-index: 3;

  bottom: 25px;

  left: 25px;

  right: 25px;

  padding: 18px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  background: rgba(15,23,42,0.9);

  border-radius: 10px;

  backdrop-filter: blur(10px);
}


.client-benefits-badge strong {
  color: var(--white);

  font-size: 16px;
}


.client-benefits-badge span {
  color: var(--accent);

  font-size: 13px;
}


.client-benefits-content h2 {
  margin-bottom: 20px;

  color: var(--primary);

  font-size: clamp(35px, 4vw, 50px);

  line-height: 1.1;
}


.client-benefits-content h2 span {
  color: var(--accent-hover);
}


.client-benefits-content > p {
  margin-bottom: 35px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.8;
}


.client-benefit-list {
  display: flex;

  flex-direction: column;

  gap: 22px;
}


.client-benefit-item {
  display: flex;

  gap: 15px;
}


.client-benefit-check {
  flex-shrink: 0;

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #fff7ed;

  color: var(--accent-hover);

  border-radius: 50%;

  font-weight: 800;
}


.client-benefit-item h3 {
  margin-bottom: 4px;

  color: var(--primary);

  font-size: 17px;
}


.client-benefit-item p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================================
   CLIENT PROCESS
========================================================= */

.client-process-section {
  background: var(--background);
}


.client-process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


.client-process-item {
  padding: 30px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;

  position: relative;
}


.client-process-number {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 52px;

  height: 52px;

  margin-bottom: 25px;

  background: var(--primary);

  color: var(--accent);

  border-radius: 10px;

  font-size: 14px;

  font-weight: 800;
}


.client-process-item h3 {
  margin-bottom: 10px;

  color: var(--primary);

  font-size: 18px;
}


.client-process-item p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================================
   CLIENT LOGOS
========================================================= */

.client-logos-section {
  background: var(--white);
  overflow: hidden;
}


/* =========================================================
   CARRUSEL
========================================================= */

.client-carousel {
  width: 100%;

  overflow: hidden;

  position: relative;

  margin-top: 40px;

  /*
     Desvanecimiento en los extremos
  */

  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}


/* =========================================================
   TRACK
========================================================= */

.client-logos-track {

  display: flex;

  align-items: center;

  width: max-content;

  gap: 30px;

  animation: clientLogosScroll 25s linear infinite;

}


/* =========================================================
   LOGO ITEM
========================================================= */

.client-logo-item {

  flex: 0 0 200px;

  height: 140px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--background);

  border: 1px solid var(--border);

  border-radius: 12px;

  padding: 20px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;

}


/* =========================================================
   IMAGEN
========================================================= */

.client-logo-img {

  width: 100%;

  height: 100%;

  max-width: 160px;

  max-height: 100px;

  object-fit: contain;

  display: block;

  filter: grayscale(100%);

  opacity: 0.75;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;

}


/* =========================================================
   HOVER
========================================================= */

.client-logo-item:hover {

  transform: translateY(-6px);

  border-color: rgba(11, 89, 245, 0.45);

  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.10);

}


.client-logo-item:hover .client-logo-img {

  filter: grayscale(0%);

  opacity: 1;

  transform: scale(1.05);

}


/* =========================================================
   ANIMACIÓN
========================================================= */

@keyframes clientLogosScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(
      calc(-50% - 15px)
    );
  }

}


/* =========================================================
   PAUSAR AL PASAR EL MOUSE
========================================================= */

.client-carousel:hover .client-logos-track {

  animation-play-state: paused;

}


/* =========================================================
   INDICADORES
========================================================= */

.carousel-dots {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 7px;

  margin-top: 25px;

}


.carousel-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #cbd5e1;

  transition:
    width 0.3s ease,
    background 0.3s ease;

}


.carousel-dot.active {

  width: 22px;

  border-radius: 10px;

  background: var(--accent);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  .client-logos-track {

    gap: 20px;

    animation-duration: 22s;

  }


  .client-logo-item {

    flex: 0 0 180px;

    height: 125px;

    padding: 18px;

  }


  .client-logo-img {

    max-width: 145px;

    max-height: 90px;

  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 500px) {

  .client-carousel {

    margin-top: 30px;

    mask-image: none;

  }


  .client-logos-track {

    gap: 15px;

    animation-duration: 18s;

  }


  .client-logo-item {

    /*
       Un logo prácticamente ocupa
       todo el ancho del teléfono
    */

    flex: 0 0 calc(100vw - 50px);

    height: 150px;

    padding: 25px;

  }


  .client-logo-img {

    max-width: 200px;

    max-height: 105px;

  }


  .carousel-dots {

    margin-top: 20px;

  }

}

/* =========================================================
   TESTIMONIALS
========================================================= */

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


.testimonials-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}


.testimonial-card {
  padding: 35px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 12px;
}


.testimonial-stars {
  margin-bottom: 20px;

  color: var(--accent);

  font-size: 17px;

  letter-spacing: 2px;
}


.testimonial-card blockquote {
  margin-bottom: 30px;

  color: var(--primary);

  font-size: 16px;

  line-height: 1.8;

  font-weight: 500;
}


.testimonial-author {
  display: flex;

  align-items: center;

  gap: 12px;
}


.testimonial-avatar {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--primary);

  color: var(--accent);

  border-radius: 50%;

  font-size: 12px;

  font-weight: 800;
}


.testimonial-author strong {
  display: block;

  color: var(--primary);

  font-size: 14px;
}


.testimonial-author span {
  display: block;

  margin-top: 3px;

  color: var(--text-light);

  font-size: 12px;
}

/* =========================================================
   CLIENT CTA
========================================================= */

.clients-cta {
  background: var(--primary);

  color: var(--white);
}


.clients-cta-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 85px 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.clients-cta-container > div {
  max-width: 700px;
}


.clients-cta .section-label {
  color: var(--accent);
}


.clients-cta h2 {
  margin-bottom: 18px;

  font-size: clamp(34px, 4vw, 50px);

  line-height: 1.1;
}


.clients-cta h2 span {
  color: var(--accent);
}


.clients-cta p {
  color: #94a3b8;

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================================
   CLIENTS RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .clients-intro-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }


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


  .client-benefits-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }


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


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

}


@media (max-width: 750px) {

  .clients-hero {
    min-height: 470px;
  }


  .clients-hero-content h1 {
    font-size: 43px;
  }


  .client-sectors-grid {
    grid-template-columns: 1fr;
  }


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


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


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


  .clients-cta-container {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 500px) {

  .clients-hero-container {
    padding: 65px 20px;
  }


  .clients-hero-content h1 {
    font-size: 37px;

    letter-spacing: -1px;
  }


  .clients-hero-content p {
    font-size: 16px;
  }


  .clients-intro-container {
    padding: 70px 20px;
  }


  .clients-intro-content h2 {
    font-size: 35px;
  }


  .clients-intro-card {
    min-height: 260px;

    padding: 35px 25px;
  }


  .client-benefits-container {
    padding: 70px 20px;
  }


  .client-benefits-visual {
    min-height: 350px;
  }


  .client-benefits-truck {
    font-size: 100px;
  }


  .client-benefits-badge {
    flex-direction: column;

    align-items: flex-start;

    gap: 5px;
  }


  .client-logos-grid {
    grid-template-columns: 1fr 1fr;
  }


  .clients-cta-container {
    padding: 65px 20px;
  }

}

/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  /* Imagen de fondo centrada que cubre todo el Hero con capa oscura */
  background:
    linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.82) 45%,
      rgba(15, 23, 42, 0.65) 100%
    ),
    url("/assets/contact-hero-bg-5b056c12.jpg");

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Se deshabilita el emoji del pseudoelemento */
.contact-hero::after {
  content: "";
  display: none;
}

.contact-hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 25px;
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 750px;
  color: var(--white);
}

.contact-hero-content .section-label {
  color: var(--accent);
}

.contact-hero-content h1 {
  margin-bottom: 20px;
  font-size: clamp(43px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.contact-hero-content h1 span {
  display: block;
  color: var(--accent);
}

.contact-hero-content p {
  max-width: 650px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

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


.contact-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 100px 25px;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: start;
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
  padding-top: 15px;
}


.contact-information h2 {
  margin-bottom: 20px;

  color: var(--primary);

  font-size: clamp(35px, 4vw, 48px);

  line-height: 1.1;
}


.contact-information h2 span {
  color: var(--accent-hover);
}


.contact-information-description {
  margin-bottom: 40px;

  color: var(--text-light);

  font-size: 16px;

  line-height: 1.8;
}


.contact-info-item {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 25px;
}


.contact-info-icon {
  width: 48px;

  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #edf3ff;

  color: var(--accent-hover);

  border-radius: 10px;

  font-size: 20px;
}


.contact-info-item span {
  display: block;

  margin-bottom: 5px;

  color: #94a3b8;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


.contact-info-item a {
  color: var(--primary);

  font-size: 16px;

  font-weight: 700;

  text-decoration: none;
}


.contact-info-item strong {
  display: block;

  color: var(--primary);

  font-size: 15px;
}


.contact-info-item p {
  margin-top: 3px;

  color: var(--text-light);

  font-size: 13px;
}

/* =========================================================
   WHATSAPP CARD
========================================================= */

.contact-whatsapp {
  margin-top: 40px;

  padding: 20px;

  display: flex;

  align-items: center;

  gap: 14px;

  background: #f0fdf4;

  border: 1px solid #dcfce7;

  border-radius: 12px;
}


.contact-whatsapp-icon {
  width: 45px;

  height: 45px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f0fdf4;

  color: white;

  border-radius: 50%;

  font-size: 15px;

  font-weight: 900;
}


.contact-whatsapp strong {
  display: block;

  color: #14532d;

  font-size: 14px;
}


.contact-whatsapp p {
  margin-top: 4px;

  color: #166534;

  font-size: 12px;
}


.contact-whatsapp a {
  margin-left: auto;

  color: #16a34a;

  font-size: 24px;

  text-decoration: none;
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
  padding: 45px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 16px;

  box-shadow: 0 15px 50px rgba(15,23,42,0.06);
}


.contact-form-header {
  margin-bottom: 30px;
}


.contact-form-header h2 {
  margin-bottom: 8px;

  color: var(--primary);

  font-size: 30px;
}


.contact-form-header p {
  color: var(--text-light);

  font-size: 14px;

  line-height: 1.6;
}

/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}


.form-field {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.form-field-full {
  grid-column: 1 / -1;
}


.form-field label {
  color: var(--primary);

  font-size: 13px;

  font-weight: 700;
}


.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  padding: 13px 14px;

  background: #f8fafc;

  border: 1px solid var(--border);

  border-radius: 8px;

  color: var(--primary);

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);

  border-color: var(--accent);

  box-shadow:
    0 0 0 3px rgba(245,158,11,0.12);
}


.form-field textarea {
  resize: vertical;

  min-height: 150px;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a3b8;
}


.form-submit {
  margin-top: 5px;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}


.form-submit .btn {
  border: none;

  cursor: pointer;
}


.form-submit small {
  color: #94a3b8;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================================
   CONTACT MESSAGES
========================================================= */

.contact-success {
  margin-bottom: 25px;

  padding: 16px;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  background: #f0fdf4;

  border: 1px solid #bbf7d0;

  border-radius: 9px;

  color: #166534;
}


.contact-success > span {
  width: 25px;

  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #22c55e;

  color: white;

  border-radius: 50%;

  font-size: 13px;

  font-weight: 800;
}


.contact-success strong {
  display: block;

  margin-bottom: 3px;

  font-size: 14px;
}


.contact-success p {
  font-size: 12px;
}


.contact-errors {
  margin-bottom: 25px;

  padding: 16px;

  background: #fef2f2;

  border: 1px solid #fecaca;

  border-radius: 9px;

  color: #991b1b;

  font-size: 13px;
}


.contact-errors strong {
  display: block;

  margin-bottom: 8px;
}


.contact-errors ul {
  margin-left: 20px;

  line-height: 1.7;
}

/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-final-cta {
  background: var(--primary);

  color: var(--white);
}


.contact-final-container {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 80px 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.contact-final-container > div {
  max-width: 700px;
}


.contact-final-container .section-label {
  color: var(--accent);
}


.contact-final-container h2 {
  margin-bottom: 15px;

  font-size: clamp(34px, 4vw, 48px);

  line-height: 1.1;
}


.contact-final-container h2 span {
  color: var(--accent);
}


.contact-final-container p {
  color: #94a3b8;

  font-size: 15px;

  line-height: 1.7;
}

/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 950px) {

  .contact-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .contact-information {
    max-width: 700px;
  }

}


@media (max-width: 700px) {

  .contact-hero {
    min-height: 350px;
  }


  .contact-hero-content h1 {
    font-size: 42px;
  }


  .contact-container {
    padding: 70px 20px;
  }


  .contact-form-card {
    padding: 30px 22px;
  }


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


  .form-field-full {
    grid-column: auto;
  }


  .contact-final-container {
    padding: 65px 20px;

    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 450px) {

  .contact-hero-container {
    padding: 60px 20px;
  }


  .contact-hero-content h1 {
    font-size: 36px;

    letter-spacing: -1px;
  }


  .contact-form-card {
    padding: 25px 18px;
  }


  .contact-whatsapp {
    align-items: flex-start;
  }

}


/* =========================================================
   ASISTENCIA MECÁNICA
========================================================= */

.mechanical-assistance {

  margin-top: 45px;

  display: flex;

  align-items: center;

  gap: 25px;

  padding: 30px 35px;

  background: var(--primary);

  border-radius: 14px;

  box-shadow: var(--shadow);

  position: relative;

  overflow: hidden;

}


/* Línea decorativa superior */

.mechanical-assistance::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--accent);

}


/* =========================================================
   ICONO
========================================================= */

.mechanical-icon {

  flex: 0 0 65px;

  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: rgba(11, 105, 245, 0.12);

  border: 1px solid rgba(11, 70, 245, 0.25);

  border-radius: 50%;

  font-size: 30px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;

}


.mechanical-assistance:hover .mechanical-icon {

  transform: rotate(-10deg) scale(1.05);

  background: rgba(11, 34, 245, 0.2);

}


/* =========================================================
   CONTENIDO
========================================================= */

.mechanical-content {

  flex: 1;

}


.mechanical-label {

  display: block;

  margin-bottom: 5px;

  color: var(--accent);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.5px;

}


.mechanical-content h3 {

  margin-bottom: 8px;

  color: var(--white);

  font-size: 21px;

  line-height: 1.3;

}


.mechanical-content p {

  max-width: 900px;

  margin: 0;

  color: #cbd5e1;

  font-size: 15px;

  line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  .mechanical-assistance {

    padding: 28px;

    gap: 20px;

  }

  .mechanical-content h3 {

    font-size: 19px;

  }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 500px) {

  .mechanical-assistance {

    flex-direction: column;

    text-align: center;

    padding: 30px 22px;

    gap: 18px;

    margin-top: 35px;

  }


  .mechanical-icon {

    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    font-size: 27px;

  }


  .mechanical-label {

    font-size: 11px;

  }


  .mechanical-content h3 {

    font-size: 18px;

    line-height: 1.4;

  }


  .mechanical-content p {

    font-size: 14px;

    line-height: 1.7;

  }

}