  .inversion-section {
    background-image: url('https://petsummitve.com/img/bg_price.png');
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height:95vh;
  }

  .inversion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
  }

  .info-boxes {
    color: #fff;
    max-width: 600px;
  }

  .info-boxes h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
  }

  .boxes-container {
    display: flex;
    gap: 20px;
  }

  .box {
    background: white;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }


  .image-container img {
    max-width: 580px;
    border-radius: 10px;
  }

  /* ESTADO INICIAL */
  .scroll-left,
  .scroll-right {
    opacity: 0;
    transition: all 1s ease;
  }

  .scroll-left {
    transform: translateX(-120px);
  }

  .scroll-right {
    transform: translateX(120px);
  }

  /* ESTADO VISIBLE */
  .show-left {
    opacity: 1;
    transform: translateX(0);
  }

  .show-right {
    opacity: 1;
    transform: translateX(0);
  }
  
.circle-price {
  display: flex !important;         /* 🔥 fuerza el modo flex */
  justify-content: center;          /* centra horizontalmente */
  align-items: center;              /* centra verticalmente */
  color: white;
  width: 100px;
  height: 100px;
  background-color: #09b0b2;
  border-radius: 50%;               /* círculo perfecto */
  font-weight: bold;
  font-size: 2.6rem;
  margin: 0 auto;                   /* centra el círculo dentro del contenedor */
  text-align: center;               /* por seguridad extra */
}

/* MEDIA QUERY PARA MÓVILES */
@media (max-width: 768px) {
  .inversion-section {
    max-height: none;          /* Quita la limitación de altura */
    padding: 5px 3px;        /* Más espacio para que respire */
  }
  .inversion-content {
    flex-direction: column;   /* Apila contenido */
    align-items: center;      /* Centra horizontalmente */
    gap: 20px;                /* Menor espacio entre elementos */
  }

  .boxes-container {
    flex-direction: column;   /* Apila los boxes */
    gap: 15px;
    align-items: center;      /* Centra los boxes */
  }

  .box {
    width: 80%;               /* Ajusta al ancho del móvil */
    max-width: 300px;         /* Para que no crezca demasiado */
    padding: 15px;
  }

  .info-boxes h2 {
    font-size: 1.8rem;        /* Ajusta el tamaño del título */
    text-align: center;       /* Centra el título */
  }

  .image-container img {
    max-width: 90%;           /* Ajusta la imagen al ancho de pantalla */
    height: auto;
  }

  .circle-price {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}
