/* public/assets/css/style.css */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

header {
    background: #222629; /* andracita oscuro */
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    font-size: 20px;
    font-weight: 600;
}

header .subtitle {
    font-size: 12px;
    opacity: 0.8;
}

.container {
    max-width: 1100px;
    margin: 24px auto 40px;
    background: #fff;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

h1, h2, h3 {
    color: #222629;
}

button,
.btn {
    display: inline-block;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.05s ease;
}

button:hover,
.btn:hover {
    background: #e55f00;
    transform: translateY(-1px);
}

button:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 220px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    box-sizing: border-box;
}

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

.info-box {
    background: #f0f3f5;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 14px;
    border-left: 4px solid #ff6b00;
}

.step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.step-indicator .step {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    background: #e0e0e0;
    color: #555;
}

.step-indicator .step.active {
    background: #ff6b00;
    color: #fff;
}

.table-files {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table-files th,
.table-files td {
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 8px;
    font-size: 13px;
    text-align: left;
}

.table-files th {
    background: #f5f5f5;
}

.text-right {
    text-align: right;
}

.badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #222629;
    color: #fff;
}

.badge-large {
    background: #006fbf;
}

.total-box {
    margin-top: 20px;
    padding: 12px 14px;
    background: #222629;
    color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-box .label {
    font-size: 14px;
}

.total-box .amount {
    font-size: 18px;
    font-weight: 600;
}

.actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.notice-small {
    font-size: 12px;
    color: #555;
    margin-top: 6px;
}
