<style>
  .flip-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }

  .flip-box {
    background-color: transparent;
    width: 250px;
    height: 320px;
    perspective: 1000px;
    border: 1px solid #01b8e9;
    border-radius: 25px;
  }

  .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 25px;
  }

  .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  }

  .flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Roboto", sans-serif;
  }

  .flip-box-front {
    background-image: url('IMAGEN_FRONT'); /* Reemplaza 'IMAGEN_FRONT' con la URL de tu imagen */
    background-size: cover;
    background-position: center;
    color: #545454;
  }

  .flip-box-back {
    background-color: #eeeeee;
    color: #545454;
    transform: rotateY(180deg);
  }

  .flip-box-content h1 {
    font-weight: 700;
    font-size: 42px;
    color: #01b8e9;
    margin: 10px 0;
  }

  .flip-box-content h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #406D84;
    margin: 10px 0;
  }

  .flip-box-content p {
    font-weight: 500;
    font-family: Roboto, sans-serif;
    color: #545454;
    width: 80%;
    margin: 10px 0;
  }

  .flip-box-content i {
    font-size: 14px;
    color: rgba(84, 84, 84, 0.5);
    margin: 10px 0;
  }
</style>

<style>
  .flip-box-content {
    width: 100%; /* Forzamos que ocupe todo el ancho */
    display: flex;
    flex-direction: column;
    align-items: center; /* Esto centra todo */
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
  }

  .flip-box-content p {
    width: 100%; /* El párrafo también ocupa todo el ancho */
    padding: 0 10px; /* Opcional, para que no quede pegado a los bordes */
  }
</style>