/* ============================================================
   SECCIÓN TOTALMENTE AISLADA
   ============================================================ */

.dir-testimonial-section{
  padding: 30px 20px;
  background: #f7fbff;
  font-family: Inter, Arial, sans-serif;

  /* 🔥 SECCIÓN MÁS ANGOSTA */
  max-width: 1000px;
  margin: auto;
}

.dir-testimonial-container{
  display: grid;
  gap: 2rem;
}

/* Layout en escritorio */
@media(min-width: 850px){
  .dir-testimonial-container{
    grid-template-columns: 300px 1fr;
    align-items: center;
  }
}

/* ================= TELÉFONO AJUSTADO ================= */

.dir-phone-wrap{
  display: flex;
  justify-content: center;
}

/* 🔥 Más ancho + menos alto */
.dir-phone{
  width: clamp(190px, 48vw, 260px); /* más ancho */
  aspect-ratio: 9 / 16; /* menos alto */
  background: #0d1117;
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Más compacto en celulares */
@media(max-width: 550px){
  .dir-phone{
    width: clamp(180px, 60vw, 230px);
    aspect-ratio: 9 / 15; /* 🔥 menos alto aún en móvil */
  }
}

.dir-notch{
  width: 45%;
  height: 9px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  margin-top: 4px;
}

.dir-screen{
  width: 100%;
  height: 100%;
  margin: 8px 0;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  display: flex;
}

.dir-iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Barra inferior */
.dir-homebar{
  width: 34px;
  height: 5px;
  border-radius: 9px;
  background: rgba(255,255,255,0.15);
}

/* ================= TEXTO ================= */

.dir-text h2{
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 0.6rem;
  color: #111;
}

.dir-text p{
  margin: 0 0 1rem;
  color: #333;
  line-height: 1.45;
  text-align: justify; /* 🔥 Texto justificado */
}

.dir-cta{
  display: inline-block;
  background: #006699;
  padding: 0.7rem 1rem;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
