/* VetQR — site público */

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

.public-body {
    --pub-primary: #0d9488;
    --pub-primary-dark: #0f766e;
    --pub-accent: #2563eb;
    --pub-bg: #f8fafc;
    --pub-hero-from: #ecfdf5;
    --pub-hero-to: #eff6ff;
    --pub-text: #0f172a;
    --pub-muted: #64748b;
    --pub-card: #ffffff;
    --pub-border: #e2e8f0;
    --pub-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --pub-radius: 14px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pub-bg);
    color: var(--pub-text);
}

.public-body h1, .public-body h2, .public-body h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header */
.public-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pub-border);
}
.public-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--pub-text) !important;
}
.public-nav a {
    color: var(--pub-muted);
    font-weight: 500;
    transition: color 0.15s;
}
.public-nav a:hover { color: var(--pub-primary); }
.public-nav .nav-cta {
    background: var(--pub-primary);
    color: white !important;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}
.public-nav .nav-cta:hover { background: var(--pub-primary-dark); }

.public-main { max-width: 1040px; padding: 0 1.25rem 3rem; }

.public-header-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.public-flash {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem 0;
}

.public-inline-flash {
    margin: 1.5rem 0 0;
    border-radius: 10px;
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 3.5rem 1.5rem 4rem;
    margin: 0 -1.25rem 2.5rem;
    background: linear-gradient(145deg, var(--pub-hero-from) 0%, var(--pub-hero-to) 100%);
    border-bottom: 1px solid var(--pub-border);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: white;
    border: 1px solid var(--pub-border);
    color: var(--pub-primary-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    box-shadow: var(--pub-shadow);
}
.hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.15;
    max-width: 680px;
    margin: 0 auto 1rem;
}
.hero-lead {
    font-size: 1.0625rem;
    color: var(--pub-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}
.hero-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

.public-body .btn-primary {
    background: var(--pub-primary);
    border-color: var(--pub-primary);
}
.public-body .btn-primary:hover {
    background: var(--pub-primary-dark);
    border-color: var(--pub-primary-dark);
}
.public-body .btn-lg {
    padding: 0.9rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.125rem;
    margin-bottom: 2.5rem;
}
.feature-card {
    background: var(--pub-card);
    border-radius: var(--pub-radius);
    padding: 1.5rem;
    border: 1px solid var(--pub-border);
    box-shadow: var(--pub-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ecfdf5, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.feature-card p { font-size: 0.9rem; color: var(--pub-muted); line-height: 1.55; }

/* Info / trust */
.info-box {
    background: var(--pub-card);
    border-radius: var(--pub-radius);
    padding: 2rem;
    border: 1px solid var(--pub-border);
    box-shadow: var(--pub-shadow);
}
.info-box h2 { font-size: 1.35rem; margin-bottom: 0.75rem; }

.clarify-box {
    background: var(--pub-card);
    border-radius: var(--pub-radius);
    padding: 2rem;
    border: 1px solid var(--pub-border);
    box-shadow: var(--pub-shadow);
    margin-bottom: 2.5rem;
}
.clarify-box h2 { font-size: 1.35rem; margin-bottom: 1rem; }
.clarify-box p { margin-bottom: 1rem; color: var(--pub-text); line-height: 1.7; font-size: 1rem; }
.clarify-box p:last-child { margin-bottom: 0; }

.trust-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--pub-border);
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--pub-primary); font-family: 'Fraunces', serif; }
.trust-item span { font-size: 0.8125rem; color: var(--pub-muted); }

/* Cards gerais */
.public-card {
    background: var(--pub-card);
    border-radius: var(--pub-radius);
    padding: 1.75rem;
    border: 1px solid var(--pub-border);
    box-shadow: var(--pub-shadow);
    margin-bottom: 1.5rem;
}
.public-card-wide { max-width: 640px; margin: 2rem auto; }
.public-card h2 { font-size: 1.3rem; margin-bottom: 1rem; }

/* Formulário cadastro */
.wizard-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.wizard-step {
    flex: 1;
    height: 4px;
    background: var(--pub-border);
    border-radius: 2px;
}
.wizard-step.active { background: var(--pub-primary); }

.public-body .form-section {
    background: #fafbfc;
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}
.public-body .form-section legend {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    padding: 0 0.25rem;
}
.public-body input[type="text"],
.public-body input[type="email"],
.public-body input[type="tel"],
.public-body select,
.public-body textarea {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1px solid var(--pub-border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.public-body input:focus,
.public-body select:focus,
.public-body textarea:focus {
    outline: none;
    border-color: var(--pub-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* Formulário cadastro (comecar) */
.public-body .form-cadastro {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.public-body .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.public-body .form-row > label,
.public-body .form-row > .label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pub-text);
}

.public-body .form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.public-body .form-row.two-cols > div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.public-body .form-row .hint {
    margin: 0.25rem 0 0;
}

.public-body .radio-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    line-height: 1.45;
}

.public-body .radio-group input[type="radio"] {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.public-body .form-actions {
    margin-top: 0.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pub-border);
    display: flex;
    justify-content: stretch;
}

.public-body .form-actions .btn-lg {
    width: 100%;
    justify-content: center;
}

.public-card-wide h1 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
}

.public-card-wide > .text-muted {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.badge-icp {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: #ecfdf5;
    color: #047857;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.badge-icp-inline {
    display: inline-block;
    margin: 0 0 0 0.5rem;
    vertical-align: middle;
}

.aviso-icp {
    font-size: 0.8125rem;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    margin: 0.5rem 0 0;
    line-height: 1.45;
}

.icp-info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.icp-info-box strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #0c4a6e;
}

.icp-info-box a {
    color: var(--pub-primary-dark);
    font-weight: 600;
}

.card-acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.65rem;
}

