.hero {
    .sobre {
        h3 {
            color: #F58220;
            font-size: 26px;
            font-weight: 700;
            line-height: 160%;
            margin: 0;
        }

        p {
            color: #FFFFFF;
            font-size: 20px;
            font-weight: 300;
            line-height: 160%;
            margin: 0;
        }
    }
}

.input {
    position: relative;

    svg {
        position: absolute;
        top: 40%;
        left: 14px;
        max-height: 15px;
        width: auto;
    }

    select.form-select {
        padding-left: 9%;
    }

    label {
        color: #62737B;
    }
}

.form-control {
    position: relative;

    &[type="text"],
    &[type="mail"],
    &[type="email"],
    &[type="tel"] {
        padding-left: 40px;
    }

    svg path {
        color: #faa41a;
        fill: #faa41a;
    }
}

.swiper-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;

    /* .nav-btn {
        background-color: #F58220;
        color: #fff;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    } */
}

.card.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100% !important;
    min-height: 28em;

    .card-content {
        transition: transform 0.3s ease;
        transform: translateY(120px);
        width: 100%;
        /* height: 100%; */
        bottom: 0;
        position: absolute;
        left: 0;
        padding: 1.5rem;
    }

    .card-buttons {
        display: flex;
        opacity: 0;
        gap: 10px;
        margin-top: 16px;
        transition: all 0.3s ease;
        flex-direction: column;
    }

    .card-buttons .btn-cta {
        width: 100%;
        text-align: center;
    }

    .card-buttons .btn-cta:first-child {
        border: 1px solid #F4A14E;
        background: transparent;
        color: #F4A14E;

        &:hover {
            background: #F4A14E;
            color: #fff;
        }
    }

    &:hover {
        .card-content {
            transform: translateY(-20px);
        }

        .card-img {
            filter: brightness(0.5);
        }

        .card-buttons {
            opacity: 1;
        }
    }

    & .card-img {
        height: 100%;
        object-fit: cover;
        transition: 300ms all ease-in-out;
    }

    & .card-img-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
        transition: 200ms all ease-in-out;
    }

    & .badge {
        background: #3189BF;
        font-size: 13px;
        font-weight: 700;
    }

    & .card-titulo {
        font-size: 24px;
        font-weight: 700;
        line-height: 125%;
    }

    & .card-texto {
        font-size: 16px;
        font-weight: 400;
        line-height: 160%;
    }

    & .card-texto span {
        font-size: 16px;
        font-weight: 700;
        line-height: 160%;
        color: #F4A14E;
    }
}

.skeleton {
    background: #e3e7ed;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    height: 100%;
    width: 150px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 1.2s infinite linear;
}

@keyframes shine {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

/* Skeleton Card */
.skeleton-card {
    height: 420px;
    border-radius: 15px;
}

.skeleton-img {
    height: 60%;
}

.skeleton-content {
    padding: 20px;
}

.skeleton-line {
    height: 12px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-line.short {
    width: 60%;
}

@media (max-width: 992px) {
    section {
        h2 {
            font-size: 30px !important;
        }
    }
}