/* eventos.css - VERSÃO ULTRA HIGH-END MELINOS 2.0 */

/* 1. AJUSTES GERAIS E LOGO */
#img-evento[src*="41412s.png"] {
    filter: brightness(1.1) contrast(1.2);
    mix-blend-mode: screen;
    background-color: transparent;
    object-fit: contain;
    padding: 20px;
}

/* 2. CONTAINER PRINCIPAL GLASS */
.bg-glass-premium {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(5, 5, 5, 1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 69, 0, 0.4);
    border-radius: 40px;
    padding: 50px !important;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 1), 
                inset 0 0 30px rgba(255, 69, 0, 0.1);
    overflow: hidden;
}

.bg-glass-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, transparent 70%);
    animation: rotate-light 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate-light {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3. IMAGEM DO EVENTO */
.img-evento-moderno {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.2);
}

.img-evento-moderno img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.img-evento-moderno:hover img {
    transform: scale(1.08);
}

.tipo-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* 4. CRONÔMETRO */
.cronometro-neon {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 69, 0, 0.3);
    padding: 25px 10px;
    border-radius: 25px;
    flex: 1;
    max-width: 110px;
    text-align: center;
    transition: 0.3s;
}

.timer-box:hover {
    background: rgba(255, 69, 0, 0.05);
    border-color: #ff4500;
    transform: translateY(-5px);
}

.timer-box .num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

.timer-box .label {
    font-size: 0.7rem;
    color: #ff8c00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

/* 5. FORMULÁRIO DE PRESENÇA (SISTEMA DE PÍLULAS) */
.group-moderno {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.group-moderno:focus-within {
    border-color: #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
    background: rgba(255, 69, 0, 0.02);
}

.input-minimal {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 0.95rem;
    padding-left: 20px !important;
    height: 50px !important;
}

.input-minimal::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.input-minimal:focus {
    box-shadow: none !important;
}

/* SELETOR DE TIPO (ADULTO/CRIANÇA) */
.selector-tipo {
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 4px;
    margin-right: 8px;
}

.option-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Ativos */
.option-btn[data-value="Adulto"].active {
    background: #ff4500;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.option-btn[data-value="Criança"].active {
    background: #deff9a;
    color: #050505;
    box-shadow: 0 4px 15px rgba(222, 255, 154, 0.4);
}

/* BOTÕES DE AÇÃO */
.btn-add-minimal {
    background: rgba(255, 69, 0, 0.1);
    border: none;
    color: #ff4500;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 5px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add-minimal:hover {
    background: #ff4500;
    color: white;
    transform: rotate(90deg);
}

.input-moderno-whatsapp {
    height: 60px;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 0 25px !important;
    font-size: 0.95rem;
}

.btn-confirmar-fina {
    height: 60px;
    background: transparent;
    border: 2px solid #ff4500;
    color: #ff4500;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.4s;
    text-transform: uppercase;
}

.btn-confirmar-fina:hover {
    background: #ff4500;
    color: white;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

/* 6. TAGS DE CONVIDADOS NA LISTA */
.tag-convidado {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.5);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-convidado.tag-crianca {
    border-color: #deff9a;
    color: #deff9a;
    background: rgba(222, 255, 154, 0.05);
}

/* 7. NOTIFICAÇÕES (TOAST) */
.notificacao-moderna {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    border: 1px solid #ff4500;
    padding: 20px 40px;
    border-radius: 100px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Botões de Navegação do Carrossel */
.btn-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #ff4500;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

/* Garante que o input de nome ocupe o máximo de espaço */
.input-minimal {
    flex-grow: 1 !important;
    min-width: 200px;
}

/* Animação suave ao trocar de evento */
.animate__fadeIn {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notificacao-moderna.show { bottom: 40px; }

.notificacao-aviso { border-left: 5px solid #ff8c00 !important; }
.notificacao-aviso .notificacao-icon { color: #ff8c00; }

@keyframes pulse-button {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}