/**
 * /assets/css/style.css
 * Sistema de Design Premium - Voxion Studio
 */

/* Import de Fontes */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Cores Obrigatórias */
    --orange: #F18535;
    --brown: #31251F;
    --brown-light: #4A382F;
    --sand: #D8C5B6;
    --raisin: #262626;
    --off-white: #F1F1F1;
    
    /* Variações de Transparência e Sombras */
    --orange-hover: #e07223;
    --orange-light: rgba(241, 133, 53, 0.1);
    --shadow-soft: 0 10px 30px rgba(49, 37, 31, 0.08);
    --shadow-hover: 0 15px 40px rgba(49, 37, 31, 0.14);
    
    /* Tipografia */
    --font-title: 'JetBrains Mono', monospace;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--off-white);
    color: var(--brown);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Títulos e Labels (JetBrains Mono) */
h1, h2, h3, h4, h5, h6, label, .title-bold {
    font-family: var(--font-title);
    font-weight: 700;
}

/* Barra de Progresso Fixa no Topo */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: var(--brown);
    color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.progress-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-step-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sand);
    font-weight: 600;
}

.progress-module-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--off-white);
}

.progress-track {
    width: 240px;
    height: 6px;
    background-color: var(--sand);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--orange);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand-logo-img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain;
    display: block;
}

/* Fallback do glifo circular */
.logo-circle {
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--brown);
    font-size: 18px;
}

.brand-text {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: var(--off-white);
}

/* Espaçamento do Topo do Body por causa da Barra Fixa */
main {
    margin-top: 64px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

/* Container Centralizado Desktop */
.app-container {
    width: 100%;
    max-width: 1040px;
    min-height: 520px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: appEntrance 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes appEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estrutura das Páginas em Duas Colunas (Módulos / Perguntas Únicas) */
.layout-split {
    display: flex;
    flex: 1;
    min-height: 520px;
}

/* Painel Esquerdo (Decorativo e Identificação de Seção) */
.panel-left {
    width: 35%;
    background-color: var(--brown);
    color: var(--off-white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Círculos de Marca (Efeito Parallax Decorativo) */
.parallax-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.parallax-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 56, 47, 0.4) 0%, rgba(49, 37, 31, 0.4) 100%);
    border: 1px solid rgba(216, 197, 182, 0.05);
    transition: transform 0.1s ease-out;
}

.circle-1 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: -60px;
}

.circle-2 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -20px;
}

.panel-left-content {
    position: relative;
    z-index: 2;
}

.panel-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--orange-light);
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.panel-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--off-white);
}

.panel-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--sand);
    line-height: 1.5;
}

.panel-left-footer {
    position: relative;
    z-index: 2;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 12px;
    color: var(--sand);
}

/* Painel Direito (Campos de Formulário) */
.panel-right {
    width: 65%;
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

.form-group-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

/* Transições entre Seções (Slide e Fade) */
.section-view {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 350ms ease-out, transform 350ms ease-out;
}

.section-view.active {
    opacity: 1;
    transform: translateX(0);
}

/* Elementos de Formulário */
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--brown);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label .required {
    color: var(--orange);
}

.form-hint {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 11px;
    color: var(--brown-light);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Inputs, Selects e Textareas */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    background-color: var(--off-white);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--brown);
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--orange);
    background-color: #ffffff;
}

textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Contador de caracteres discreto */
.char-counter {
    font-size: 11px;
    color: var(--raisin);
    text-align: right;
    margin-top: 4px;
    font-family: var(--font-body);
}

/* Layout em Duas Colunas do Cadastro (Etapa 1) */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
}

.grid-span-full {
    grid-column: span 2;
}

/* Estilização Customizada de Selects */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2331251F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Grid de Cards da Etapa 2 (Seleção de Módulos) */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.card-module {
    background-color: var(--off-white);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.card-module:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
    background-color: #ffffff;
}

.card-module:active {
    transform: scale(0.98);
}

