/* Contenedor General */
.vp-wrapper {
    width: 100%;
    margin: 2rem 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Efecto Premium Base de las Tarjetas */
.vp-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.vp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vp-card-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatares Modernos */
.vp-avatar-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
}

.vp-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1; /* Color Premium Indigo */
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
}

.vp-avatar-placeholder {
    background: #e2e8f0;
}

/* Tipografías */
.vp-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 700;
}

.vp-quote {
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    font-size: 1rem;
}

.vp-quote-icon {
    display: block;
    font-size: 3rem;
    color: #6366f1;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -1rem;
}

/* --- FORMATO GRID --- */
.vp-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- FORMATO LISTA --- */
.vp-layout-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vp-layout-list .vp-card-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
}

.vp-layout-list .vp-avatar-wrapper {
    margin-bottom: 0;
    margin-right: 2rem;
    flex-shrink: 0;
}

/* --- ANIMACIONES PREMIUM DE ENTRADA --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
}

/* --- AJUSTES EXTRA SWIPER (GALERÍA) --- */
.vp-slider-container {
    padding: 2rem 1rem 3.5rem 1rem !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #6366f1 !important;
}
.swiper-pagination-bullet-active {
    background: #6366f1 !important;
}