﻿.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background-color: #f0f9ff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 120, 180, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.slider-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.slider {
    width: 320px;
    height: 60px;
    position: relative;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

    .slider:before {
        content: 'TICKETS';
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 5px;
        left: 5px;
        width: 150px;
        height: 50px;
        border-radius: 25px;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        color: #2575fc;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 2;
    }

    .slider.active {
        background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    }

        .slider.active:before {
            content: 'USUARIOS';
            left: calc(100% - 155px);
            color: #6a11cb;
        }

    .slider:hover {
        box-shadow: 0 6px 20px rgba(106, 17, 203, 0.4);
    }

.section-title {
    color: #2575fc;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

    .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #6a11cb, #2575fc);
        margin: 10px auto 0;
        border-radius: 3px;
    }

@media (max-width: 768px) {
    .slider {
        width: 280px;
        height: 50px;
    }

        .slider:before {
            width: 130px;
            height: 40px;
            font-size: 1rem;
        }

        .slider.active:before {
            left: calc(100% - 135px);
        }
}
