/* Ícono en el menú */
.icono-menu {
  height: 18px;              /* tamaño uniforme */
  margin-right: 6px;         /* espacio entre logo y texto */
  vertical-align: middle;
}

/* Sección Colectivo */
#colectivo {
  padding: 30px;
nav {
  background: transparent;   /* elimina el fondo negro */
}

nav a {
  color: #0044cc;            /* azul institucional */
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}


.galeria img {
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.audios, .podcasts {
  text-align: center;
  margin-top: 20px;
}

.podcasts ul {
  list-style: none;
  padding: 0;
}

.podcasts li {
  margin: 10px 0;
}

/* Navegación */
nav a {
  color: white;
  margin: 0 12px;            /* menos separación */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

/* Redes sociales */
.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  margin: 8px;               /* menos separación */
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.icono-red {
  height: 20px;              /* tamaño más visible pero no gigante */
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
}
#menu-lateral {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px;
}

#menu-lateral button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px 0;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  width: 200px;
  text-align: left;
}

#menu-lateral button:hover {
  background: #cc5200;
}
#menu-lateral {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px;
}

#menu-lateral button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px 0;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  width: 220px;
  text-align: left;
  font-size: 14px;
}

#menu-lateral button:hover {
  background: #cc5200;
}
#menu-lateral {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0 0 0;   /* espacio arriba */
  padding-left: 10px;
}

#pie {
  background: #ff6600;       /* color institucional */
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

#pie a {
  color: #fff;
  text-decoration: underline;
}

#pie a:hover {
  color: #000;               /* contraste al pasar el mouse */
}
#logo {
  max-height: 50px;   /* altura máxima */
  max-width: 150px;    /* ancho máximo */
  display: block;
  margin: 0 auto;      /* centra el logo */
}

/* Ajuste responsive para móviles */
@media (max-width: 600px) {
  #logo {
    max-height: 70px;
    max-width: 150px;
  }
}

#menu-lateral button {
  background: linear-gradient(135deg, #ff6600, #ff9933); /* degradado más claro */
  color: #fff;
  border: none;
  padding: 14px 20px;
  margin: 10px 0;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px; /* botones redondeados tipo cápsula */
  width: 260px;
  text-align: center; /* texto centrado */
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#menu-lateral button:hover {
  background: linear-gradient(135deg, #ff9933, #ff6600); /* invierte el degradado */
  transform: translateY(-3px); /* efecto de levantar el botón */
  box-shadow: 0 6px 12px rgba(0,0,0,0.35);
}

#menu-lateral button:active {
  transform: scale(0.95);
}
.nota {
  background: #fff3e0;             /* fondo suave */
  border-left: 5px solid #ff6600;  /* barra institucional */
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.galeria-inicio {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.galeria-inicio img {
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  max-width: 220px;
}
.tarjetas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tarjeta {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  max-width: 250px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-5px);
}

.tarjeta img {
  width: 50%;
  height: 90px;        /* altura fija */
  object-fit: cover;    /* recorta proporcionalmente */
  border-radius: 5px;
  margin-bottom: 5px;
}




.tarjeta h3 {
  color: #ff6600;
  margin: 10px 0;
}

.tarjeta p {
  font-size: 14px;
  line-height: 1.5;
}


