/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, sans-serif;
  color: #333;
}

/* Header Section */
header {
  background: linear-gradient(135deg, #03a539 0%, #f4e400 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.centrar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

.seguimiento-btn {
  background-color: #03a53a;
  color: #fff;
  height: 50px;
  padding: 0 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: Montserrat, sans-serif;
}

.social-links {
  display: flex;
  gap: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
}

.social-links i {
  font-size: 16px;
  color: #fff;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-info i {
  font-size: 16px;
  color: #03a53a;
}

/* Main Navigation */
nav {
  background-color: #fff;
  padding: 10px 20px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a.active {
  color: #03a53a;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-main {
  background: linear-gradient(135deg, #03a53a 0%, #03a53a 31%, #f5f5f5 31%, #f5f5f5 100%);
  position: relative;
  padding: 0;
  height: 80px;
  overflow: hidden;
}

.header-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #03a53a 0%, #03a53a 31%, transparent 31%);
  clip-path: polygon(0 0, 15% 0, 31% 100%, 0% 100%);
  z-index: 1;
}

.containerl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 2;
}

.flex-row {
  display: flex;
  width: 100%;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

#logo {
  flex: 0 0 auto;
  z-index: 3;
}

#logo a {
  display: block;
  padding: 10px 0;
}

#logo img {
  height: 60px;
  width: auto;
  max-width: 210px;
}

.flex-left {
  flex: 1;
}

.flex-right {
  flex: 0 0 auto;
}

.header-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 80px;
  align-items: center;
}

.header-nav li {
  position: relative;
  margin: 0 15px;
}

.nav-top-link {
  text-decoration: none;
  color: #03a53a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 25px 10px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.nav-top-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #03a53a;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-nav li:hover .nav-top-link {
  color: #f4e500;
}

.header-nav li:hover .nav-top-link::after {
  opacity: 1;
}

.header-nav li.active .nav-top-link {
  color: #f4e500;
}

.header-nav li.active .nav-top-link::after {
  opacity: 1;
}

/* Ocultar elementos móviles en desktop */
.show-for-medium {
  display: none;
}

.hide-for-medium {
  display: flex;
}

/* Responsive */
@media (max-width: 768px) {
  header{
    display: none;
  }
  .show-for-medium {
    display: flex;
  }

  .hide-for-medium {
    display: none;
  }

  .header-main::before {
    clip-path: polygon(0 0, 30% 0, 20% 100%, 0% 100%);
  }

  .header-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav .nav-icon a {
    color: white;
    font-size: 24px;
    padding: 10px;
    text-decoration: none;
  }

  .icon-menu::before {
    content: '☰';
  }
}

/* Ajuste para el logo en la zona roja */
.logo-left #logo {
  position: relative;
  z-index: 3;
}

.logo-left #logo a {
  filter: brightness(0) invert(1);
}


/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 70vh;
  background-color: #f9f9f9;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #f4e500, transparent);
  z-index: -1;
}

.hero-content {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 34px;
}

.hero-content span {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #03a53a;
  margin-bottom: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #03a53a;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #fff;
}

/* Call-to-Action Button */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  /* Agregado */
  font-family: Montserrat, sans-serif;
}

/* Flecha inicial (solo borde) */
.cta-button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #03a53a;
  transition: all 0.3s ease;
  z-index: 3;
  /* Cambiado de 1 a 3 */
}

/* Fondo rojo que se expande */
.cta-button::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #03a53a;
  transition: all 0.3s ease;
  z-index: -1;
  /* Este está bien */
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

/* Estado hover */
.cta-button:hover {
  color: white;
  padding-left: 35px;
}

.cta-button:hover::before {
  border-left-color: white;
  left: 10px;
}

.cta-button:hover::after {
  left: 0;
}

/* Footer WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999; /* Esta línea asegura que esté por encima de otros elementos */
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    flex: 1;
    width: 100%;
  }

  .hero-content {
    text-align: center;
  }
}

