.medios-pago-section {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  /* Título principal en color #545454 */
  .medios-pago-section h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #545454;
  }
  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  /* Cada método se apila verticalmente: imagen sobre descripción */
  .method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  /* Contenedor circular para la imagen, agrandado a 100px */
  .circle-container {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }
  /* Animación: se activa al pasar el mouse */
  .circle-container:hover {
    animation: horizontalSpin 0.5s;
  }
  @keyframes horizontalSpin {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(1080deg);
    }
  }
  .circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Párrafos: texto negro, títulos en #545454 */
  .medios-pago-section p {
    color: black;
    margin: 0;
    line-height: 1.5;
  }
  .medios-pago-section p strong {
    color: #545454;
  }