.wpdm-fp-featured-container {
    width: 100%;
    margin: 30px 0;
    border: 2px solid #8fdf00;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(63, 163, 68, 0.15);
    background: linear-gradient(135deg, #f8fff8 0%, #f0f8f0 100%);
    position: relative;
}

.wpdm-fp-header {
    background: linear-gradient(135deg, #8fdf00 0%, #629900 100%);
    padding: 15px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wpdm-fp-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.wpdm-fp-main-title {
    margin: 0;
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wpdm-fp-header .fas.fa-star {
    color: #ffeb3b;
    font-size: 20px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.wpdm-fp-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><circle cx="20" cy="20" r="5" fill="white"/><circle cx="50" cy="35" r="7" fill="white"/><circle cx="80" cy="20" r="5" fill="white"/><circle cx="30" cy="70" r="6" fill="white"/><circle cx="70" cy="65" r="4" fill="white"/></svg>');
    z-index: 1;
}

.wpdm-fp-featured-slider {
    width: 100%;
    padding: 20px 25px 50px 25px;
    position: relative;
}

.wpdm-fp-slide-container {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
    border: 1px solid #e0e0e0;
}

/* IMAGEM COM LARGURA REDUZIDA - MODIFICAÇÃO PRINCIPAL */
.wpdm-fp-slide-image {
    flex: 0 0 30%; /* Reduzido de 35% para 30% */
    max-width: 21%; /* Reduzido de 35% para 30% */
    position: relative;
    overflow: hidden;
}

.wpdm-fp-slide-image:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #8fdf00, transparent);
}

/* MELHOR ENQUADRAMENTO DA IMAGEM - MODIFICAÇÃO PRINCIPAL */
.wpdm-fp-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Alterado de 'cover' para 'contain' para mostrar imagem completa */
    display: block;
    object-position: center;
}

/* CONTEÚDO COM LARGURA AUMENTADA - MODIFICAÇÃO PRINCIPAL */
.wpdm-fp-slide-content {
    flex: 0 0 70%; /* Aumentado de 65% para 70% */
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

/* FUNDO PARA A ÁREA DA IMAGEM - NOVO */
.wpdm-fp-image-container {
    background: #f0f0f0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.wpdm-fp-slide-title {
    margin: 0 0 10px 0;
    font-size: 19px;
    line-height: 1.3;
    position: relative;
}

.wpdm-fp-slide-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8fdf00;
    border-radius: 2px;
}

.wpdm-fp-slide-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.wpdm-fp-slide-title a:hover {
    color: #8fdf00;
}

.wpdm-fp-slide-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.wpdm-fp-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #555;
    background: #f8f8f8;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.wpdm-fp-meta-item i {
    color: #8fdf00;
    font-size: 11px;
}

/* DESCRIÇÃO AGORA ABAIXO DAS INFORMAÇÕES */
.wpdm-fp-slide-description {
    margin: 10px 0;
    color: #555;
    line-height: 1.5;
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    background: #f9f9f9;
    padding: 8px 10px;
    border-radius: 5px;
    border-left: 2px solid #8fdf00;
    font-style: italic;
    flex-grow: 1;
}

.wpdm-fp-slide-actions {
    margin-top: auto;
}

.wpdm-fp-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #8fdf00 0%, #629900 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(63, 163, 68, 0.3);
}

.wpdm-fp-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(63, 163, 68, 0.4);
    color: #fff;
}

/* Navegação personalizada - SEM BULLETS */
.wpdm-fp-navigation {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 30px;
}

/* REMOVIDA A PAGINAÇÃO (BULLETS) */
.wpdm-fp-pagination {
    display: none;
}

.wpdm-fp-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #8fdf00;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #8fdf00;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.wpdm-fp-arrow:hover {
    background: #8fdf00;
    color: white;
    transform: scale(1.1);
}

/* Navegação lateral para telas maiores */
@media (min-width: 1024px) {
    .wpdm-fp-navigation {
        position: absolute;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 3px;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .wpdm-fp-slide-container {
        flex-direction: column;
        height: auto;
    }
    
    .wpdm-fp-slide-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 160px;
    }
    
    .wpdm-fp-slide-image:after {
        display: none;
    }
    
    .wpdm-fp-slide-content {
        flex: 0 0 100%;
        padding: 15px;
    }
    
    .wpdm-fp-main-title {
        font-size: 20px;
    }
    
    .wpdm-fp-header {
        padding: 12px 15px;
    }
    
    .wpdm-fp-navigation {
        bottom: 12px;
        padding: 0 20px;
    }
    
    .wpdm-fp-arrow {
        display: none;
    }
    
    .wpdm-fp-slide-description {
        -webkit-line-clamp: 2;
        font-size: 12px;
        padding: 6px 8px;
        margin: 10px 0;
    }
    
    .wpdm-fp-slide-meta {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .wpdm-fp-meta-item {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .wpdm-fp-slide-actions {
        margin-top: 15px;
    }
    
    /* IMAGEM MOBILE - NOVO */
    .wpdm-fp-slide-image img {
        object-fit: contain;
        max-height: 160px;
    }
}

/* Esconder a paginação padrão do Swiper */
.swiper-pagination {
    display: none;
}

.swiper-button-next, .swiper-button-prev {
    display: none;
}