/* /* ==========================================================================
   Configurações Globais (Reset de Margens para Tela Cheia Completa)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

body, html {
    width: 100%;
    height: 100%;
    background-color: #b2ccff; /* O fundo preenche toda a janela do navegador */
    overflow: hidden;
}

/* Container que ocupa 100% da viewport */
.app-fullscreen-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Topbar (Cabeçalho de ponta a ponta)
   ========================================================================== */
.topbar {
    width: 100%;
    height: 75px;
    background-color: #1a3a78;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.back-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #102652;
    background-color: transparent;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.title-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    min-width: 260px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-text {
    color: #ffffff;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Layout de Conteúdo Amplo e Distribuído
   ========================================================================== */
.content {
    flex: 1;
    display: flex;
    padding: 50px 60px;
    gap: 60px;
    align-items: flex-start;
}

/* Coluna do Perfil */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 260px;
    flex-shrink: 0;
}

.profile-name {
    background-color: #6b9cff;
    color: #102652;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.avatar-container {
    width: 200px;
    height: 200px;
    background-color: #3b66c4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 4px solid #1a3a78;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Ícone de Perfil */
.avatar-icon {
    width: 100%;
    height: 100%;
    position: relative;
}
.avatar-head {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.avatar-body {
    width: 120px;
    height: 85px;
    background-color: #ffffff;
    border-radius: 50% 50% 0 0;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Coluna Principal de Avaliações */
.evaluation-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.eval-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Containers de Estrelas Expandidos */
.stars-container {
    background-color: #6b9cff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.negative-indicator {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 6px;
    background-color: #102652;
    border-radius: 2px;
}

.star {
    font-size: 42px;
    color: transparent;
    -webkit-text-stroke: 2px #102652;
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
}
.star:hover {
    transform: scale(1.2);
}
.star.active {
    color: #102652;
}

/* Grade de Opções / Botões */
.tags-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag-btn {
    background-color: #6b9cff;
    color: #102652;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tag-btn::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    border: 2px solid #102652;
    border-radius: 2px;
    background-color: transparent;
    transition: all 0.2s ease;
}

.tag-btn:hover {
    background-color: #558eff;
}

.tag-btn.selected {
    background-color: #1a3a78;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(26, 58, 120, 0.2);
}
.tag-btn.selected::before {
    background-color: #ffffff;
    border-color: #ffffff;
}

/* Áreas de Texto */
.comment-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comment-label {
    color: #102652;
    font-weight: bold;
    font-size: 14px;
}

.comment-input {
    width: 100%;
    height: 80px;
    border: 1px solid rgba(16, 38, 82, 0.1);
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    color: #333;
    outline: none;
    resize: none;
    background-color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    transition: border-color 0.2s ease;
}

.comment-input:focus {
    border-color: #1a3a78;
}

/* ==========================================================================
   Rodapé / Seção de Envio Inferior
   ========================================================================== */
.footer-section {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 60px 40px 60px;
}

.submit-btn {
    background-color: #1a3a78;
    color: #ffffff;
    border: none;
    padding: 14px 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 58, 120, 0.25);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background-color: #102652;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 38, 82, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
} 
