
        :root {
    --accent: #005b74;
    --bg: #f7fafd;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.carousel-track-container {
    overflow: hidden; /* Corta o que sai do container principal */
    width: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    /* Define que cada slide ocupa 70% da largura do container */
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    opacity: 1;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

    .carousel-slide.active {
        transform: scale(1);
    }

.carousel-card {
    height: 250px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: .75rem;
    height: .75rem;
    border-radius: .75rem;
    background: var(--bg);
    border: none;
    padding: 0;
    transition: 0.3s;
    box-shadow: transparent 0 0 0 0, rgba(0, 0, 0, .08) 0 0 0 1px;
}

    .dot.active {
        background: var(--accent);
    }

.carousel-track-container {
    cursor: grab;
}

    .carousel-track-container:active {
        cursor: grabbing;
    }

.carousel-slide {
    user-select: none;
    -webkit-user-drag: none;
}

        