.card-acoes .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.btn-iti {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    color: #0369a1;
    padding: 0.375rem 0.65rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-iti:hover {
    background: #e0f2fe;
    color: #0c4a6e;
}

.cert-escolhida-banner .btn-iti {
    margin-top: 0.65rem;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.produto-selector {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pub-border);
}

.produto-selector label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.produto-selector select {
    width: 100%;
    max-width: 360px;
}

.produto-selector .hint {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Loading — busca de preços */
.loading-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.loading-card {
    width: 100%;
    max-width: 520px;
    background: var(--pub-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--pub-shadow);
    text-align: center;
}

.loading-card.hidden { display: none; }

.loading-spinner {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    border: 4px solid #e2e8f0;
    border-top-color: var(--pub-primary);
    border-radius: 50%;
    animation: pub-spin 0.9s linear infinite;
}

@keyframes pub-spin {
    to { transform: rotate(360deg); }
}

.loading-card h1 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.loading-lead {
    color: var(--pub-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.loading-warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.loading-steps {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    text-align: left;
}

.loading-step {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.75rem;
    font-size: 0.9rem;
    color: var(--pub-muted);
}

.loading-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #cbd5e1;
}

.loading-step.active {
    color: var(--pub-text);
    font-weight: 600;
}

.loading-step.active::before {
    background: var(--pub-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.loading-step.done {
    color: #047857;
}

.loading-step.done::before {
    background: #10b981;
}

.loading-protocolo {
    font-size: 0.8125rem;
    color: var(--pub-muted);
    margin: 0;
}

.loading-error .btn { margin-top: 1rem; }

/* Jornada */
.jornada-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
    flex-wrap: wrap;
}
.protocolo-badge {
    background: linear-gradient(135deg, #ecfdf5, #dbeafe);
    color: var(--pub-primary-dark);
    padding: 0.3rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.progress-tracker { display: flex; gap: 0.375rem; margin-bottom: 1.25rem; overflow-x: auto; }
.progress-step {
    flex: 1;
    min-width: 72px;
    text-align: center;
    padding: 0.875rem 0.375rem;
    background: var(--pub-card);
    border: 1px solid var(--pub-border);
    border-radius: 10px;
    opacity: 0.45;
    transition: opacity 0.2s;
}
.progress-step.done { opacity: 0.85; }
.progress-step.current {
    opacity: 1;
    border-color: var(--pub-primary);
    background: #ecfdf5;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15);
}
.step-num { display: block; font-weight: 700; font-size: 1rem; color: var(--pub-primary); }
.step-label { font-size: 0.625rem; color: var(--pub-muted); text-transform: uppercase; letter-spacing: 0.03em; }

.recomendacao-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #99f6e4;
    border-radius: var(--pub-radius);
    padding: 1.5rem;
}
.recomendacao-box h3 { color: #115e59; font-size: 1.25rem; }

.precos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.preco-card {
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    padding: 1.25rem;
    background: white;
    transition: border-color 0.15s;
}
.preco-card.melhor {
    border-color: var(--pub-primary);
    background: linear-gradient(to bottom, #ecfdf5, white);
    box-shadow: 0 0 0 1px var(--pub-primary);
}
.preco-card.melhor::before {
    content: 'Melhor preço';
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pub-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.preco-valor { font-size: 1.625rem; font-weight: 700; font-family: 'Fraunces', serif; color: var(--pub-text); }
.preco-obs { font-size: 0.75rem; line-height: 1.45; color: #64748b; margin: 0.35rem 0 0; }
.preco-erro { color: #b45309; font-size: 0.875rem; margin: 0.35rem 0; line-height: 1.4; }

.compra-opcoes-box {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.55;
}
.compra-opcoes-box strong { display: block; color: #0f766e; margin-bottom: 0.5rem; }
.compra-opcoes-box ul { margin: 0; padding-left: 1.15rem; }
.compra-opcoes-box li + li { margin-top: 0.35rem; }

.passos-lista { list-style: none; margin: 0; padding: 0; counter-reset: passo; }
.passos-lista li {
    counter-increment: passo;
    position: relative;
    padding: 1rem 1rem 1rem 3.25rem;
    margin-bottom: 0.75rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid var(--pub-border);
}
.passos-lista li::before {
    content: counter(passo);
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--pub-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-cta {
    text-align: center;
    background: linear-gradient(145deg, #ecfdf5 0%, #f0fdfa 35%, #eff6ff 100%);
    border: 2px solid #6ee7b7;
    border-radius: 16px;
    padding: 2.75rem 1.75rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.14);
}

.donate-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #047857;
    background: #d1fae5;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin: 0 0 1rem;
}

.donate-cta h2 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    margin: 0 0 0.85rem;
    color: #134e4a;
    line-height: 1.3;
}

.donate-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #334155;
    max-width: 36rem;
    margin: 0 auto 1.25rem;
}

.donate-quote {
    margin: 0 auto 1.35rem;
    padding: 1rem 1.25rem;
    max-width: 34rem;
    background: rgba(255, 255, 255, 0.75);
    border-left: 4px solid #0d9488;
    border-radius: 0 10px 10px 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    text-align: left;
}

.donate-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.5rem;
    max-width: 22rem;
    text-align: left;
    font-size: 0.9rem;
    color: #334155;
}

.donate-benefits li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.45rem;
}

.donate-benefits li::before {
    content: "♥";
    position: absolute;
    left: 0;
    color: #0d9488;
    font-size: 0.75rem;
    top: 0.15rem;
}

.donate-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d9488, #059669);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-donate:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn-donate-header {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #047857;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.btn-donate-header:hover {
    background: #d1fae5;
    color: #065f46;
}

.donate-footnote {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
}

.donate-page .donate-lead {
    text-align: left;
    max-width: none;
}

.donate-thanks {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    color: #047857;
    font-weight: 600;
}

/* Pix */
.pix-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: var(--pub-radius);
    border: 1px solid var(--pub-border);
}
.pix-qr {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    box-shadow: var(--pub-shadow);
}

.public-footer {
    background: white;
    border-top: 1px solid var(--pub-border);
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--pub-muted);
}
.public-footer a { color: var(--pub-primary); text-decoration: none; }
.public-footer a:hover { text-decoration: underline; }

.cert-picker label { display: block; margin-bottom: 0.75rem; font-weight: 500; }
.icp-nota { margin-bottom: 1rem; font-size: 0.875rem; color: var(--pub-muted); }
.preco-card { cursor: pointer; position: relative; }
.preco-card input[type="radio"] { position: absolute; top: 1rem; right: 1rem; }
.preco-card.selected { border-color: var(--pub-primary); box-shadow: 0 0 0 2px rgba(13,148,136,0.25); }
.badge-melhor {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: #ecfdf5;
    color: #047857;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.35rem;
}
.preco-hint { font-size: 0.8rem; color: var(--pub-muted); margin: 0.35rem 0; }
.cert-escolhida-banner {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}
.cert-escolhida-banner .hint { margin: 0.35rem 0 0; font-size: 0.875rem; }
.aguardando-escolha {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}
.aguardando-escolha h2 { color: var(--pub-muted); }
.etapa-hint { font-size: 0.8rem; color: var(--pub-muted); margin: 0.35rem 0 0; }
.progress-step.locked { opacity: 0.45; }
.btn-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.subsection { font-size: 1rem; margin: 1.25rem 0 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--pub-primary-dark); }
.links-ref { font-size: 0.875rem; margin-top: 0.75rem; }
.links-ref a { color: var(--pub-primary); }
.aviso-box { background: #fffbeb; border: 1px solid #fde68a; padding: 1rem; border-radius: 10px; margin-top: 1.25rem; font-size: 0.9rem; line-height: 1.55; }

.validacao-iti-card {
    border: 2px solid #0d9488;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 42%);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.12);
}

.validacao-iti-card h2 {
    color: #0f766e;
    margin-bottom: 0.65rem;
}

.validacao-iti-lead {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    color: #134e4a;
}

.validacao-iti-passos {
    margin: 0 0 1.25rem 1.15rem;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #334155;
}

.validacao-iti-passos li + li {
    margin-top: 0.45rem;
}

.validacao-iti-dica {
    background: #fff;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #334155;
}

.validacao-iti-dica strong {
    display: block;
    color: #0f766e;
    margin-bottom: 0.35rem;
}

.validacao-iti-dica p {
    margin: 0.35rem 0 0;
}

.validacao-iti-dica code {
    font-size: 0.8125rem;
    background: #f1f5f9;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

.btn-validar-iti {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    background: #0d9488;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn-validar-iti:hover {
    background: #0f766e;
    color: #fff;
    transform: translateY(-1px);
}

@media (min-width: 640px) {
    .btn-validar-iti {
        width: auto;
        min-width: 20rem;
    }
}

@media (max-width: 600px) {
    .hero { padding: 2.5rem 1rem 3rem; }
    .public-body .form-row.two-cols,
    .two-cols { grid-template-columns: 1fr !important; }
    .progress-step .step-label { display: none; }
    .jornada-header { flex-direction: column; }
    .public-card-wide { margin: 1rem auto; padding: 1.25rem; }
}
