/* Sección "Qué incluye" con variables configurables */
.fppd-what-it-includes-section {
    background-color: var(--fppd-wii-section-bg-color, #f8f9fa);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.fppd-what-it-includes-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}

/* Título - usa variable --fppd-wii-section-title-color */
.fppd-what-it-includes-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fppd-wii-section-title-color, #2c3e50);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.fppd-what-it-includes-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: currentColor; /* Hereda el color del título */
    border-radius: 2px;
    opacity: 0.7;
}

/* Contenedor del Swiper */
.fppd-what-it-includes-swiper {
    width: 100%;
    padding: 40px 0 60px;
}

.fppd-what-it-includes-swiper > .swiper-wrapper {
    margin-top: 30px;
}

/* Items del carrusel - usa variable --fppd-wii-content-bg-color */
.fppd-what-it-includes-item.swiper-slide {
    background-color: var(--fppd-wii-content-bg-color, #ffffff);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.fppd-what-it-includes-item.swiper-slide:hover {
    transform: translateY(-10px);
}

/* Contenedor de imagen - usa variable --fppd-wii-bubble-bg-color como fallback */
.fppd-what-it-includes-item-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.fppd-what-it-includes-item-image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fppd-what-it-includes-item.swiper-slide:hover .fppd-what-it-includes-item-image img {
    transform: scale(1.05);
}

/* Texto - usa variable --fppd-wii-text-color */
.fppd-what-it-includes-item-text {
    font-size: 1.2rem;
    color: var(--fppd-wii-text-color, #34495e);
    line-height: 1.6;
    margin: 1rem 0 0;
    font-weight: 500;
    position: relative;
    padding-top: 1rem;
}

.fppd-what-it-includes-item-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: currentColor; /* Hereda el color del texto */
    border-radius: 3px;
    opacity: 0.5;
}

/* Paginación */
.fppd-what-it-includes-swiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #EE2E7E !important;
    /* background: var(--fppd-wii-section-title-color, #2c3e50); */
    transform: scale(1.2);
    opacity: 0.8;
}

/* Flechas de navegación - sin fondo */
.swiper-button-next,
.swiper-button-prev {
    color: #EE2E7E !important;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    margin-top: -20px;
    background: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.8rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--fppd-wii-text-color, #34495e);
    transform: scale(1.2);
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
    .fppd-what-it-includes-title {
        font-size: 2.3rem;
    }
    
    .fppd-what-it-includes-item-image {
        height: 160px;
    }
    
    .fppd-what-it-includes-item-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .fppd-what-it-includes-section {
        padding: 1rem 0;
    }
    
    .fppd-what-it-includes-title {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .fppd-what-it-includes-item.swiper-slide {
        padding: 0.5rem;
    }
    
    .fppd-what-it-includes-item-image {
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .fppd-what-it-includes-item-text {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .fppd-what-it-includes-swiper .swiper-pagination {
        margin-top: 30px;
    }
}