/* ── CA Testimonios v5.0 ─────────────────────────────────────────────────────
   Carrusel uno a uno · foto izquierda · texto derecha
   ──────────────────────────────────────────────────────────────────────────── */

/* ── CONTENEDOR ── */
.ca-test-carousel {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

/* ── TARJETAS — solo la activa visible ── */
.ca-test-card {
  display: none !important;
}
.ca-test-card.active {
  display: grid !important;
  grid-template-columns: 45fr 55fr;
  min-height: 460px;
  background: #fff;
  border: 1px solid rgba(28,28,26,0.09);
  overflow: hidden;
}

/* ── FOTO ── */
.ca-test-img {
  overflow: hidden;
  min-height: 260px;
}
.ca-test-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter .3s;
}
.ca-test-card:hover .ca-test-img img { filter: brightness(1); }

/* ── CUERPO ── */
.ca-test-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── ESTRELLAS ── */
.ca-test-stars {
  font-size: 16px;
  color: #B8935A;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

/* ── CITA ── */
.ca-test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #1C1C1A;
  margin: 0 0 28px;
  padding: 0;
  border: none !important;
  position: relative;
}
.ca-test-quote::before {
  content: '\201C';
  font-size: 64px;
  color: rgba(184,147,90,0.15);
  position: absolute;
  top: -14px; left: -10px;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

/* Tamaños adaptativos según longitud del texto */
.ca-tq-lg { font-size: 24px; }   /* menos de 140 caracteres */
.ca-tq-md { font-size: 20px; }   /* 140 a 280 caracteres */
.ca-tq-sm { font-size: 16px; }   /* más de 280 caracteres */

/* ── AUTOR ── */
.ca-test-author {
  border-top: 1px solid rgba(28,28,26,0.08);
  padding-top: 18px;
  margin-top: auto;
}
.ca-test-author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1C1C1A;
  margin-bottom: 5px;
}
.ca-test-ver {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #B8935A;
  text-decoration: none;
  margin-bottom: 4px;
  transition: opacity .2s;
}
.ca-test-ver:hover { opacity: .65; }
.ca-test-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #bbb;
}

/* ── NAVEGACIÓN ── */
.ca-test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(28,28,26,0.09);
}
.ca-test-prev,
.ca-test-next {
  width: 48px; height: 48px;
  border: 1px solid rgba(28,28,26,0.18);
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #1C1C1A;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.ca-test-prev:hover,
.ca-test-next:hover {
  background: #1C1C1A;
  color: #fff;
  border-color: #1C1C1A;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ca-test-card.active {
    grid-template-columns: 1fr !important;
    min-height: unset !important;
  }
  .ca-test-img     { min-height: 220px; max-height: 260px; }
  .ca-test-body    { padding: 28px 24px; }
  .ca-tq-lg        { font-size: 22px; }
  .ca-tq-md        { font-size: 18px; }
  .ca-tq-sm        { font-size: 15px; }
  .ca-test-nav     { margin-top: 16px; padding-top: 16px; }
}
/* ── GOOGLE ICON ── */
.ca-test-google svg {
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle;
}
