:root {
  --phone-width: clamp(210px, 25vw, 280px);
}


  .testimonials {
    padding: 4rem 1rem;
    text-align: center;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: var(--phone-width) var(--phone-width);
    gap: 4rem; /* Pequeña separación */
    justify-content: center; /* Centra todo el grid */
  }

  .phone {
    width: 100%;
    max-width: var(--phone-width);
    padding: 8px;
    border-radius: 30px;
    background: #00000010;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    justify-self: center; /* Centra cada video en su celda */
  }

  .phone iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    display: block;
  }

  @media (max-width: 480px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .phone {
      max-width: 300px;
      margin: 0 auto;
    }
    .section-title {
      font-size: 1.5rem;
    }
  }