/* CSS Document */

/* Estilos específicos de la página Nosotros */
.nosotros-section {
  background: #f8f9fb;
  padding: 80px 0;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.nosotros-section h1 {
  text-align: center;
  font-weight: 700;
  font-size: 38px;
  color: #007bff;
  margin-bottom: 40px;
}

.nosotros-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: #444;
  margin-bottom: 60px;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.nosotros-card {
  background: white;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nosotros-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.nosotros-card h3 {
  color: #007bff;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.nosotros-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.nosotros-cobertura {
  margin-top: 80px;
  text-align: center;
}

.nosotros-cobertura h2 {
  color: #007bff;
  font-size: 28px;
  margin-bottom: 15px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.tag {
  background: #007bff;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.equipo-section {
  margin-top: 80px;
  text-align: center;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.equipo-card {
  background: #0000F5;
  border-radius: 14px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.equipo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.equipo-card h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.equipo-card span {
  font-size: 14px;
  color: #666;
}

/* --- Sección de Documentos --- */

.documentos-section {
  margin-top: 90px;
  text-align: center;
}

.documentos-section h2 {
  color: #00a3ff;
  font-size: 28px;
  margin-bottom: 10px;
}

.documentos-section .section-desc {
  color: #b3c1da;
  margin-bottom: 35px;
}

.documentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-content: center;
}

.documento-card {
  background: #0021E8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 25px;
  color: #e5e7eb;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.documento-card:hover {
  background: rgba(0, 163, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 163, 255, 0.3);
}

.documento-card .icon {
  font-size: 45px;
  color: #22d3ee;
  margin-bottom: 12px;
}

.documento-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.documento-card span {
  font-size: 13px;
  color: #9db3d2;
}

.map-section { margin-top: 70px; }
.map-title { color: #00a3ff; text-align: center; margin-bottom: 14px; }
.map-wrap { position: relative; width: 100%; height: 380px; border-radius: 14px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

