/* Botão flutuante */
.botao-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    z-index: 9999;
}

.botao-flutuante:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Animação de pulso */
.botao-flutuante::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #667eea;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.select-inscricao{
    height: 50px;
    border-radius: 30px;
    background-color: #fe872d; 
    color: #fff; 
    border: none;
    margin-bottom: 30px;
}