.catalogo-section {
    padding: 70px 20px;
    background: #ffffff;
}

.catalogo-header {
    margin-bottom: 35px;
}

.catalogo-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.catalogo-header p {
    color: #666;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.catalogo-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalogo-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none;
}

.catalogo-slider::-webkit-scrollbar {
    display: none;
}

.catalogo-card {
    flex: 0 0 230px;
    height: 130px;
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: #333;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.catalogo-card:hover {
    transform: translateY(-5px);
    border-color: #e27ea6;
    color: #e27ea6;
    box-shadow: 0 12px 30px rgba(226, 126, 166, 0.22);
}

.catalogo-slider-btn {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #e27ea6;
    color: #ffffff;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.catalogo-slider-btn:hover {
    background: #d5668e;
}

@media (max-width: 768px) {
    .catalogo-section {
        padding: 45px 15px;
    }

    .catalogo-slider-wrapper {
        gap: 8px;
    }

    .catalogo-card {
        flex: 0 0 190px;
        height: 110px;
        font-size: 17px;
    }

    .catalogo-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        line-height: 36px;
    }
}