/* ============================================================
   GABINETE DIGITAL — VEREADOR TATÁ TEIXEIRA
   Design System — Apple-inspired, Clean & Institutional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --blue-dark:    #002D6A;
    --blue-primary: #003A7D;
    --blue-medium:  #0052A5;
    --blue-light:   #E8F0FB;
    --teal:         #00B5CC;
    --teal-dark:    #0096AB;
    --gold:         #FFB800;
    --gold-dark:    #E0A200;
    --white:        #FFFFFF;
    --gray-50:      #F8FAFC;
    --gray-100:     #F1F5F9;
    --gray-200:     #E2E8F0;
    --gray-300:     #CBD5E1;
    --gray-400:     #94A3B8;
    --gray-500:     #64748B;
    --gray-700:     #334155;
    --gray-900:     #0F172A;
    --success:      #059669;
    --success-bg:   #D1FAE5;
    --warning:      #D97706;
    --warning-bg:   #FEF3C7;
    --danger:       #DC2626;
    --danger-bg:    #FEE2E2;
    --purple:       #7C3AED;
    --purple-bg:    #EDE9FE;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,42,130,.09), 0 2px 6px rgba(0,42,130,.06);
    --shadow-lg:  0 12px 40px rgba(0,42,130,.14), 0 4px 12px rgba(0,42,130,.08);
    --shadow-xl:  0 24px 64px rgba(0,42,130,.18);

    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full:9999px;

    --transition: 220ms cubic-bezier(.4,0,.2,1);
    --font-sans:  'DM Sans', sans-serif;
    --font-display: 'Sora', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--gray-500); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.navbar-logo img { height: 38px; width: auto; }

/* ── Hamburguer ───────────────────────────────────────────────────── */
.navbar-inner { position: relative; } /* dropdown se ancora aqui */

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    padding: 9px;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: transform .28s ease, opacity .2s ease;
    transform-origin: center;
}
.nav-toggle:hover { background: var(--gray-50); border-color: var(--blue-primary); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(0,0,0,.13);
    min-width: 240px;
    overflow: hidden;
    z-index: 500;
}
.nav-dropdown.open {
    display: block;
    animation: navFadeIn .18s ease;
}
@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: 1rem 1.25rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: background .15s, color .15s;
    text-decoration: none;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--gray-50); color: var(--blue-primary); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-medium) 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-full);
    padding: .35rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .04em;
    margin-bottom: 1.5rem;
    position: relative;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 800;
    position: relative;
}
.hero h1 span { color: var(--teal); }
.hero p {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    position: relative;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font-sans);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-primary); color: var(--white); }
.btn-outline-white {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border-color: rgba(255,255,255,.4);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; border-radius: var(--radius-sm); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ===== SECTION ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: .75rem; }
.section-title p { max-width: 520px; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.card-body { padding: 2rem; }
.card-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--teal); }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; }

/* ===== STEPS ===== */
.steps { display: flex; gap: 0; position: relative; margin-bottom: 3rem; }
.steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: calc(16% + 24px);
    right: calc(16% + 24px);
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray-200);
    transition: all var(--transition);
    margin-bottom: .5rem;
}
.step.active .step-num {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 0 0 3px var(--blue-light);
}
.step.done .step-num {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 0 0 3px var(--success-bg);
}
.step-label { font-size: .78rem; font-weight: 600; color: var(--gray-400); display: block; }
.step.active .step-label { color: var(--blue-primary); }
.step.done .step-label { color: var(--success); }

/* ===== FORM ===== */
.form-section { display: none; animation: fadeSlide .3s ease; }
.form-section.active { display: block; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: .5rem;
    font-family: var(--font-display);
}
.form-label span { color: var(--danger); }
.form-control {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,181,204,.12);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%2394A3B8'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: .8rem; color: var(--gray-400); margin-top: .35rem; }
.form-error { font-size: .8rem; color: var(--danger); margin-top: .35rem; display: none; }
.form-control.is-invalid { border-color: var(--danger); }
.form-control.is-invalid + .form-error { display: block; }

/* ===== FILE UPLOAD ===== */
.upload-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--gray-50);
    position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--teal);
    background: rgba(0,181,204,.04);
}
.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.upload-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.upload-zone h4 { font-size: 1rem; color: var(--gray-700); margin-bottom: .25rem; }
.upload-zone p { font-size: .85rem; color: var(--gray-400); }
.file-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.file-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: .6rem .75rem;
    font-size: .875rem;
}
.file-item-icon { font-size: 1.25rem; flex-shrink: 0; }
.file-item-name { flex: 1; color: var(--gray-700); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item-size { color: var(--gray-400); font-size: .8rem; flex-shrink: 0; }
.file-item-remove { background: none; border: none; color: var(--gray-400); padding: .25rem; border-radius: 4px; transition: color var(--transition); }
.file-item-remove:hover { color: var(--danger); }

/* ===== GPS BUTTON ===== */
.gps-btn {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--gray-700);
}
.gps-btn:hover { border-color: var(--teal); color: var(--teal); }
.gps-btn.got-location { border-color: var(--success); color: var(--success); background: var(--success-bg); }

/* ===== SUMMARY CARD ===== */
.summary-row {
    display: flex;
    padding: .75rem 0;
    border-bottom: 1px solid var(--gray-100);
    gap: 1rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: .8rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .04em; min-width: 130px; flex-shrink: 0; }
