main{
  padding-bottom: 60px;
}
/* Contenedor utilitario si no lo tenías */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. Hero Section */
.about-hero {
  background-color: #f4f6f8; /* Gris muy suave */
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.about-hero h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.about-hero .subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* 2. Sección Nosotros (Grid Texto + Imagen) */
.about-content {
  padding: 40px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0044cc; /* Azul mecánico */
  position: relative;
}

.about-text h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #0044cc;
  margin-top: 10px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #333;
}

.check-list i {
  color: #28a745; /* Verde check */
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/3; /* Mantiene proporción */
}

/* 3. Sección Valores (Tarjetas) */
.values-section {
  background-color: #1a1a1a; /* Fondo oscuro */
  color: white;
  padding: 60px 0;
  margin: 60px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.value-card {
  padding: 20px;
  background: rgba(255,255,255,0.05); /* Transparencia sutil */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}

.value-card i {
  font-size: 2.5rem;
  color: #3498db; /* Azul claro */
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* 4. Sección Mapa */
.location-section {
  padding-bottom: 60px;
}

.location-header {
  text-align: center;
  margin-bottom: 30px;
}

.location-header h3 {
  font-size: 2rem;
  color: #1a1a1a;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

/* =====================
   SECCIÓN VALORES (Estilo Cards Profesionales)
===================== */
.values-section {
  padding: 5rem 0;
  background-color: #f0f2f5; /* Un gris muy suave para que las cards blancas resalten */
}

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

.value-card {
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px; /* Bordes bien redondeados */
  text-align: center;
  position: relative;
  overflow: hidden;
  
  /* Sombra suave inicial */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  
  /* Transición suave para el hover */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Para que todas las cards tengan la misma altura visual */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Efecto al pasar el mouse (Hover) */
.value-card:hover {
  transform: translateY(-12px); /* Se levanta */
  box-shadow: 0 20px 40px rgba(11, 85, 150, 0.15); /* Sombra azulada */
  border-bottom: 5px solid var(--brand-green); /* Detalle de color abajo */
}

/* Estilo del Icono */
.value-card i {
  font-size: 2.5rem;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  
  /* Círculo de fondo para el icono */
  background: rgba(11, 85, 150, 0.08);
  width: 90px;
  height: 90px;
  line-height: 90px; /* Centra verticalmente */
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.value-card:hover i {
  background-color: var(--brand-blue);
  color: #fff;
  transform: scale(1.1);
}

/* Títulos y Textos */
.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  font-weight: 700;
}

.value-card p {
  color: var(--muted); /* Gris azulado */
  font-size: 1rem;
  line-height: 1.7;
}

/* --- SECCIÓN UBICACIÓN CON DOS COLUMNAS --- */

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* El mapa un poco más ancho que la info */
  gap: 30px;
  align-items: stretch; /* Para que tengan la misma altura */
}

/* Estilo del Mapa */
.map-column iframe {
  box-shadow: var(--shadow-md);
  height: 100%; /* Ocupa todo el alto disponible */
}

/* Estilo de la Columna de Transporte */
.transport-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.transport-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  height: 100%;
}

.transport-card h4 {
  color: var(--brand-blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-card p {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* --- ESTILO DE LOS COLECTIVOS (BADGES) --- */
.bus-list {
  display: flex;
  flex-wrap: wrap; /* Si no entran, bajan a la siguiente linea */
  gap: 10px;
  margin-bottom: 20px;
}

.bus-badge {
  background-color: var(--brand-blue); /* Fondo Azul Sólido */
  color: white;
  min-width: 70px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 50px; /* Bordes circulares */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, background-color 0.2s;
  cursor: default;
}

.bus-badge:hover {
  transform: translateY(-3px);
  background-color: var(--brand-green); /* Se pone verde al pasar el mouse */
}

.extra-info small {
  color: var(--muted);
  font-style: italic;
}

/* RESPONSIVE: En celular, una columna debajo de la otra */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .map-column iframe {
    height: 300px; /* Altura fija en móvil */
  }
}

/* Responsive: Ajustes para móviles */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-hero h2 {
    font-size: 2rem;
  }
  
  .about-text {
    order: 2; /* Texto abajo en móvil */
  }
  
  .about-image {
    order: 1; /* Imagen arriba en móvil */
  }
}