.card-module.selected {
    border-color: var(--orange);
    background-color: var(--orange-light);
    box-shadow: var(--shadow-soft);
}

.card-header-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card-icon-circle {
    width: 44px;
    height: 44px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--raisin);
    flex-shrink: 0;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    border: 1px solid var(--sand);
}

.card-module.selected .card-icon-circle {
    background-color: var(--orange);
    color: var(--brown);
    border-color: var(--orange);
}

.card-title-group {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.3;
}

.card-description {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 13px;
    color: var(--brown-light);
    margin-top: 10px;
    line-height: 1.45;
}

.card-footer-info {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-estimate {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.card-module.selected .card-checkbox {
    background-color: var(--orange);
    border-color: var(--orange);
}

.card-checkbox::after {
    content: '';
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card-module.selected .card-checkbox::after {
    opacity: 1;
}

.cards-note {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 12px;
    color: var(--brown-light);
    text-align: center;
    margin-top: 12px;
    margin-bottom: 28px;
}

/* Área de Ações e Botões */
.actions-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--sand);
    padding-top: 32px;
}

.btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--off-white);
    box-shadow: 0 4px 14px rgba(241, 133, 53, 0.3);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    transform: scale(1.01);
    box-shadow: 0 6px 20px rgba(241, 133, 53, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brown-light);
    border: 1px solid var(--sand);
}

.btn-secondary:hover {
    background-color: var(--off-white);
    color: var(--brown);
    transform: scale(1.01);
}

.btn-secondary:active {
    transform: scale(0.98);
}

/* Componente de Compliance (Acordeão Dinâmico) */
.compliance-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sand);
    background-color: var(--sand);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.compliance-header {
    background-color: var(--sand);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background-color var(--transition-fast);
}

.compliance-header:hover {
    background-color: rgba(216, 197, 182, 0.8);
}

.compliance-header-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.compliance-icon {
    width: 36px;
    height: 36px;
    background-color: var(--orange);
    color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.compliance-title-text {
    display: flex;
    flex-direction: column;
}

.compliance-title-text h4 {
    font-size: 15px;
    color: var(--brown);
    margin: 0;
}

.compliance-title-text p {
    font-size: 12px;
    color: var(--brown-light);
    margin: 0;
}

.compliance-chevron {
    font-size: 14px;
    color: var(--brown-light);
    transition: transform var(--transition-normal);
}

.compliance-container.open .compliance-chevron {
    transform: rotate(180deg);
}

.compliance-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    background-color: #ffffff;
}

.compliance-container.open .compliance-content {
    max-height: 500px;
    transition: max-height var(--transition-normal) ease-in;
}

.compliance-content-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--sand);
}

.compliance-intro {
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.compliance-list li {
    font-size: 14px;
    color: var(--brown-light);
    position: relative;
    padding-left: 20px;
}

.compliance-list li::before {
    content: "•";
    color: var(--orange);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

.compliance-outro {
    font-size: 13px;
    color: var(--brown);
    line-height: 1.45;
    padding-top: 8px;
    border-top: 1px dashed var(--sand);
}

.compliance-footer-note {
    font-size: 11px;
    color: var(--raisin);
    font-style: italic;
}

/* Sub-blocos do Tráfego Pago (com Sub-Progresso) */
.subblock-section {
    display: none;
}

.subblock-section.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 300ms ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.subblock-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--off-white);
    padding-bottom: 12px;
}

.subblock-indicator {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--orange-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.subblock-dots {
    display: flex;
    gap: 6px;
}

.subblock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--sand);
    transition: background-color var(--transition-fast);
}

.subblock-dot.active {
    background-color: var(--orange);
}

/* Checkbox simples e inputs de arquivo */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--brown-light);
    user-select: none;
}

.checkbox-label-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--sand);
    border-radius: 4px;
    outline: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkbox-label-option input[type="checkbox"]:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.checkbox-label-option input[type="checkbox"]:checked::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-0.5px, -0.5px);
    display: block;
}

