/* --- ESTILOS PARA LA SECCIÓN DE DETALLES --- */

/* Tarjeta de Detalles: contenedor principal */
.details-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 4rem;
}

/* Imagen dentro de la tarjeta */
.details-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

/* Contenido de texto de la tarjeta */
.details-text {
  padding: 2.5rem;
}

.details-text .position {
  font-style: italic;
  font-size: 1rem;
}

/* Lista de Colegios en Columnas */
.school-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  column-count: 2;
  column-gap: 30px;
}

@media (max-width: 767px) {
  .school-list {
    column-count: 1;
  }
}

.school-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
}

.school-list li::before {
  content: '✔';
  color: #007bff;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Icono social */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #007bff;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.1);
}

/* --- Formulario de Contacto Moderno --- */
.contact-form-modern {
  background: #fff;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-modern .form-control {
  height: 52px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 15px;
}

.contact-form-modern .form-control:focus {
  background: #fff;
  border-color: #007bff;
  box-shadow: none;
}

.contact-form-modern textarea.form-control {
  height: auto;
}

.contact-form-modern .btn-primary {
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.contact-form-modern .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}