/* ACERCA EN PRINCIPAL */
.section-about {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

/* Elementos decorativos - Triángulos esquina superior derecha */
.decorative-triangles {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.triangle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-bottom: 80px solid #03a53a;
  opacity: 0.1;
}

.triangle-2 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-bottom: 60px solid #03a53a;
  opacity: 0.15;
}

.triangle-3 {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-bottom: 40px solid #03a53a;
  opacity: 0.2;
}

/* Elementos decorativos - Triángulos esquina inferior izquierda */
.decorative-triangles-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.triangle-left-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-right: 120px solid transparent;
  border-top: 70px solid #03a53a;
  opacity: 0.1;
}

.triangle-left-2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 0;
  height: 0;
  border-right: 80px solid transparent;
  border-top: 50px solid #03a53a;
  opacity: 0.15;
}

/* Contenido principal */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0px;
  position: relative;
  z-index: 2;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 40px 0;
  text-align: center;
}

/* Navegación de sección */
.section-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.nav-arrow {
  color: #03a53a;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
}

.nav-arrow:hover {
  opacity: 0.7;
}

.section-title {
  color: #03a53a;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* Contenido de texto */
.section-content {
  max-width: 800px;
  margin-bottom: 15px;
}

.section-description {
  color: #333;
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 30px;
  font-weight: 400;
}

.highlight-text {
  color: #03a53a;
  font-weight: bold;
}

/* Imagen del camión - ANCHO COMPLETO */
.truck-container {
  width: 100%;
  margin: 0;
  position: relative;
  margin-top: 25px;
}

.truck-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  /* Opcional: limita la altura máxima */
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 40px 0 0 0;
  }

  .section-title {
    font-size: 20px;
  }

  .section-description {
    font-size: 14px;
  }

  .triangle-1 {
    border-left-width: 100px;
    border-bottom-width: 60px;
  }

  .triangle-2 {
    border-left-width: 70px;
    border-bottom-width: 40px;
  }

  .triangle-3 {
    border-left-width: 50px;
    border-bottom-width: 30px;
  }

  .triangle-left-1 {
    border-right-width: 80px;
    border-top-width: 50px;
  }

  .triangle-left-2 {
    border-right-width: 60px;
    border-top-width: 35px;
  }
}

/* Servicios */

.servicios-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 45px;
}

.servicios-title {
  color: #03a53a;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  font-family: Montserrat, 'sans serif';
}

.servicios-title::after {
  content: '▶';
  margin-left: 10px;
  font-size: 1.8rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.servicio-card {
  position: relative;
  height: 250px;
  border-radius: 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.1) 0%, rgba(255, 59, 59, 0.05) 100%);
  z-index: 1;
  transition: all 0.3s ease;
}

