/* Reset e Variáveis */
.satisfacao-page {
    min-height: 100vh;
    background: #0a0a0a !important;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Partículas - ATRÁS do conteúdo */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Header com z-index maior */
.header {
    z-index: 1000;
    position: relative;
}

/* Container principal com z-index maior que partículas */
.satisfacao-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.satisfacao-header {
    text-align: center;
    margin-bottom: 3rem;
}

.satisfacao-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.satisfacao-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.satisfacao-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.satisfacao-form {
    background: rgba(255, 215, 0, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 20;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-label .required {
    color: #ff4444;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.avaliacao-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-input {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.star-label:hover,
.star-input:checked ~ .star-label {
    color: #FFD700;
}

.star-label:hover ~ .star-label {
    color: rgba(255, 255, 255, 0.3);
}

.avaliacao-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #FFD700;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-submit {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0a0a;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 1rem;
    font-family: inherit;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 20;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.voltar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s;
    position: relative;
    z-index: 20;
}

.voltar-link:hover {
    gap: 1rem;
    color: #FFA500;
}

/* Garantir que o fundo seja preto */
body {
    background: #0a0a0a !important;
    color: #ffffff;
}

/* Remover qualquer background branco */
* {
    background-color: transparent !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .satisfacao-container {
        padding: 100px 15px 40px;
    }
    
    .satisfacao-title {
        font-size: 2rem;
    }
    
    .satisfacao-form {
        padding: 2rem;
    }
    
    .avaliacao-stars {
        gap: 0.3rem;
    }
    
    .star-label {
        font-size: 1.5rem;
    }
    
    .form-submit {
        padding: 1rem 2rem;
    }
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-top: 50px; /* Aumente o padding do header */

}

.site-logo {
    height: 60px;
    width: auto;
}

.site-name {
    color: #d4af37;
    font-size: 2.5em;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    margin: 0;
}