/**
 * Estilos para o shortcode [atletas_sobre]
 * Slider de depoimentos/histórias de atletas
 */

/* Scope all styles to this block only */
#cbem-testimonial-atletas-sobre {
  --cbem-blue: #03569A;
  --cbem-text: #1E1E1E;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: hidden;
}

#cbem-testimonial-atletas-sobre * {
  box-sizing: border-box;
}

#cbem-testimonial-atletas-sobre .cbem-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 548px;
  max-width: 548px;
}

#cbem-testimonial-atletas-sobre .cbem-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

#cbem-testimonial-atletas-sobre .cbem-title {
  color: var(--cbem-blue);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin: 0 0 0;
}

#cbem-testimonial-atletas-sobre .cbem-card {
  background: linear-gradient(90deg, rgba(209,209,209,.2) 0%, rgba(209,209,209,.2) 100%), #fff;
  border: 1px solid rgba(209,209,209,.2);
  border-radius: 12px;
  padding: 32px;
  margin: 0;
  position: relative;
}

#cbem-testimonial-atletas-sobre .cbem-body {
  color: rgba(30,30,30,.7);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

#cbem-testimonial-atletas-sobre .cbem-media {
  position: relative;
  flex: 0 0 447px;
  width: 447px;
  height: 408px;
  border-radius: 20px;
  overflow: hidden;
}

#cbem-testimonial-atletas-sobre .cbem-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cbem-testimonial-atletas-sobre .cbem-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
}

#cbem-testimonial-atletas-sobre .cbem-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: auto;
}

#cbem-testimonial-atletas-sobre .cbem-name {
  color: var(--cbem-blue);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

#cbem-testimonial-atletas-sobre .cbem-nav {
  display: flex;
  gap: 16px;
}

#cbem-testimonial-atletas-sobre .cbem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--cbem-blue);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

#cbem-testimonial-atletas-sobre .cbem-btn:hover {
  background: #024a85;
}

#cbem-testimonial-atletas-sobre .cbem-btn svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

#cbem-testimonial-atletas-sobre .cbem-btn--prev svg {
  transform: scaleX(-1);
}

/* Slider effect helpers */
#cbem-testimonial-atletas-sobre .cbem-slide-animate {
  transition: transform .35s ease, opacity .35s;
  will-change: transform, opacity;
}

#cbem-testimonial-atletas-sobre .cbem-slide-in-from-left {
  transform: translateX(-40px);
  opacity: 0;
}

#cbem-testimonial-atletas-sobre .cbem-slide-in-from-right {
  transform: translateX(40px);
  opacity: 0;
}

#cbem-testimonial-atletas-sobre .cbem-slide-out-to-left {
  transform: translateX(-40px);
  opacity: 0;
}

#cbem-testimonial-atletas-sobre .cbem-slide-out-to-right {
  transform: translateX(40px);
  opacity: 0;
}

#cbem-testimonial-atletas-sobre .cbem-ghost {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#cbem-testimonial-atletas-sobre .cbem-card .cbem-ghost {
  padding: 32px;
}

/* Mobile: layout em coluna e centralizado */
@media (max-width: 767px) {
  #cbem-testimonial-atletas-sobre .cbem-grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  #cbem-testimonial-atletas-sobre .cbem-left {
    display: contents;
  }

  #cbem-testimonial-atletas-sobre .cbem-title {
    order: 1;
    width: 100%;
    text-align: center;
    font-size: 22px !important;
    line-height: 28px !important;
  }

  #cbem-testimonial-atletas-sobre .cbem-media {
    order: 2;
    width: 100%;
    max-width: 100%;
    height: clamp(160px, 35vw, 240px);
  }

  #cbem-testimonial-atletas-sobre .cbem-card {
    order: 3;
    width: 100%;
  }

  #cbem-testimonial-atletas-sobre .cbem-body {
    text-align: center;
  }

  #cbem-testimonial-atletas-sobre .cbem-footer {
    order: 4;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  #cbem-testimonial-atletas-sobre .cbem-name {
    text-align: center;
  }

  #cbem-testimonial-atletas-sobre .cbem-nav {
    justify-content: center;
  }
}

/* Tablet: layout empilhado e título 24/30 forçado */
@media (min-width: 768px) and (max-width: 1024px) {
  #cbem-testimonial-atletas-sobre .cbem-grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  #cbem-testimonial-atletas-sobre .cbem-left {
    display: contents;
  }

  #cbem-testimonial-atletas-sobre h3.cbem-title.cbem-title {
    order: 1;
    width: 100%;
    text-align: center;
    font-size: 24px !important;
    line-height: 30px !important;
  }

  #cbem-testimonial-atletas-sobre .cbem-media {
    order: 2;
    width: 100%;
    max-width: 100%;
    height: clamp(180px, 40vw, 300px);
  }

  #cbem-testimonial-atletas-sobre .cbem-card {
    order: 3;
    width: 100%;
  }

  #cbem-testimonial-atletas-sobre .cbem-footer {
    order: 4;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
  }

  #cbem-testimonial-atletas-sobre .cbem-name {
    text-align: center;
  }

  #cbem-testimonial-atletas-sobre .cbem-nav {
    justify-content: center;
  }
}

