.it-6c09edf3-wrapper {
    --primary-color: #6B3A48;
    --card-bg-color: #FDF0F3;
    --cream-bg-color: #FAF9F6;
    --text-color-dark: #3A3A3A;
    background-color: var(--cream-bg-color);
    padding: 60px 20px;
    font-family: "Geologica", sans-serif;
    position: relative;
}

.it-6c09edf3-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.it-6c09edf3-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.2;
}

.it-6c09edf3-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

.it-6c09edf3-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #C8566E20;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.it-6c09edf3-counter-badge {
    color: #C8566E;
    font-weight: bold;
}

.it-6c09edf3-counter-text {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* FILTER CHIPS */
.it-6c09edf3-filters-container {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.it-6c09edf3-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.it-6c09edf3-filters::-webkit-scrollbar {
    display: none;
}

.it-6c09edf3-chip {
    background: transparent;
    border: 1px solid #D9D9D9;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
    color: var(--primary-color);
}

.it-6c09edf3-chip.active,
.it-6c09edf3-chip:hover {
    background: var(--accent-color, var(--primary-color));
    border-color: var(--accent-color, var(--primary-color));
    color: #ffffff !important;
}

/* SWIPER / SLIDER STYLING */
.it-6c09edf3-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.it-6c09edf3-swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Fallback: fuerza el layout en fila de columnas aunque el CSS de Swiper
   no haya cargado o Swiper aún no haya inicializado (evita cards apiladas) */
.it-6c09edf3-swiper .swiper-wrapper {
    display: flex;
}

.it-6c09edf3-swiper:not(.swiper-initialized):not(.swiper-container-initialized) .it-6c09edf3-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .it-6c09edf3-swiper:not(.swiper-initialized):not(.swiper-container-initialized) .it-6c09edf3-slide {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-right: 20px;
    }
}

@media (min-width: 1024px) {
    .it-6c09edf3-swiper:not(.swiper-initialized):not(.swiper-container-initialized) .it-6c09edf3-slide {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
        margin-right: 24px;
    }
}

.it-6c09edf3-slide {
    height: auto;
    display: flex;
    flex-shrink: 0;
}

.it-6c09edf3-card {
    background: var(--card-bg-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.it-6c09edf3-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(200, 86, 110, 0.08);
}

.it-6c09edf3-quote-deco {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 72px;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.08;
    line-height: 1;
}

.it-6c09edf3-card-tag {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.it-6c09edf3-card-body {
    flex-grow: 1;
}

.it-6c09edf3-card-highlight {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.it-6c09edf3-text-expand-wrapper {
    overflow: hidden;
    position: relative;
    max-height: 150px;
    transition: max-height 0.3s ease;
}

.it-6c09edf3-text-expand-wrapper.expanded {
    max-height: 1000px;
}

.it-6c09edf3-card-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color-dark);
    font-style: italic;
}

.it-6c09edf3-readmore-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    display: inline-block;
}

.it-6c09edf3-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    border-top: 1px solid rgba(107, 58, 72, 0.1);
    padding-top: 16px;
}

.it-6c09edf3-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.it-6c09edf3-avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.it-6c09edf3-meta {
    display: flex;
    flex-direction: column;
}

.it-6c09edf3-client-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.it-6c09edf3-context {
    font-size: 12px;
    color: var(--text-color-dark);
    opacity: 0.6;
}

/* NAVIGATION ARROWS */
.it-6c09edf3-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid rgba(107, 58, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    z-index: 10;
}

.it-6c09edf3-arrow:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(107, 58, 72, 0.15);
}

.it-6c09edf3-prev {
    left: 0;
}

.it-6c09edf3-next {
    right: 0;
}

/* MOBILE PROGRESS BAR */
.it-6c09edf3-mobile-progress-wrapper {
    display: none;
    width: 100%;
    max-width: 200px;
    height: 4px;
    background-color: #E5E5E5;
    border-radius: 2px;
    margin: 20px auto 0 auto;
}

.it-6c09edf3-mobile-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.1s ease;
}

/* RESPONSIVE LAYOUTS */
@media screen and (max-width: 767px) {
    .it-6c09edf3-slider-wrapper {
        padding: 0;
    }
    .it-6c09edf3-arrow {
        display: none;
    }
    .it-6c09edf3-mobile-progress-wrapper {
        display: block;
    }
}
