.homePage .curso {
    background-attachment: fixed;
    background-position: center;
}

.homePage .curso > .container > h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 24px;
}

.homePage .curso > .container > h3::after {
    content: "";
    background: #ccd0f8;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 3px;
}

.homePage .curso .curso-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.homePage .curso .text {
    max-width: none;
    min-width: 0;
}

.homePage .curso .text h1,
.homePage .curso .text h2,
.homePage .curso .text h3 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.homePage .curso .text h3 {
    color: #0214dc;
}

.homePage .curso .text .contentButtons {
    margin-top: auto;
}

.homePage .curso--has-carousel .curso-content.slick-initialized {
    display: block;
}

.homePage .curso--has-carousel .curso-content .slick-list {
    margin: 0 -15px;
}

.homePage .curso--has-carousel .curso-content .slick-track {
    display: flex;
    align-items: stretch;
}

.homePage .curso--has-carousel .curso-content .curso-slide.slick-slide {
    display: flex;
    height: auto;
}

.homePage .curso--has-carousel .curso-content .curso-slide .curso-card {
    width: calc(100% - 30px);
    margin: 0 15px;
}

.homePage .curso .curso-navigation {
    display: none;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.homePage .curso.curso--carousel-ready .curso-navigation {
    display: flex;
}

.homePage .curso .curso-navigation__button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0214dc;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.homePage .curso .curso-navigation__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.homePage .curso .curso-navigation__button--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.homePage .curso .curso-navigation__button--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.homePage .curso .curso-navigation__button:hover:not(.slick-disabled),
.homePage .curso .curso-navigation__button:focus-visible:not(.slick-disabled) {
    transform: translateY(-2px);
}

.homePage .curso .curso-navigation__button.slick-disabled {
    opacity: 0.45;
    cursor: default;
}

@media (max-width: 576px) {
    .homePage .curso .curso-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .homePage .curso--has-carousel .curso-content .slick-list {
        margin: 0 -10px;
    }

    .homePage .curso--has-carousel .curso-content .curso-slide .curso-card {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
}
