.about-unified-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Fondo con opacidad */
.about-unified-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/custon/fondo 2.jpeg') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

/* Contenido principal */
.about-unified-section-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0px;
  gap: 40px;
}

/* Texto */
.text-content {
  max-width: 450px;
  flex: 1 1 400px;
}

.text-content h1 {
  color: white;
  font-size: 56px;
  font-family: 'dietherRound', sans-serif;
  margin-bottom: 15px;
  line-height: 1.2;
}

.text-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
  width: 100%;
}

/* Contenedor de imagen */
.image-wrapper {
  position: relative;
  max-width: 750px;
  width: 100%;
  background-color: white;
  padding: 10px;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Imagen principal del juego */
.main-game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Conejo decorativo */
.bunny {
  position: absolute;
  bottom: -70px;
  left: -90px;
  width: 200px;
  height: auto;
  z-index: 3;
}

/* Estilo para bunny en móviles */
.bunny-mobile {
  display: none;
  width: 120px;
  height: auto;
  margin: 20px auto 0;
}

/* -------------------- RESPONSIVE -------------------- */

/* Tablets grandes / pantallas medianas */
@media (max-width: 1200px) {
  .text-content h1 {
    font-size: 48px;
  }

  .text-content p {
    font-size: 16px;
    text-align: center;
  }

  .bunny {
    width: 180px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .about-unified-section-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-content {
    max-width: 90%;
    padding: 0;
  }

  .image-wrapper {
    max-width: 90%;
  }

  .bunny {
    display: none;
  }

  .bunny-mobile {
    display: block;
  }
}

/* Móviles grandes */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 15px;
  }

  .bunny-mobile {
    width: 100px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .text-content h1 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 14px;
  }

  .bunny-mobile {
    width: 80px;
  }

  .image-wrapper {
    padding: 8px;
    border-radius: 16px;
  }

  .main-game-image {
    border-radius: 16px;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .text-content h1 {
    font-size: 24px;
  }

  .text-content p {
    font-size: 13px;
  }

  .bunny-mobile {
    width: 70px;
  }
}
