/******************************* Tarjetas *******************************/
#directorio {
    background-image: url(../img/fondo.png);
    background-size: cover;
    background-position: center;
    padding: 4rem 50px;
}
/* Contenedor */
.grid-container {
    display: grid;
    /* grid-template-columns: repeat(5, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}
/* Tarjetas */
.grid-item {
    background-color: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}
.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 1px 1px 20px rgba(138, 137, 136, 0.8);
}
/* Imagen */
.grid-item img {
    width: 80%;
    height:300px;
    /* object-fit: cover; */
    border-radius: 50%;
    transition: transform 0.3s ease;
    border-bottom: 1px solid #dee2e6;
}
.grid-item:hover img {
    transform: scale(1.05);
}
/* Contenido */
.info-director {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.info-director h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
}
.cargo {
    font-size: 1rem;
    color: #3a506b;
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.contacto {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.4rem;
    word-wrap: break-word;
}
/* Enlaces */
.contacto a {
    color: #1d3557;
    text-decoration: none;
    font-weight: 500;
}
.contacto a:hover {
    text-decoration: underline;
}
/* Botón currículum */
.btn-cv {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.85rem;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-cv:hover {
    background-color: #3f3f3f;
    transform: scale(1.05);
}
/* Responsive */
@media (max-width: 768px) {
    #directorio {
        padding: 2rem 0px;
    }
}
/******************************* Modal de imagen *******************************/
/* .modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #f1f1f1;
} */
