/* 1-rastreo.css */

.rastreo-seccion {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.rastreo-titulo {
  font-size: 2.5rem;
  color: #0d47a1;
  font-weight: 700;
  margin-bottom: 20px;
}

.rastreo-descripcion {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.rastreo-beneficios {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.rastreo-beneficio {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.rastreo-beneficio:hover {
  transform: translateY(-5px);
}

.rastreo-beneficio i {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

.rastreo-beneficio h4 {
  font-size: 1.2rem;
  color: #0d47a1;
  margin-bottom: 10px;
}

.rastreo-beneficio p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0d47a1;
  font-weight: 1000;
  font-size: 1.1em;
}
