.slider-container {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.modalidade-link:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.card-img-top-wrapper {
    height: 200px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animate__animated {
    animation-duration: 1s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

/* Estilos do botão flutuante */
.floating-button {
    position: fixed;
    left: 0;
    bottom: calc(2rem - 64px);
    transform: translateY(-50%);
    background-color: #F79225; /*Laranja*/
    color: white;
    padding: 15px 5px;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 49;
    transition: all 0.3s ease;    
}

    .floating-button:hover {
        background-color: #d97d1a; /*Laranja mais escuro*/
        text-decoration: none;
        color: white;
        padding-left: 15px;
    }

    .floating-button i {
        font-size: 16px;
        transform: rotate(90deg);
    }

.floating-button-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .floating-button {
        top: 55%;
        bottom: auto;
        padding: 1rem .675rem;
        opacity: 1%;
    }
        .floating-button i {
            font-size: 1.5rem;
        }

    .floating-button-text {
        font-size: 1rem;
    }
}