/* Upload de Arquivo */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--sand);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    background-color: var(--off-white);
}

.file-upload-wrapper:hover {
    border-color: var(--orange);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    font-size: 14px;
    color: var(--brown-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.file-upload-icon {
    font-size: 24px;
    color: var(--orange);
}

.file-upload-info {
    font-size: 11px;
    color: var(--raisin);
    margin-top: 4px;
}

.file-upload-name {
    font-size: 13px;
    font-weight: bold;
    color: var(--orange);
    margin-top: 8px;
    display: none;
}

/* Tela de Confirmação (Sucesso) */
.success-screen {
    text-align: center;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    min-height: 480px;
    animation: scaleUp 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--orange-light);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid var(--orange);
}

.success-title {
    font-size: 32px;
    color: var(--brown);
    line-height: 1.2;
}

.success-body {
    font-size: 16px;
    color: var(--brown-light);
    max-width: 500px;
    line-height: 1.6;
}

/* Checkin de Performance (Fase 2 - Escopo reduzido) */
.checkin-body {
    background-color: var(--brown);
    color: var(--off-white);
}

.checkin-container {
    max-width: 520px;
    width: 100%;
    background-color: var(--brown-light);
    border: 1px solid var(--sand);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkin-header {
    text-align: center;
    margin-bottom: 24px;
}

.checkin-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.checkin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--sand);
    opacity: 0.4;
    transition: opacity var(--transition-fast), background-color var(--transition-fast);
}

.checkin-dot.active {
    background-color: var(--orange);
    opacity: 1;
}

.checkin-question-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 32px;
}

.checkin-question-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* Escala 0 a 10 */
.rating-scale {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 6px;
    width: 100%;
    margin-bottom: 16px;
}

.rating-button {
    height: 44px;
    background-color: var(--brown);
    border: 1px solid var(--sand);
    color: var(--off-white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.rating-button:hover,
.rating-button.active {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--brown);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--sand);
    width: 100%;
}

/* Opções em Lista Botões (Checkin) */
.options-list-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--brown);
    border: 1px solid var(--sand);
    color: var(--off-white);
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.option-btn:hover,
.option-btn.active {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--brown);
}

/* Responsividade */
@media (max-width: 900px) {
    .layout-split {
        flex-direction: column;
    }
    
    .panel-left {
        width: 100%;
        min-height: 130px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .parallax-bg {
        display: none; /* Remove elementos decorativos pesados no mobile */
    }
    
    .panel-left-content {
        margin: 0;
    }
    
    .panel-badge {
        display: inline-block;
        margin-bottom: 8px;
        font-size: 10px;
    }
    
    .panel-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .panel-subtitle {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .panel-left-footer {
        display: none; /* Oculta rodapé repetido no cabeçalho mobile */
    }
    
    .panel-right {
        width: 100%;
        padding: 28px 20px;
    }
}

@media (max-width: 600px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
    
    .grid-span-full {
        grid-column: span 1;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .rating-scale {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 6px;
    }
    
    .rating-scale button {
        height: 40px;
        font-size: 14px;
    }
    
    .app-container {
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }
    
    main {
        padding: 0;
        margin-top: 64px;
    }
    
    /* Otimização da Barra de Progresso Mobile */
    .progress-bar-container {
        padding: 0 16px;
        position: fixed;
        height: 64px;
    }
    
    .progress-track {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100% !important;
        height: 3px !important;
        border-radius: 0 !important;
        background-color: rgba(216, 197, 182, 0.3); /* Sand suave */
    }
    
    .progress-fill {
        border-radius: 0 !important;
    }
    
    .progress-info {
        text-align: right;
    }
    
    .progress-step-text {
        font-size: 10px;
    }
    
    .progress-module-title {
        font-size: 13px;
    }
    
    .actions-footer {
        padding-top: 24px;
        margin-top: 24px;
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .actions-footer .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
