/* ============================================
   Reunião das Lideranças — CSS Específico
   ============================================ */

/* ============ Pulse Animation no Botão Confirmar ============ */
.pulse-orange {
    animation: pulse-orange 2.5s infinite;
}
@keyframes pulse-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(245, 130, 32, 0); }
}

/* ============ ROTEIRO ITEMS ============ */
.roteiro-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    align-items: stretch;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--mdb-orange, #F58220);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.roteiro-item:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 28px -8px rgba(245,130,32,0.2);
}
.roteiro-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F58220, #D96A14);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px -4px rgba(245,130,32,0.4);
    flex-shrink: 0;
}
.roteiro-num-final {
    background: linear-gradient(135deg, #1F2937, #000);
    box-shadow: 0 8px 16px -4px rgba(31,41,55,0.5);
}
.roteiro-content { flex: 1; }
.roteiro-content h4 { color: #1F2937; }
.roteiro-content p { color: #6B7280; line-height: 1.5; }

.roteiro-item-final {
    background: linear-gradient(135deg, #1F2937 0%, #2d3748 100%);
    color: white;
    border-left-color: #F58220;
}
.roteiro-item-final .roteiro-content h4 { color: white; }
.roteiro-item-final .roteiro-content p { color: rgba(255,255,255,0.85); }

.time-badge {
    display: inline-block;
    background: rgba(245, 130, 32, 0.1);
    color: #D96A14;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.time-badge-light {
    background: rgba(255,255,255,0.2);
    color: white;
}

.speaker-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(31, 41, 55, 0.08);
    color: #1F2937;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
}
.speaker-badge-alt {
    background: rgba(59, 130, 246, 0.1);
    color: #1E40AF;
}
.speaker-badge-orange {
    background: rgba(245, 130, 32, 0.15);
    color: #D96A14;
}

/* ============ FERRAMENTA CARDS ============ */
.ferramenta-card {
    display: block;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.ferramenta-card:hover {
    border-color: var(--mdb-orange, #F58220);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(245,130,32,0.25);
}
.ferramenta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #F58220, #D96A14);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 12px 24px -8px rgba(245,130,32,0.4);
}
.ferramenta-tag {
    display: inline-block;
    background: rgba(245, 130, 32, 0.1);
    color: #D96A14;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.ferramenta-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1F2937;
    margin-bottom: 0.5rem;
}
.ferramenta-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.ferramenta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    color: #F58220;
    font-weight: 700;
    font-size: 0.875rem;
}
.ferramenta-link i { font-size: 0.875rem; }

/* ============ FUTURE TOOLS ============ */
.future-tool {
    background: rgba(245, 130, 32, 0.05);
    border: 2px dashed rgba(245, 130, 32, 0.3);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    color: #D96A14;
}
.future-tool i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}
.future-tool span {
    font-size: 0.8rem;
    font-weight: 800;
    display: block;
    line-height: 1.3;
}

/* ============ FORM (RSVP) ============ */
#rsvp-form input,
#rsvp-form select,
#rsvp-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}
#rsvp-form input:focus,
#rsvp-form select:focus,
#rsvp-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.1);
}

/* ============ MODALIDADE RADIO ============ */
.modalidade-radio {
    display: block;
    cursor: pointer;
    position: relative;
}
.modalidade-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.modalidade-content {
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #6B7280;
}
.modalidade-radio:hover .modalidade-content {
    border-color: rgba(245, 130, 32, 0.5);
}
.modalidade-radio input[type="radio"]:checked + .modalidade-content {
    border-color: #F58220;
    background: rgba(245, 130, 32, 0.05);
    color: #1F2937;
    box-shadow: 0 8px 16px -4px rgba(245,130,32,0.2);
}
.modalidade-radio input[type="radio"]:checked + .modalidade-content i {
    color: #F58220;
}

/* ============ Submit button states ============ */
#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============ Small adjustments ============ */
@media (max-width: 640px) {
    .roteiro-item {
        grid-template-columns: 48px 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }
    .roteiro-num {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
}
