.fpd-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    font-family: system-ui, -apple-system, sans-serif;
}

.fpd-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #121212;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fpd-card {
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.fpd-card.active {
    display: flex;
    opacity: 1;
}

.fpd-image-wrapper {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    background: #000;
}

.fpd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fpd-content {
    padding: 24px;
    text-align: center;
}

.fpd-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.fpd-content p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.fpd-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.fpd-btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.fpd-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Controles de Navegação */
.fpd-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 12px;
}

.fpd-center-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fpd-prev, .fpd-next {
    background: #222;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.fpd-prev:hover, .fpd-next:hover {
    background: #444;
}

/* Botão Play / Pause */
.fpd-play-pause {
    background: #0073aa;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.fpd-play-pause:hover {
    background: #005177;
    transform: scale(1.05);
}

.fpd-play-pause.paused {
    background: #444;
}

/* Dots da paginação */
.fpd-dots {
    display: flex;
    gap: 8px;
}

.fpd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.fpd-dot.active {
    background: #0073aa;
    width: 24px;
    border-radius: 10px;
}

/* Layout Desktop */
@media (min-width: 768px) {
    .fpd-card {
        flex-direction: row;
        align-items: center;
    }
    .fpd-image-wrapper {
        width: 55%;
    }
    .fpd-content {
        width: 45%;
        text-align: left;
    }
    .fpd-buttons {
        justify-content: flex-start;
    }
}
