/* --- Variables y Reset Básico --- */
:root {
  --primary-blue: #1e50c4;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light-gray: #888888;
  --star-gold: #f4b400;
  --bg-light: #ffffff;
  --border-color: #eaeaea;
}

/* --- Swiper Base CSS Fallback --- */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

/* --- Contenedor Principal --- */
.fucae-testimonials-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.fucae-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Cabecera de la Sección --- */
.fucae-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.fucae-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.fucae-section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* --- Slider de Testimonios --- */
.fucae-testimonials-slider {
  width: 100%;
  overflow: hidden;
  padding: 10px 0; /* Espacio para la sombra */
}

/* Swiper controla el ancho de las columnas, así que quitamos el grid manual */
.fucae-testimonials-slider .swiper-slide {
  height: auto; /* Permite que todas las tarjetas tengan la misma altura si usamos flex */
}

/* --- Estilos de la Tarjeta --- */
.fucae-testimonial-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ocupar toda la altura del slide */
}

.fucae-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.fucae-quote-icon {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-blue);
  line-height: 0.8;
  margin-bottom: 15px;
}

.fucae-testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 500;
  flex-grow: 1; /* Empuja el autor hacia abajo si los textos son de diferente altura */
  margin-bottom: 25px;
}

/* --- Área del Autor --- */
.fucae-author-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fucae-author-avatar {
  width: 55px !important;
  height: 55px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #f0f0f0;
}

.fucae-author-info {
  display: flex;
  flex-direction: column;
}

.fucae-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.fucae-author-role {
  font-size: 0.85rem;
  color: var(--text-light-gray);
  margin-bottom: 6px;
}

.fucae-author-rating {
  color: var(--star-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* --- Paginación --- */
.fucae-pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.fucae-dot {
  width: 8px;
  height: 8px;
  background-color: #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fucae-dot.active {
  background-color: var(--text-dark);
}
