body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0px;
}

/* Secciones */
.seccion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 40px 60px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fffbe6, #d9f0ff);
  box-shadow: 0 8px 20px rgb(224, 143, 197);
  margin-bottom: 60px;
  flex-wrap: wrap; /* responsive */
  transition: transform 0.2s;
}

.seccion:hover {
  transform: translateY(-5px);
}

/* Para invertir logo y texto en la segunda sección */
.seccion.reverse {
  flex-direction: row-reverse;
}

/* Texto */
.texto {
  flex: 1;
  min-width: 250px;
}

.texto h2 {
  color: #49a3df;
  margin-bottom: 15px;
  font-size: 30px;
}

.texto p {
  color: #555;
  line-height: 1.6;
  font-size: 20px;
  text-align: justify;
  padding: 0px 60px;
}

/* Logo */
.logo {
  flex: 1;
  text-align: center;
  min-width: 100px;
}

.logo img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
}


/* Responsivo para móviles */
@media screen and (max-width: 768px) {
  .seccion {
    flex-direction: column;
    text-align: center;
  }

  .seccion.reverse {
    flex-direction: column;
  }

  .texto h2 {
    font-size: 50px;
  }
}
