.testimonios-hero{
  background:linear-gradient(135deg,#eef7ff,#ffffff);
  padding:90px 0 60px;
  text-align:center;
}
/*==================================
TÍTULO PEQUEÑO
==================================*/

.testimonios-hero .section-label{

    display:inline-block;

    color:#2fa866;

    font-size:.9rem;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:4px;

    margin-bottom:18px;

}

.testimonios-hero h1{
  color:var(--blue);
  font-size:clamp(2.4rem,5vw,4rem);
  max-width:850px;
  margin:15px auto;
  line-height:1.15;
}

.testimonios-hero p{
  max-width:750px;
  margin:auto;
  color:#637381;
  font-size:1.1rem;
}

.testimonios-section{
  padding:70px 0;
  background:#f7fbff;
}

.testimonios-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.testimonio-card,
.testimonio-texto{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(16,42,67,.10);
  transition:.3s;
}

.testimonio-card:hover,
.testimonio-texto:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(16,42,67,.15);
}

.testimonio-card video{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.testimonio-card div{
  padding:24px;
}

.testimonio-card h3{
  color:var(--blue);
  margin-bottom:10px;
}

.testimonio-card p,
.testimonio-texto p{
  color:#637381;
  line-height:1.8;
}

.testimonio-texto{
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.testimonio-texto p{
  font-size:1.15rem;
  font-style:italic;
}

.testimonio-texto strong{
  color:var(--blue);
  margin-top:20px;
}

@media(max-width:900px){
  .testimonios-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .testimonios-grid{
    grid-template-columns:1fr;
  }
}
.testimonios-hero p.section-label{
  color:#2fa866 !important;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:.9rem;
  font-weight:800;
  margin-bottom:18px;
}
.testimonio-video-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(16,42,67,.10);
  cursor:pointer;
  transition:.3s;
}

.testimonio-video-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 55px rgba(16,42,67,.16);
}

.video-thumb{
  position:relative;
  height:230px;
  overflow:hidden;
}

.video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.play-btn{
  position:absolute;
  inset:0;
  margin:auto;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#f28c28;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.video-info{
  padding:24px;
}

.video-info span{
  color:#2fa866;
  font-size:.8rem;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}

.video-info h3{
  color:#0b4f8a;
  margin:10px 0;
}

.video-info p{
  color:#637381;
  line-height:1.7;
}

.video-modal{
  position:fixed;
  inset:0;
  background:rgba(5,18,32,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:24px;
}

.video-modal.show{
  display:flex;
}

.video-modal-content{
  width:min(980px,95%);
  aspect-ratio:16/9;
  background:#000;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.video-modal-content iframe{
  width:100%;
  height:100%;
  border:0;
}

.video-modal-close{
  position:absolute;
  top:26px;
  right:32px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#0b4f8a;
  font-size:32px;
  cursor:pointer;
}
#google_translate_element{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;
    background:white;
    padding:10px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.cookie-banner{
    position:fixed;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    width:min(1050px,92%);
    background:#ffffff;
    border:1px solid #d7e8f7;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(16,42,67,.22);
    padding:20px 24px;
    z-index:999999;
    display:none;
}

.cookie-banner.show{
    display:block;
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.cookie-content p{
    margin:0;
    color:#405466;
    font-size:.95rem;
    line-height:1.6;
}

.cookie-actions{
    display:flex;
    gap:12px;
    flex-shrink:0;
}

.btn-cookie{
    border:none;
    border-radius:999px;
    padding:11px 22px;
    font-weight:800;
    cursor:pointer;
    font-size:.9rem;
}

.btn-cookie.accept{
    background:#f28c28;
    color:#fff;
}

.btn-cookie.reject{
    background:#eef7ff;
    color:#0b4f8a;
}

@media(max-width:700px){
    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-actions{
        width:100%;
    }

    .btn-cookie{
        width:100%;
    }
}