.servicio-card:hover::before {
  background: linear-gradient(135deg, #03a539a5 0%, #f4e400ae 100%);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.servicio-card:hover .card-background .cta-button {
  transform: scale(1.05);
}

.servicio-card:hover .cta-button {
  color: #fff;
}

.paqueteria {
  background-image: url('./content/servicios1.png');
}

.almacenaje {
  background-image: url('./content/servicios2.png');
}

.carga-especializada {
  background-image: url('./content/servicios3.png');
}

.carga-completa {
  background-image: url('./content/servicios4.png');
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transition: all 0.3s ease;
}

.servicio-card:hover .card-content {
  color: white;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: #03a53a;
  transition: fill 0.3s ease;
}

.servicio-card:hover .card-icon svg {
  fill: white;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.servicio-card:hover .card-title {
  color: white;
}

.card-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.servicio-card:hover .card-description {
  opacity: 1;
  transform: translateY(0);
  color: white;
}



.servicio-card:hover .card-button {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }

  .servicios-title {
    font-size: 2rem;
  }
}

/* FLota */

.flota-container {
            
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 70vh;
            background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
            padding: 40px 20px;
        }

        .btnflo{
          color: #fff;
        }

        .content-left {
            padding: 40px;
            z-index: 2;
        }

        .flota-title {
            color: white;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            line-height: 34px;
        }

        .flota-title::after {
            content: '▶';
            color: #03a53a;
            margin-left: 15px;
            font-size: 2.5rem;
        }

        .flota-description {
            color: #E0E0E0;
            font-size: 13px;
            line-height: 21px;
            margin-bottom: 40px;
            text-align: justify;
            font-weight: 400;
        }

        
        .content-right {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-background {
            position: absolute;
            width: 450px;
            height: 450px;
            background: #03a53a;
            border-radius: 50%;
            z-index: 1;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.9;
            }
            50% {
                transform: scale(1.05);
                opacity: 1;
            }
        }

        .trucks-image {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 600px;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        /* Decorative elements */
        .geometric-accent {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            border: 3px solid #03a53a;
            transform: rotate(45deg);
            opacity: 0.3;
        }

        .geometric-accent::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 40px;
            height: 40px;
            background: #03a53a;
            transform: rotate(-45deg);
        }
 /* Responsive design */
        @media (max-width: 1024px) {
            .flota-container {
                grid-template-columns: 1fr;
                gap: 0px;
                text-align: center;
            }

            .content-right {
                order: -1;
                height: 400px;
            }

            .flota-title {
                font-size: 2.5rem;
            }

            .circle-background {
                width: 350px;
                height: 350px;
            }

            .trucks-image {
                max-width: 450px;
            }
        }

        @media (max-width: 768px) {
            .flota-container {
                padding: 20px;
            }

            .content-left {
                padding: 20px;
            }

            .flota-title {
                font-size: 2rem;
            }

            .flota-description {
                font-size: 1rem;
            }

            .circle-background {
                width: 280px;
                height: 280px;
            }

            .content-right {
                height: 300px;
            }
        }


        /* DESTINOS */

         .destinos-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1px 1fr;
            gap: 60px;
            align-items: start;
            padding: 50px 30px;
        }

        .map-section {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 40px;
        }

        .peru-map {
            width: 100%;
            max-width: 400px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
        }

        .divider {
            width: 1px;
            height: 400px;
            background: linear-gradient(to bottom, transparent, #b5b4b4 20%, #908f8f 80%, transparent);
        }

        .content-section {
            padding: 40px 20px;
        }

        .destinos-title {
            color: #03a53a;
            font-size: 26px;
            font-weight: 700;
            line-height: 34px;
            margin-bottom: 30px;
            position: relative;
        }

        .destinos-title::after {
            content: '▶▶';
            margin-left: 15px;
            font-size: 2rem;
        }

        .destinos-description {
            color: #666;
            font-size: 13px;
            line-height: 21px;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .destinos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px 40px;
            margin-bottom: 40px;
        }

        .destino-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            font-size: 1rem;
            font-weight: 500;
            padding: 8px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .destino-item:hover {
            color: #03a53a;
            transform: translateX(5px);
        }

        .destino-item::before {
            content: '▶';
            color: #03a53a;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .destino-item:hover::before {
            transform: translateX(3px);
        }

        .separator-line {
            width: 100%;
            height: 1px;
            background: linear-gradient(to bottom, transparent, #b5b4b4 20%, #908f8f 80%, transparent);
            margin: 30px 0;
        }

        /* Map pins animation */
        .map-pin {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #03a53a;
            border-radius: 50%;
            animation: pulse-pin 2s ease-in-out infinite;
        }

        @keyframes pulse-pin {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: #03a53a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px #099029;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .destinos-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .divider {
                display: none;
            }

            .destinos-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .destinos-container {
                padding: 20px;
            }

            .content-section {
                padding: 20px 0;
            }

            .destinos-title {
                font-size: 26px;
            }

            .destinos-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .peru-map {
                max-width: 300px;
            }
        }

        /* CONTACTO */

        .form-container {
            padding: 60px 50px;
            background: white;
            display: flex;
        }

        .contact-title {
            color: #03a53a;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 26px;
        }

        .title-arrows {
            color: #03a53a;
            margin: 0 10px;
            font-size: 1.8rem;
        }

        .contact-subtitle {
            text-align: center;
            color: #666;
            font-size: 1rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .contact-highlight {
            color: #03a53a;
            font-weight: bold;
        }

        .form-intro {
            color: #03a53a;
             font-size: 16px;
            font-weight: 700;
            line-height: 26px;
            margin: 30px 0 10px 0;
        }

        .form-desc {
            color: #666;
            font-size: 13px;
            font-weight: 400;
            line-height: 21px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 2px solid #ddd;
            background: transparent;
            font-size: 1rem;
            color: #333;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: #03a53a;
        }

        .form-input::placeholder {
            color: #999;
            font-size: 14px;
        }

        .form-textarea {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 2px solid #ddd;
            background: transparent;
            font-size: 1rem;
            color: #333;
            resize: none;
            height: 80px;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-textarea:focus {
            outline: none;
            border-bottom-color: #03a53a;
        }

        .form-textarea::placeholder {
            color: #999;
            font-size: 0.95rem;
        }

        .checkbox-container {
            display: flex;
            align-items: flex-start;
            margin: 25px 0;
            gap: 10px;
        }

        .checkbox-input {
            width: 18px;
            height: 18px;
            accent-color: #03a53a;
            margin-top: 2px;
        }

        .checkbox-label {
            font-size: 14px;
            color: #666;
            line-height: 20px;
            font-weight: 400;
        }

        .checkbox-link {
            color: #03a53a;
            text-decoration: none;
            line-height: 20px;
            font-weight: 500;
            font-size: 14px;
        }

        .checkbox-link:hover {
            text-decoration: underline;
        }

        .recaptcha-container {
            margin: 25px 0;
            display: flex;
            justify-content: flex-start;
        }

        .recaptcha-placeholder {
            width: 300px;
            height: 60px;
            border: 2px solid #ddd;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9f9f9;
            color: #666;
            font-size: 14px;
        }

        .submit-button {
            width: 100%;
            background: #03a53a;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            margin: 20px 0;
        }

        .submit-button:hover {
            background: #099029;
        }

        .opinion-link {
            color: #03a53a;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .opinion-link::before {
            content: "▷";
            margin-right: 8px;
            font-size: 1.1rem;
        }

        .opinion-link:hover {
            color: #099029;
        }

        .truck-container-2 {
            
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .truck-placeholder {
            width: 100%;
            height: 330px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #666;
            text-align: center;
            padding: 5px;
        }

        .container-contact2{
          display: flex;
          
        }

        .content-wrapper2{
          display: flex;
          flex-direction: column;
          align-items: center;
          padding: 80px 0 40px 0;
          text-align: center;
        }

        /* footer */
        .footer-container {
             /*background: linear-gradient(135deg, #f4e500 0%, #03a53a 100%);*/
            background: linear-gradient(135deg, #03a539 0%, #f4e400 100%);
            color: #cccccc;
            padding: 40px 0 0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: auto 1fr auto auto;
            align-items: center;
            gap: 40px;
            margin-bottom: 30px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logof {
            width: 80px;
            height: 80px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #3a3a3a;
            font-size: 24px;
        }

        .company-info h3 {
            color: #ffffff;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .company-info p {
            color: #cccccc;
            font-size: 16px;
        }

        .reclamaciones {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #cccccc;
        }

        .reclamaciones-icon {
            width: 40px;
            height: 30px;
            background-color: #666;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .contact-infof {
            text-align: left;
        }

        .contact-infof h4 {
            color: #03a53a;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .contact-infof p {
            color: #fff;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .email-info h4 {
            color: #03a53a;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .email-info p {
            color: #fff;
            font-size: 14px;
        }

        .social-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .social-text {
            color: #fff;
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            background-color: #03a53a;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        .social-icon:hover {
            background-color: #099029;
        }

        .footer-divider {
            height: 1px;
            background-color: #03a539;
            margin: 20px 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            font-size: 12px;
            color: #999;
        }

        .footer-links {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #f5f5f5;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: #cccccc;
        }

        .footer-links span {
            color: #fff;
        }

        .footer-red {
            background-color: #03a53a;
            padding: 15px 0;
            text-align: center;
        }

        .footer-red-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            color: white;
            font-size: 14px;
        }

        .footer-red a {
            color: white;
            text-decoration: none;
        }

        @media (max-width: 974px) {
            .con2imgco{
              display: none;
            }
          }

         @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .footer-red-content {
                flex-direction: column;
                gap: 10px;
            }
        }








        /* ============= RESPONSIVE CSS ADICIONAL ============= */

/* Breakpoints principales */
/* xs: 0-575px (móviles pequeños) */
/* sm: 576-767px (móviles grandes) */
/* md: 768-991px (tablets) */
/* lg: 992-1199px (desktop pequeño) */
/* xl: 1200px+ (desktop grande) */

/* ============= HEADER RESPONSIVE ============= */
@media (max-width: 991px) {
  .centrar {
    padding: 0 15px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 5px;
    font-size: 11px;
  }
  
  .social-links {
    display: none;
  }
}

@media (max-width: 767px) {
  header {
    height: auto;
    min-height: 40px;
    padding: 5px 0;
  }
  
  .centrar {
    flex-direction: column;
    gap: 10px;
  }
  
  .seguimiento-btn {
    height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }
  
  .contact-info {
    font-size: 10px;
  }
  
  .contact-info span {
    gap: 3px;
  }
}

@media (max-width: 575px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }
}

/* ============= NAVEGACIÓN PRINCIPAL RESPONSIVE ============= */
@media (max-width: 991px) {
  .header-main {
    height: 70px;
  }
  
  .header-inner {
    height: 70px;
    background-color: #03a53a;
  }
  
  .header-nav {
    height: 70px;
  }
  
  #logo img {
    height: 50px;
  }
  
  .nav-top-link {
    padding: 20px 8px;
    font-size: 12px;
  }
  
  .header-nav li {
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .header-main {
    height: 60px;
  }
  
  .header-inner {
    height: 60px;
  }
  
  #logo img {
    height: 40px;
  }
  
  .containerl {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .header-main{
    background-color: #03a53a;
  }
  
  #logo img {
    height: 35px;
  }
}

/* ============= HERO SECTION RESPONSIVE ============= */
@media (max-width: 991px) {
  .hero-section {
    height: 60vh;

  }
  
  .hero-content h1 {
    font-size: 22px;
    line-height: 30px;
  }
  
  .hero-content span {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    min-height: 50vh;
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-section::before {
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #03a53a, transparent);
  }
  
  .hero-content {
    order: 2;
    padding: 30px 20px;
  }
  
  .hero-image {
    order: 1;
    width: 100%;
    height: 250px;
  }
  
  .hero-content h1 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  
  .hero-content span {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    min-height: 40vh;
  }
  
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-content h1 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .hero-content span {
    font-size: 18px;
  }
  
  .hero-image {
    height: 200px;
  }
}

/* ============= CTA BUTTON RESPONSIVE ============= */
@media (max-width: 767px) {
  .cta-button {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .cta-button:hover {
    padding-left: 30px;
  }
}

@media (max-width: 575px) {
  .cta-button {
    padding: 8px 15px;
    font-size: 11px;
  }
  
  .cta-button:hover {
    padding-left: 25px;
  }
}

/* ============= SECCIÓN ABOUT RESPONSIVE ============= */
@media (max-width: 991px) {
  .section-about {
    min-height: auto;
  }
  
  .content-wrapper {
    padding: 60px 20px 30px 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .section-description {
    font-size: 12px;
    line-height: 19px;
  }
}

@media (max-width: 767px) {
  .content-wrapper {
    padding: 40px 15px 20px 15px;
  }
  
  .section-nav {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .nav-arrow {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 18px;
  }
  
  .section-content {
    max-width: 100%;
  }
  
  .truck-container {
    margin-top: 20px;
  }
  
  .truck-image {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .content-wrapper {
    padding: 30px 0px 15px 0px;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .section-description {
    font-size: 11px;
    line-height: 17px;
    margin: 0 10px 0 10px;
  }
  
  .truck-image {
    max-height: 250px;
  }
}

/* ============= SERVICIOS RESPONSIVE ============= */
@media (max-width: 991px) {
  .servicios-container {
    max-width: 900px;
    padding-bottom: 35px;
  }
  
  .servicios-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .servicios-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }
  
  .servicio-card {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .servicios-container {
    padding: 20px 15px 35px 15px;
  }
  
  .servicios-title {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .servicio-card {
    height: 200px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .servicios-container {
    padding: 20px 15px 35px 15px;
  }
  
  .servicios-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .servicios-title::after {
    font-size: 1.5rem;
  }
  
  .servicio-card {
    height: 180px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .card-description {
    font-size: 0.8rem;
  }
}

/* ============= FLOTA RESPONSIVE ============= */
@media (max-width: 991px) {
  .flota-container {
    max-width: 100%;
    gap: 0px;
    padding: 30px 20px;
  }
  
  .content-left {
    padding: 30px;
  }
  
  .flota-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  
  .flota-description {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 30px;
  }
  
  .content-right {
    height: 400px;
  }
  
  .circle-background {
    width: 350px;
    height: 300px;
  }
  
  .trucks-image {
    max-width: 450px;
  }
}

/* ============= DESTINOS RESPONSIVE ============= */
/* @media (max-width: 991px) {
  .destinos-container {
    max-width: 100%;
    padding: 40px 20px;
  }
  
  .content-section {
    padding: 30px 15px;
  }
  
  .destinos-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 25px;
  }
  
  .destinos-description {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 30px;
  }
  
  .destinos-grid {
    gap: 15px 30px;
    margin-bottom: 30px;
  }
  
  .destino-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .destinos-container {
    padding: 30px 15px;
  }
  
  .content-section {
    padding: 20px 0;
  }
  
  .destinos-title {
    font-size: 20px;
    text-align: center;
  }
  
  .destinos-title::after {
    font-size: 1.5rem;
  }
  
  .destinos-description {
    text-align: center;
  }
  
  .destinos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }
  
  .peru-map {
    max-width: 280px;
  }
}

@media (max-width: 575px) {
  .destinos-container {
    padding: 20px 10px;
  }
  
  .destinos-title {
    font-size: 18px;
  }
  
  .destinos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .destino-item {
    font-size: 0.85rem;
    justify-content: center;
  }
  
  .peru-map {
    max-width: 250px;
  }
} */

/* ============= CONTACTO RESPONSIVE ============= */
@media (max-width: 991px) {
  .formulario-contacto{
    display: flex;
    flex-direction: column;
    gap: 0px !important;
  }
  .form-container {
    padding: 40px 30px;
  }
  
  .container-contact2 {
    flex-direction: column;
  }
  
  .truck-container-2 {
    order: -1;
    margin-bottom: 0px;
  }
  
  .truck-placeholder {
    height: 250px;
    margin-bottom: -50px;
    margin-top: -50px;
  }

}

@media (max-width: 767px) {
  .form-container {
    padding: 30px 20px;
  }
  
  .contact-title {
    font-size: 14px;
    line-height: 22px;
  }
  
  .title-arrows {
    font-size: 1.5rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
  
  .form-intro {
    font-size: 14px;
    line-height: 22px;
  }
  
  .form-desc {
    font-size: 12px;
    line-height: 19px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-input,
  .form-textarea {
    font-size: 0.9rem;
  }
  
  .form-input::placeholder,
  .form-textarea::placeholder {
    font-size: 13px;
  }
  
  .checkbox-label {
    font-size: 13px;
  }
  
  .checkbox-link {
    font-size: 13px;
  }
  
  .recaptcha-placeholder {
    width: 100%;
    max-width: 300px;
  }
  
  .submit-button {
    font-size: 13px;
  }
  
  .truck-placeholder {
    height: 200px;
    font-size: 1rem;
    margin-bottom: -50px;
    margin-top: -50px;
  }
}

@media (max-width: 575px) {
  .content-wrapper2 {
    padding: 60px 15px 30px 15px;
  }
  
  .form-container {
    padding: 20px 15px;
  }
  
  .contact-title {
    font-size: 13px;
    line-height: 20px;
  }
  
  .title-arrows {
    font-size: 1.3rem;
    margin: 0 5px;
  }
  
  .contact-subtitle {
    font-size: 0.85rem;
  }
  
  .form-intro {
    font-size: 13px;
    line-height: 20px;
  }
  
  .form-desc {
    font-size: 11px;
    line-height: 17px;
  }
  
  .checkbox-container {
    gap: 8px;
  }
  
  .checkbox-input {
    width: 16px;
    height: 16px;
  }
  
  .checkbox-label,
  .checkbox-link {
    font-size: 12px;
    line-height: 18px;
  }
  
  .recaptcha-placeholder {
    font-size: 12px;
  }
  
  .submit-button {
    padding: 12px 25px;
    font-size: 12px;
  }
  
  .opinion-link {
    font-size: 0.85rem;
  }
  
  .truck-placeholder {
    height: 370px;
    font-size: 0.9rem;
    margin-bottom: -50px;
    margin-top: -50px;
  }
}

/* ============= FOOTER RESPONSIVE ============= */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .logo-section {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .contact-infof,
  .email-info {
    text-align: center;
  }
  
  .social-section {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .footer-container {
    padding: 30px 0 0;
  }
  
  .footer-content {
    padding: 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
  
  .logo-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .logof {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .company-info h3 {
    font-size: 20px;
  }
  
  .company-info p {
    font-size: 14px;
  }
  
  .contact-infof h4,
  .email-info h4 {
    font-size: 14px;
  }
  
  .contact-infof p,
  .email-info p {
    font-size: 12px;
  }
  
  .social-text {
    font-size: 12px;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .footer-bottom {
    font-size: 11px;
    padding-bottom: 15px;
  }
  
  .footer-links {
    gap: 3px;
  }
  
  .footer-red {
    padding: 12px 0;
  }
  
  .footer-red-content {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .footer-main {
    gap: 20px;
  }
  
  .logof {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .company-info h3 {
    font-size: 18px;
  }
  
  .company-info p {
    font-size: 13px;
  }
  
  .reclamaciones {
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }
  
  .reclamaciones-icon {
    width: 35px;
    height: 25px;
    font-size: 10px;
  }
  
  .social-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links {
    justify-content: center;
    text-align: center;
  }
  
  .footer-red-content {
    font-size: 11px;
    gap: 8px;
  }
}

/* ============= ELEMENTOS FLOTANTES RESPONSIVE ============= */
@media (max-width: 767px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    left: 15px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .whatsapp-icon {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
    font-size: 18px;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 10px;
    font-size: 16px;
  }
}

/* ============= UTILIDADES RESPONSIVE ============= */
.text-center-mobile {
  @media (max-width: 767px) {
    text-align: center !important;
  }
}

.hide-mobile {
  @media (max-width: 767px) {
    display: none !important;
  }
}

.show-mobile {
  display: none !important;
  @media (max-width: 767px) {
    display: block !important;
  }
}

.full-width-mobile {
  @media (max-width: 767px) {
    width: 100% !important;
  }
}

/* ============= SCROLL HORIZONTAL PREVENTION ============= */
* {
  max-width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

/* ============= TOUCH IMPROVEMENTS ============= */
@media (hover: none) and (pointer: coarse) {
  .cta-button:hover,
  .nav-top-link:hover,
  .servicio-card:hover,
  .destino-item:hover,
  .social-icon:hover,
  .footer-links a:hover {
    /* Resetear efectos hover en dispositivos táctiles */
  }
  
  /* Mejorar área de toque */
  .nav-top-link,
  .cta-button,
  .social-icon,
  .checkbox-input,
  .submit-button {
    min-height: 20px;
    min-width: 20px;
  }
}