.course-carousel {
    background-color: #0a0a0a;
    color: #fff;
    padding: 40px 100px;
    text-align: center;
}

.carousel-header h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #ccc;
}

.carousel-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.carousel-header p {
    margin-bottom: 30px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide img {
    max-width: 100%;
    border-radius: 8px;
    margin: 0 10px;
}

.carousel-control {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.principles {
    margin-top: 40px;
}

.principles h3{
    margin-bottom: 20px;
    color: var(--textColorA);
}

.principles h2 {
    margin-bottom: 30px;
    color: #ffffff;
}

.principles-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.principle-card {
    background-color: #111;
    border-radius: 8px;
    padding: 20px 20px;
    max-width: 25%;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.principle-card h4 {
    padding: 20px 0px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 1rem;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .course-carousel {
        background-color: #0a0a0a;
        color: #fff;
        padding: 40px 20px;
        text-align: center;
    }

    .carousel-header h2 {
        font-size: 1.5rem;
    }

    .principles-cards {
        flex-direction: column;
        align-items: center;
    }

    .principle-card {
        max-width: 100%;
        padding: 20px;
    }


}