/* Definições gerais para o corpo da página (Material Design) */
body {
    /* Usando Roboto como padrão Material Design */
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    /* Fundo branco-gelo */
    background-color: #F8F9FA;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 650px; /* Levemente mais largo para visual pro */
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    /* Sombra Material (elevation 8) */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #212121;
    font-weight: 500;
    margin-bottom: 30px;
}

h2 {
    /* Cor primária Material */
    color: #4285F4; 
    border-bottom: none; /* Material Design evita linhas */
    padding-bottom: 5px;
    margin-top: 0;
    font-weight: 400; /* Mais leve */
    font-size: 1.6em;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff; /* Fundo branco para seções, usando a sombra do container */
    border-radius: 8px;
    /* Sombra mais leve para destacar a seção levemente (elevation 2) */
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); 
    border: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500; /* Medium weight para destaque */
    color: #555;
    font-size: 0.95em;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #DADCE0; /* Cor de borda Material */
    border-radius: 4px; /* Bordas levemente mais nítidas */
    box-sizing: border-box;
    font-size: 1em;
    transition: all 0.2s ease-in-out;
}

.form-input:focus, .form-select:focus {
    /* Borda azul primária ao focar */
    border-color: #4285F4;
    box-shadow: 0 0 0 1px #4285F4;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px; /* Espaçamento padrão maior */
}

.col-half {
    flex: 1;
}

.option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* Linha divisória sutil Material */
    border-bottom: 1px solid #ECEFF1; 
}

/* Garante que o último item de lista não tenha linha */
.section .option-row:last-of-type {
    border-bottom: none;
}

.option-row label {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    font-size: 1em;
    color: #444;
}

.option-row input[type="radio"], 
.option-row input[type="checkbox"] {
    margin-right: 15px;
    /* Resetando o scale para o estilo nativo do Material (ou seria estilizado com CSS) */
    transform: none; 
    cursor: pointer;
}

.price-tag {
    /* Cor primária para preços */
    color: #4285F4; 
    font-weight: 700;
    font-size: 1.2em;
}

.summary {
    background-color: #E8F0FE; /* Fundo mais claro e suave para destaque */
    border: 1px solid #B0C4DE;
    padding: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #3C4043;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.6em; /* Aumentado para mais destaque */
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    padding-top: 15px;
    /* Linha divisória sutil Material */
    border-top: 1px solid #DADCE0;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    /* Cor primária de Ação (Ação de Sucesso - verde) */
    background-color: #0F9D58; 
    color: white;
    border: none;
    font-size: 1.3em;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    /* Sombra para botão (elevation 2) */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: #0B8043;
    /* Sombra mais alta no hover (elevation 4) */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-submit:disabled {
    background-color: #B0C4DE;
    color: #888;
    box-shadow: none;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

/* Estilo para o seletor de tamanho da camiseta */
#tamanho-camiseta {
    background: #F1F3F4 !important; /* Material levemente cinza */
    border: 1px solid #DADCE0 !important;
}

/* Ícone de camiseta melhorado com Material Icons */
.material-icons-small {
    font-size: 1.5em; /* Tamanho do ícone */
    color: #4285F4; /* Cor primária */
    vertical-align: middle;
}

/* Responsividade básica Material */
@media (max-width: 700px) {
    .container {
        margin: 0;
        padding: 15px;
        border-radius: 0;
        box-shadow: none;
    }
    body {
        padding: 0;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}