.mc-container {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    font-family: 'Big Shoulders', sans-serif;
}

.mc-title {
    font-size: 26px;
    margin-bottom: 20px;
}

/* WRAPPER */
.mc-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* CAROUSEL */
.mc-carousel {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* ITEM */
.mc-item {
    min-width: 200px;
    max-width: 200px;
    text-align: center;
}

/* IMAGE */
.mc-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.mc-text {
    margin: 0px 0 0px;
    font-size: 18px;
	color: #004c8d;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	
	
}

.mc-link {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.mc-link:hover {
    text-decoration: underline;
}

/* ARROWS */
.mc-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 25px;
    background: white;
    border: none;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 50px;
    transition: 0.2s;
    z-index: 20;
}

.mc-prev { left: 10px; }
.mc-next { right: 10px; }

.mc-arrow:hover {
    background: #ddd;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .mc-item {
        min-width: 250px;
        max-width: 250px;
    }

    .mc-item img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .mc-item {
        min-width: 200px;
        max-width: 200px;
    }

    .mc-item img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .mc-item {
        min-width: 100%;
    }

    .mc-item img {
        width: 100%;
        height: auto;
    }
}




