.sec-testimonio{
    margin: 4rem auto;
}
.sec-testimonio__titulo{
    font-size: 3rem;
    text-align: center;
    margin: 0;
    line-height: 1;
}
.sec-testimonio__subtitulo{
    font-size: 2rem;
    text-align: center;
    margin: 0;
}
.sec-testimonio__descripcion{
    font-size: 1.8rem;
    text-align: center;
    margin: 1rem 0 0 0;
}
@media (min-width: 768px) {
    .sec-testimonio__titulo{
        font-size: 4rem;
    }
    .sec-testimonio__subtitulo{
        font-size: 2.5rem;
    }
}
/* GRID TESTIMONIOS */
.sec-testimonio__grid{
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}
.sec-testimonio__card{
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
}
.sec-testimonio__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .sec-testimonio__grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .sec-testimonio__grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ACCIONES */
.sec-testimonio__acciones{
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
 

}

/* Popup de video ajustado y botón cerrar en la esquina del área blanca para testimonios */
.popup-testimonio {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-testimonio__fondo {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80, 84, 94, 0.95);
  z-index: 1;
}
.popup-testimonio__grupo-cerrar {
  position: fixed;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
}
.popup-testimonio__texto-cerrar {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
}
.popup-testimonio__cerrar {
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
  padding: 0;
}
.popup-testimonio__cerrar img {
  width: 16px;
  height: 16px;
  display: block;
}
.popup-testimonio__cerrar:hover {
  background: #e74c3c;
}
.popup-testimonio__cerrar:hover img {
  filter: brightness(0) invert(1);
}
.popup-testimonio__contenido {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}
.popup-testimonio__contenido iframe {
  width: 80vw;
  max-width: 800px;
  height: 45vw;
  max-height: 450px;
  border-radius: 20px;
  background: #000;
}
@media (max-width: 900px) {
  .popup-testimonio__grupo-cerrar {
    top: 12px;
    right: 12px;
  }
  .popup-testimonio__cerrar {
    width: 28px;
    height: 28px;
  }
  .popup-testimonio__cerrar img {
    width: 14px;
    height: 14px;
  }
  .popup-testimonio__texto-cerrar {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .popup-testimonio__contenido iframe {
    width: 98vw;
    height: 56vw;
    max-width: 100vw;
    max-height: 56vw;
    border-radius: 0;
  }
  .popup-testimonio__contenido {
    border-radius: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
}
