/* RESET Y BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2E5A;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #D4AF37;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-clientes,
.btn-tracking {
  background: #0A2E5A;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn-clientes:hover,
.btn-tracking:hover {
  background: #D4AF37;
  color: #0A2E5A;
}

.lang-selector {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.lang-btn {
  padding: 5px 10px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.lang-btn.active {
  background: #D4AF37;
  color: #0A2E5A;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0A2E5A;
}

/* HERO */
.hero {
  /*background: linear-gradient(135deg, #0A2E5A 0%, #1e40af 100%);*/
  background: linear-gradient(rgba(10,37,64,0.8), rgba(10,37,64,0.8)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1350&q=80');
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #D4AF37;
  color: #0A2E5A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #fff;
  color: #0A2E5A;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #0A2E5A;
  transform: translateY(-2px);
}

/* SERVICES */
.services {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #0A2E5A;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f5f7fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid #D4AF37;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon {
  font-size: 2.5rem;
  color: #0A2E5A;
  margin-bottom: 15px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #0A2E5A;
  font-size: 1.3rem;
}

.service-card ul {
  list-style: none;
  margin: 15px 0;
}

.service-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.service-card ul li:before {
  content: "•";
  color: #D4AF37;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.benefit {
  font-style: italic;
  color: #D4AF37;
  margin-top: 15px;
  font-size: 0.9rem;
}

/* TRUST */
.trust {
  padding: 60px 0;
  background-color: #f5f7fa;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-text {
  flex: 2;
  min-width: 300px;
}

.trust-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.trust-badge {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #0A2E5A;
  color: white;
  border-radius: 5px;
  margin-bottom: 15px;
}

.map {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #D4AF37;
  color: #0A2E5A;
  border-radius: 5px;
}

/* FOOTER */
footer {
  background: #0A2E5A;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #D4AF37;
}

.footer-col p,
.footer-col a {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #D4AF37;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

/* FORMULARIO */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input,
form select,
form textarea {
  padding: 10px;
  border: 1px solid #555;
  border-radius: 5px;
  background: #0A2E5A;
  color: white;
  font-family: inherit;
}

form button {
  margin-top: 5px;
}

/* QUICK SERVICES BUTTONS */
.quick-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-quick {
  background: #D4AF37;
  color: #0A2E5A;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-align: center;
}

.btn-quick:hover {
  background: #fff;
  color: #0A2E5A;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: #aaa;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  color: #333;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

#trackingNumber {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    width: 100%;
    margin: 15px 0;
  }

  .nav-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu li a {
    padding: 8px 12px;
  }

  .header-right {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .trust-content {
    flex-direction: column;
  }

  .trust-badge {
    width: 100%;
  }
}

/* Estilos para el nuevo logo en el header */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* Mantiene el color del texto original */
}

.header-logo-img {
    height: 45px;       /* Ajusta la altura según prefieras */
    width: auto;        /* Mantiene la proporción */
    margin-right: 10px; /* Espacio entre el logo y el nombre */
}

/* Opcional: Ajuste para móviles */
@media (max-width: 768px) {
    .header-logo-img {
        height: 35px;
    }
}