/*.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 30px;
    padding: 10px;
    cursor: grab;
}

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

.carousel-card {
    flex: 0 0 85%;*/ /* mostra um pedacinho do próximo card no desktop */
    /*background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .carousel-card:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

.card-body {
    display: flex;
    flex-direction: row;
}

.carousel-card img {
    width: 40%;
    object-fit: cover;
}

.destinos {
    width: 60%;
    padding: 20px;
}

    .destinos .col {
        float: left;
        width: 50%;
    }

    .destinos ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: background 0.3s;
}

    .carousel-arrow:hover {
        background: rgba(0,0,0,0.6);
    }

.arrow-left {
    left: -20px;
}

.arrow-right {
    right: -20px;
}*/

/* ?? Mobile: 1 card por vez */
/*@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%;*/ /* ocupa 100% no mobile */
    /*}

    .card-body {
        flex-direction: column;
    }

    .carousel-card img {
        width: 100%;
        height: 180px;
    }

    .destinos {
        width: 100%;
        padding: 15px;
    }

    .carousel-wrapper {
        max-width: 100%;
    }

    .arrow-left {
        left: 5px;
    }

    .arrow-right {
        right: 5px;
    }
}*/












/*.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 30px;
    padding: 10px;
    cursor: grab;
}

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

.carousel-card {
    flex: 0 0 85%;*/ /* mostra um pedacinho do próximo card no desktop */
    /*background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .carousel-card:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

.card-body {
    display: flex;
    flex-direction: row;
}

.carousel-card img {
    width: 40%;
    object-fit: cover;
}

.destinos {
    width: 60%;
    padding: 0 20px;
}

    .destinos .col {
        float: left;
        width: 50%;
    }

    .destinos ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: background 0.3s;
}

    .carousel-arrow:hover {
        background: rgba(0,0,0,0.6);
    }

.arrow-left {
    left: -20px;
}

.arrow-right {
    right: -20px;
}*/

/* ?? Mobile: 1 card por vez */
/*@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%;*/ /* ocupa 100% no mobile */
    /*}

    .card-body {
        flex-direction: column;
    }

    .carousel-card img {
        width: 100%;
        height: 180px;
    }

    .destinos {
        width: 100%;
        padding: 15px;
    }

    .carousel-wrapper {
        max-width: 100%;
    }

    .arrow-left {
        left: 5px;
    }

    .arrow-right {
        right: 5px;
    }
}*/












.carousel {
    position: relative;
    /*max-width: 1000px;*/
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    padding: 10px;
}

.card-body {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: visible;
    padding: 15px;
    transition: transform 0.3s ease;
    width: max-content;
}

    .card-body:hover {
        transform: scale(1.02);
    }

    .card-body img {
        width: 180px;
        height: 130px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 20px;
        flex-shrink: 0;
    }

.destinos {
    display: flex;
    flex-direction: column;
}

    .destinos h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        white-space: nowrap;
        text-transform: uppercase;
    }

    .destinos .lista-dupla {
        display: flex;
        gap: 25px;
    }

    .destinos .col {
        flex: 0 0 auto;
    }

    .destinos ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .destinos ul li {
            white-space: nowrap;
            margin-bottom: 4px;
        }

    .destinos a {
        text-decoration: none;
        color: #333;
        font-size: 0.9rem;
    }

/* Botões de navegação - posicionamento mais interno para mobile */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-btn:hover {
        background: rgba(0,0,0,0.6);
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

/* MOBILE */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }

    .card-body {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

        .card-body img {
            width: 100%;
            max-width: none;
            height: 180px;
            margin: 0 0 12px;
        }

    .destinos h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .destinos .lista-dupla {
        flex-direction: column;
        align-items: center;
        gap: 6px; /* diminui o espaçamento entre as listas */
        margin: 0; /* remove margens herdadas */
        padding: 0;
    }

        .destinos .lista-dupla .col {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }

    .destinos ul {
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
    }

        .destinos ul li {
            margin-bottom: 3px;
        }

    /* Setas visíveis e centralizadas */
    .carousel-btn.prev, .carousel-btn.next {
        display: flex;
    }
}

.col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .col ul li {
        margin-bottom: 6px;
    }

        .col ul li a {
            display: inline-block;
            font-size: 14px;
            color: #1a1a1a;
            text-decoration: underline;
            text-underline-offset: 3px; /* afasta o sublinhado */
            transition: color 0.3s, text-decoration-color 0.3s;
        }

            .col ul li a:hover {
                color: #007bff;
                text-decoration-color: #007bff;
            }
