/* CONTENEDOR GENERAL */
.directorio-section{
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    background: transparent;
}

/* Título principal */
.titulo{
    font-size: 48px;
    font-weight: 800;
    color: #2f4fa2;
    margin-bottom: 40px;
    padding: 60px 20px;
}

#contenidoExcel{
  padding: 20px 10px 40px;
  background: transparent !important;
}
.directorio-grid{
  display: grid;
  grid-template-columns: repeat(2, 500px);
  gap: 25px;
  justify-content: center;
}

.card-directorio{
  display: flex;
  gap: 15px;
}

.nombre{
  font-size: 18px;
  font-weight: 700;
  color: #2f4fa2;
}

.linea{
  height: 2px;
  margin: 6px 0;
}

.linea.azul{ background:#2f4fa2; }
.linea.naranja{ background:#f39c12; }

.info{
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}

/* PUESTO */
.puesto{
  font-size: 13px;
  color: #333;
}

/* ÁREA */
.area{
  font-size: 13px;
  color: #333;
}

/* CONTACTO */
.contacto{
   font-size: 12px;
   color: #333;
   text-align: left;   /* 👈 clave */
   display: block;
   width: 100%;
   line-height: 1.4;
   margin-top: 4px;

}
/* ICONO */
.icono{
  width: 55px;
  height: 55px;
  border-radius: 18px;
  position: relative;
  flex-shrink: 0;
}

/* cabeza */
.icono::before{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* cuerpo */
.icono::after{
  content: "";
  position: absolute;
  width: 26px;
  height: 14px;
  background: white;
  border-radius: 10px 10px 0 0;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* colores */
.icono.azul{ background:#2f4fa2; }
.icono.naranja{ background:#f39c12; }

/* TEXTO */
.info{
  font-family: 'Montserrat', sans-serif;
}

/* NOMBRE */
.nombre{
  font-weight: 700;
  color: #2f4fa2;
  font-size: 14px;
}

/* PUESTO */
.puesto{
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

/* DATOS */
.datos{
  font-size: 11px;
  color: #777;
  margin-top: 4px;
}

.card-directorio{
  transition: all .2s ease;
}

.card-directorio:hover{
  transform: translateY(-2px);
  border-color: #2f4fa2;
}

#contenidoExcel{
  display: block !important;
}

.directorio-grid{
  display: grid !important;
}

#contenidoExcel{
  display: flex;
  justify-content: center;
  background: transparent !important;
}

.directorio-grid{
  display: grid;
  grid-template-columns: repeat(2, 500px); /* tamaño controlado */
  gap: 20px;
  justify-content: center;
}

.correo{
  color: #f39c12;
  font-weight: 600;
  font-size: 12px;
}

.telefono{
  color: #444;
  font-size: 12px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .directorio-grid{
    grid-template-columns: 1fr;
  }
}