/* ================================================
   CSS PÁGINA DE SUGESTÕES
   assets/css/sugestoes.css
   ================================================ */

.sugestao-header {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 3rem 0;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.sugestao-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.sugestao-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.tipo-option {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: var(--bg-card);
}

.tipo-option:hover {
    border-color: var(--accent);
    background: #f0fdf4;
    transform: translateY(-2px);
}

.tipo-option input[type="radio"] {
    display: none;
}

.tipo-option:has(input[type="radio"]:checked) {
    border-color: var(--accent);
    background: #f0fdf4;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.tipo-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tipo-sugestao .tipo-icon {
    color: #3b82f6;
}

.tipo-reclamacao .tipo-icon {
    color: var(--danger);
}

.tipo-melhoria .tipo-icon {
    color: var(--accent);
}

.tipo-content h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.tipo-content small {
    color: var(--text-muted);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.info-box {
    background: #eff6ff;
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.info-box h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.info-box small {
    color: var(--text-muted);
}

