/* Diseño general */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #e3d5ca;
  color: #2c2c2c;
  font-family: "Oswald", sans-serif;
}

/* Contenedor principal */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Sección izquierda: texto */
.text-section {
  flex: 1;
  background-color: #6d1f1f;
  /* color: #000; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.2);
}

.text-section h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  color: rgb(134, 134, 10);
  box-shadow: inset -5px 10px 20px rgba(32, 34, 16, 0.2);
  border-radius: 10px;
}

.text-section p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 600px;
  color: black;
}

/* Sección derecha: imágenes */
.image-section {
  flex: 1;
  background-color: #636402b4;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  box-shadow: inset -5px 0 10px rgba(230, 6, 6, 0.2);
}

.image-section img {
  width: 60%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-section img:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 3px 3px rgb(121, 7, 3);
}

.educuna{
    padding-top: 80px;
}

/* ===================== */
/* 📱 TABLET */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    min-height: auto;
    padding-top: 220px;
  }

  .image-section {
    flex-direction: row;
  }

  .image-section img {
    width: 48%;
  }
}

/* ===================== */
/* 📱 CELULAR */
@media (max-width: 600px) {
  .text-section {
    padding: 2rem 1.2rem;
  }

  .image-section {
    flex-direction: column;
  }

  .image-section img {
    width: 90%;
  }
}