.summary-value { font-size: .9rem; color: var(--gray-700); font-weight: 500; }

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .75rem;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.badge-gray { background: var(--gray-100); color: var(--gray-500); }
.badge-blue { background: var(--blue-light); color: var(--blue-medium); }
.badge-purple { background: var(--purple-bg); color: var(--purple); }
.badge-orange { background: var(--warning-bg); color: var(--warning); }
.badge-green { background: var(--success-bg); color: var(--success); }
.badge-red { background: var(--danger-bg); color: var(--danger); }

/* ===== ALERT ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}
.alert-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #A7F3D0; }
.alert-danger  { background: var(--danger-bg); color: var(--danger); border: 1px solid #FECACA; }
.alert-info    { background: var(--blue-light); color: var(--blue-medium); border: 1px solid #BFDBFE; }
.alert-warning { background: var(--warning-bg); color: var(--warning); border: 1px solid #FDE68A; }

/* ===== PROTOCOL BOX ===== */
.protocol-box {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}
.protocol-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--gold);
    margin: 1rem 0;
    padding: 1rem 2rem;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    display: inline-block;
}

/* ===== TRACK STATUS ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: .55rem;
    top: .5rem;
    bottom: .5rem;
    width: 2px;
    background: var(--gray-200);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -1.95rem;
    top: .25rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--gray-300);
    z-index: 1;
}
.timeline-item.active .timeline-dot { background: var(--teal); border-color: var(--teal); }
.timeline-item.done .timeline-dot   { background: var(--success); border-color: var(--success); }
.timeline-date { font-size: .78rem; color: var(--gray-400); margin-bottom: .2rem; font-weight: 500; }
.timeline-title { font-size: .95rem; font-weight: 600; color: var(--gray-700); margin-bottom: .25rem; font-family: var(--font-display); }
.timeline-text  { font-size: .875rem; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,.7);
    padding: 3rem 0 2rem;
    margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; font-family: var(--font-display); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer ul li a:hover { color: var(--teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: .5rem;
}

/* ===== LOADER ===== */
.loader {
    display: none;
    width: 20px; height: 20px;
    border: 2.5px solid rgba(255,255,255,.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Formulário */
    .form-row { grid-template-columns: 1fr; }
    .card-body { padding: 1.5rem; }

    /* Steps do formulário */
    .steps { gap: 0; }
    .steps::before { left: 20%; right: 20%; }
    .step-label { display: none; }
    .step-num { width: 34px; height: 34px; font-size: .8rem; }

    /* Resumo */
    .summary-label { min-width: 90px; font-size: .75rem; }
    .summary-value { font-size: .875rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* Hero */
    .hero { padding: 3.5rem 1.25rem 3rem; }
    .hero h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
    .section { padding: 3rem 0; }
    .section-title { margin-bottom: 2rem; }

    /* Tipos grid - 2 colunas em mobile */
    .tipos-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .tipo-chip { font-size: .8rem; padding: .6rem .75rem; }

    /* Upload zone */
    .upload-zone { padding: 2rem 1rem; }
    .upload-zone h4 { font-size: .9rem; }

    /* GPS button */
    .gps-btn { font-size: .875rem; padding: .75rem 1rem; }

    /* Detail grid do acompanhar */
    .detail-grid { grid-template-columns: 1fr; }

    /* Status track - texto menor */
    .track-dot { width: 32px; height: 32px; font-size: .85rem; }
    .track-label { font-size: .62rem; }

    /* Protocol box */
    .protocol-box { padding: 2rem 1.25rem; }

    /* Search card */
    .search-card { padding: 1.75rem 1.25rem; }

    /* How steps - uma coluna */
    .how-step { padding: 1.25rem; gap: 1rem; }
    .how-num { width: 40px; height: 40px; font-size: 1rem; flex-shrink: 0; }
}

@media (max-width: 480px) {
    /* Botões hero */
    .btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }

    /* Card padding */
    .card-body { padding: 1.25rem; }

    /* Tipos - 1 coluna em telas muito pequenas */
    .tipos-grid { grid-template-columns: 1fr; }

    /* Status track sem labels */
    .track-label { display: none; }
    .track-dot { width: 28px; height: 28px; font-size: .75rem; }

    /* Steps sem labels */
    .steps::before { left: 15%; right: 15%; }

    /* Formulário */
    .form-body { padding: 1.25rem; }
    .steps { padding: 1.25rem 1.25rem 0; }

    /* Navbar logo menor */
    .navbar-logo img { height: 32px; }
    .navbar-inner { height: 56px; padding: 0 1rem; }

    /* Footer compacto */
    .footer { padding: 2rem 0 1.5rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

    /* Protocol number */
    .protocol-number { font-size: clamp(1rem, 4.5vw, 1.8rem); padding: .75rem 1rem; }

    /* Botão enviar - largura total */
    #btn-submit, #btn-next, #btn-prev { padding: .7rem 1.1rem; font-size: .875rem; }

    /* Navegação do formulário */
    div[style*="padding:1.25rem 2rem"] { padding: 1rem 1.25rem !important; }

    /* CTA section */
    .cta-section { padding: 3.5rem 1.25rem; }
    .cta-section h2 { font-size: 1.5rem; }
}
