/* --- VARIABLES DE COLOR --- */
:root {
    --color-primary: #73a0ee;
    --color-secondary: #739cc2;
    --color-emotional: #000f43;
    --color-text: #04030F;
    --color-accent: #6a6885;
}

/* --- ESTILO DE LAS TARJETAS --- */
.testimonial-card {
    background: #ffffff;
    padding: 3.5rem 2rem 2rem 2rem;
    border-radius: 1rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    /* --- CAMBIOS PARA TAMAÑO FIJO --- */
    height: 400px; /* 1. Altura fija (ajústala si quieres más o menos) */
    display: flex; /* 2. Convertimos la tarjeta en contenedor flexible */
    flex-direction: column; /* 3. Elementos uno debajo del otro */
    justify-content: space-between; /* 4. Distribuye el espacio */
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.icon-quote {
    font-size: 2.5rem;
    color: var(--color-emotional);
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* --- INFO DEL USUARIO --- */
.user-info {
    display: flex;
    align-items: center;
    border-top: 5px solid #eee;
    padding-top: 1rem;
}

.user-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-emotional);
}

.user-details span {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- OVERRIDES DE OWL CAROUSEL --- */
/* Flechas de navegación */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.owl-nav button:hover {
    background: var(--color-emotional) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-emotional) !important;
}

.owl-prev { left: -60px; }
.owl-next { right: -60px; }

/* Ajuste de flechas en pantallas pequeñas */
@media (max-width: 1280px) {
    .owl-prev { left: -20px; }
    .owl-next { right: -20px; }
}

/* Puntos de paginación */
.owl-dots {
    margin-top: 30px !important;
}

.owl-dots .owl-dot span {
    background: rgba(255,255,255,0.3) !important;
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    transition: all 0.3s;
}

.owl-dots .owl-dot.active span {
    background: var(--color-primary) !important;
    transform: scale(1.3);
}
