.mentorias-produtos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
}

.mentorias-produtos-title {
    font-size: 44px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1px;
    color: #040E20;
}

.mentorias-produtos-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 48px;
    width: 100%;
    max-width: 1146px;
}

.mentorias-produtos .slick-track {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.mentorias-produtos-item {
    border: 1px solid #C1C7D0;
    border-radius: 12px;
    box-shadow: 0 1px 32px 0 #EBECF0;
    max-width: 350px;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: .3s box-shadow, .3s transform;
}

.mentorias-produtos-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px 0 #0000001f;
}

.mentorias-produtos-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.mentorias-produtos-item h3 {
    font-family: 'Margem-medium';
    font-size: 24px;
    line-height: 125%;
    font-weight: 500;
    color: #040E20;
}

.mentorias-produtos-item p {
    font-family: 'MontserratMedium';
    font-size: 14px;
    line-height: 125%;
    font-weight: 500;
    color: #505F79;
}

.mentorias-produtos-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mentorias-produtos-bullets {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mentorias-produtos-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: #253858;
}

.mentorias-produtos-bullet i {
    color: #0067FF;
    font-size: 14px;
    line-height: 125%;
}

.mentorias-produtos-button {
    font-family: 'Margem-medium';
    border: none;
    border-radius: 12px;
    padding: 0px 20px;
    width: 100%;
    height: 48px;
    background-color: #D8E9FF;
    color: #0D134C;
    font-size: 16px;
    font-weight: 500;
    transition: .3s background-color;
}

.mentorias-produtos-button:hover {
    background-color: #E5F0FF;
    cursor: pointer;
}

.mentorias-produtos-link {
    font-family: 'Margem-medium';
    font-size: 20px;
    font-weight: 500;
    color: #005DE6;
    transition: .3s color;
    line-height: 125%;
    text-decoration: underline;
    transition: .3s color;
}

.mentorias-produtos-link:hover {
    color: #0052CC;
}

.mentorias-produtos-actions {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
    margin-right: 16px;
}

.mentorias-produtos-carousel-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.mentorias-produtos-carousel-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: solid 1px #040E20;

    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: .3s border-color;
    color: #040E20;
}

.mentorias-produtos-carousel-buttons button:hover {
    cursor: pointer;
    border-color: #0067FF;
    color: #0067FF;
}

.mentorias-produtos-carousel-buttons button.slick-disabled {
    cursor: not-allowed;
    border-color: #42526E;
    color: #42526E;
    opacity: .8;
}

@media (min-width: 1280px) {
    .screen-sm {
        display: none;
    }

    .screen-lg {
        display: initial;
    }
}

@media (max-width: 1279px) {
    .screen-lg {
        display: none;
    }

    .screen-sm {
        display: inherit;
    }

    .mentorias-produtos-list,
    .mentorias-produtos-list .slick-track {
        gap: 16px;
    }
}

@media (max-width: 600px) {

    .mentorias-produtos-title {
        font-size: 36px;
        margin-right: 16px;
        letter-spacing: -2px;
    }

    .mentorias-produtos-item {
        width: 328px;
    }

    .mentorias-produtos-actions {
        margin-top: 16px;
    }

    .mentorias-produtos-actions>button {
        font-size: 16px;
    }
}