/* RESET & BASE - EXPERIÊNCIA DE APP NATIVO SEM ZOOM */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: manipulation;
  overscroll-behavior-y: none;
}

:root {
  --jt-red: #FC0102;
  --jt-red-hover: #e00102;
  --text-red: #E12A2C;
  --fee-red: #E42122;
  --bg-page: #F8F8F8;
  --card-bg: #FFFFFF;
  --subcard-bg: #F7F9FB;
  --text-primary: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --radius-card: 18px;
  --radius-subcard: 12px;
  --radius-btn: 8px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

/* Campos de entrada com seleção de texto permitida e tamanho fixo anti-auto-zoom (16px) */
input, select, textarea {
  user-select: text !important;
  -webkit-user-select: text !important;
  font-size: 16px !important;
  touch-action: manipulation;
}

/* ========================================================
   GLOBAL HEADER
   ======================================================== */
.global-header {
  width: 100%;
  background-color: #FFFFFF;
  border-top: 4px solid var(--jt-red);
  border-bottom: 4px solid var(--jt-red);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.header-container {
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}

.jt-logo {
  height: 29px;
  width: auto;
  max-width: 150px;
  display: block;
}

/* ========================================================
   LAYOUT & CONTAINER
   ======================================================== */
.page-wrapper {
  flex: 1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 14px 14px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.screen-view {
  display: none;
  width: 100%;
}

.screen-view.active {
  display: block;
}

/* ========================================================
   CARD PRINCIPAL
   ======================================================== */
.card-main {
  background-color: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 22px 18px 24px;
  border: 1px solid #ECECEC;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

/* ========================================================
   TELA 0: CONSULTA DE RASTREIO POR CPF
   ======================================================== */
.search-header {
  text-align: center;
  margin-bottom: 22px;
  padding-top: 4px;
}

.search-title {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.search-description {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 4px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.input-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.cpf-field {
  width: 100%;
  padding: 13px 14px 13px 42px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  background-color: var(--subcard-bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.cpf-field:focus {
  border-color: var(--jt-red);
  background-color: #FFFFFF;
}

.cpf-field::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.input-error-msg {
  display: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-red);
  margin-top: 3px;
}

.input-error-msg.visible {
  display: block;
}

.search-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* ========================================================
   SEÇÃO DE CONFIRMAÇÃO DE ENDEREÇO
   ======================================================== */
.address-confirm-card {
  background-color: #F9F9F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-subcard);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.address-confirm-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.address-pin-icon {
  width: 15px;
  height: 15px;
  color: var(--jt-red);
  flex-shrink: 0;
}

.address-confirm-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.cep-input-wrapper {
  position: relative;
}

.cep-mini-spinner {
  position: absolute;
  right: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid #E5E7EB;
  border-top-color: var(--jt-red);
  border-radius: 50%;
  animation: jtSpin 0.6s linear infinite;
}

.autofill-field {
  padding-left: 14px !important;
  font-size: 16px !important;
  background-color: #F4F4F4 !important;
  color: #374151 !important;
  cursor: default;
}

.address-two-cols {
  display: flex;
  gap: 8px;
}

.subfield {
  padding-left: 12px !important;
  font-size: 16px !important;
}

/* ========================================================
   OVERLAY TRANSLÚCIDO DE CARREGAMENTO (SEM CARD DE FUNDO)
   ======================================================== */
.tracking-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.tracking-overlay.active {
  display: flex;
}

.tracking-modal {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jt-spinner-modal {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0, 0, 0, 0.09);
  border-top-color: var(--jt-red);
  border-radius: 50%;
  animation: jtSpin 0.75s linear infinite;
  margin-bottom: 14px;
}

@keyframes jtSpin {
  to {
    transform: rotate(360deg);
  }
}

.tracking-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  letter-spacing: -0.2px;
}

.tracking-modal-subtext {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ========================================================
   TELA 1: ENCOMENDA RETIDA
   ======================================================== */
.alert-header {
  margin-bottom: 16px;
}

.alert-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.warning-icon {
  width: 21px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.alert-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin: 0;
  line-height: 1.2;
}

.greeting-text {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  padding: 0 4px;
}

.greeting-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* BLOCOS DE INFORMAÇÃO GERAIS */
.info-block {
  background-color: var(--subcard-bg);
  border-radius: var(--radius-subcard);
  padding: 13px 16px;
  margin-bottom: 11px;
}

/* BLOCO 1: DETALHES */
.details-block {
  border-left: 4px solid var(--jt-red);
}

.block-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.data-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #374151;
}

.data-label {
  color: #1F2937;
  font-weight: 600;
}

.data-value {
  font-weight: 400;
  color: #1F2937;
}

.status-alert {
  color: var(--text-red);
  font-weight: 700;
}

/* BLOCO 2: ENDEREÇO */
.block-title-with-icon {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}

.pin-icon {
  width: 14px;
  height: 17px;
  flex-shrink: 0;
  display: block;
}

.address-content p {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.45;
}

.address-content .cep-text {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

/* BLOCO 3: AVISO FISCAL */
.notice-text {
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
}

.time-urgency {
  color: var(--text-red);
  font-weight: 700;
}

/* BOTÃO DE REGULARIZAR */
.sticky-action-dock {
  width: 100%;
  margin-top: 13px;
  padding: 0;
}

.btn-primary {
  width: 100%;
  background: var(--jt-red);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(252, 1, 2, 0.28);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background-color: var(--jt-red-hover);
  box-shadow: 0 6px 16px rgba(252, 1, 2, 0.35);
}

.btn-primary:active {
  background-color: var(--jt-red-hover);
}

.lock-icon {
  width: 18px;
  height: 18px;
}

/* ========================================================
   TELA 2: PAGAMENTO VIA PIX
   ======================================================== */
.pix-header {
  margin-bottom: 16px;
}

.pix-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pix-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.pix-title {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.pix-subtitle {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  padding: 0 6px;
}

.pix-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* CARD DO VALOR DA TAXA (FIDELIDADE EXATA) */
.fee-card {
  background: #F9F9F9;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
  margin-bottom: 14px;
}

.fee-label {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: #4B5563;
  margin-bottom: 5px;
}

.fee-amount {
  font-size: 22px;
  font-weight: 700;
  color: #E30613;
  line-height: 1.2;
  letter-spacing: 0;
}

/* INSTRUÇÕES DO PIX */
.instructions-block {
  background-color: #F9F9F9;
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 15px;
  border: none;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.steps-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: #374151;
}

.steps-list li strong {
  color: #1F2937;
  font-weight: 700;
  margin-right: 3px;
}

/* CARD DO QR CODE */
.qr-container-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  margin: 0 auto 15px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-code-wrapper {
  background: #FFFFFF;
  display: inline-block;
  padding: 2px;
}

.qr-code-img {
  width: 215px;
  height: 215px;
  display: block;
  image-rendering: pixelated;
}

/* TIMER DE EXPIRAÇÃO DO PIX (10 MINUTOS) */
.pix-timer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 20px;
  padding: 6px 14px;
  width: fit-content;
  margin: 0 auto 14px auto;
  font-size: 13px;
  color: #991B1B;
}

.pix-timer-icon {
  width: 15px;
  height: 15px;
  color: #DC2626;
  flex-shrink: 0;
}

.pix-timer-container strong {
  font-weight: 700;
  color: #B91C1C;
  font-variant-numeric: tabular-nums;
}

/* SEÇÃO DO BOTÃO DE COPIAR PIX */
.pix-copy-section {
  margin-bottom: 10px;
}

.btn-copy-pix {
  width: 100%;
  background-color: var(--jt-red);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: 15.5px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(252, 1, 2, 0.25);
  transition: background-color 0.15s ease;
}

.btn-copy-pix:hover {
  background-color: var(--jt-red-hover);
}

.btn-copy-pix:active {
  background-color: var(--jt-red-hover);
}

.copy-icon {
  width: 18px;
  height: 18px;
}

/* STATUS / PULSE INDICATOR */
.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* LINK DE VOLTAR */
.back-link-wrapper {
  text-align: center;
  margin-top: 4px;
}

.back-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px 12px;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--jt-red);
}

/* ========================================================
   TELA 3: PAGAMENTO CONFIRMADO & LIBERAÇÃO DA ENCOMENDA
   ======================================================== */
.success-header {
  margin-bottom: 20px;
  text-align: center;
}

.success-badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  animation: successPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-badge-icon {
  width: 28px;
  height: 28px;
  stroke: #FFFFFF;
}

.success-title {
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.25;
}

.success-message {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.55;
  padding: 0 4px;
}

.success-message strong {
  color: #059669;
  font-weight: 700;
}

/* CARD DO ENDEREÇO DE ENTREGA CONFIRMADO */
.success-address-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.success-address-intro {
  font-size: 12px;
  color: #6B7280;
  margin: 2px 0 8px 0;
  font-weight: 500;
}

.success-address-box {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 14px;
}

.address-street-highlight {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

.address-ref-text {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  font-style: italic;
}

/* BLOCO DE DETALHES DA LIBERAÇÃO */
.success-details-block {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.success-block-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E5E7EB;
  flex-wrap: wrap;
}

.status-badge-liberado {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.protocolo-text {
  font-size: 11.5px;
  color: #6B7280;
  font-family: monospace;
  font-weight: 600;
}

.success-taxa-val {
  color: #059669 !important;
  font-weight: 700;
}

.success-prazo-val {
  color: #111827;
  font-weight: 700;
}

/* TIMELINE DE LOGÍSTICA J&T */
.timeline-block {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.logistics-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-top: 12px;
  padding-left: 2px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.step-icon-wrapper {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #10B981;
  margin-top: 1px;
  z-index: 2;
}

.step-pulse {
  background-color: #E30613;
  box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFFFFF;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.step-desc {
  font-size: 11.5px;
  color: #6B7280;
  line-height: 1.4;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 10px;
  width: 2px;
  height: calc(100% - 6px);
  background-color: #10B981;
  z-index: 1;
}

.success-action-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.btn-print-receipt {
  background: none;
  border: 1px solid #D1D5DB;
  color: #4B5563;
  border-radius: var(--radius-btn);
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-print-receipt:hover {
  background-color: #F3F4F6;
  color: #111827;
  border-color: #9CA3AF;
}

/* ========================================================
   TOAST NOTIFICATION
   ======================================================== */
.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
  background-color: #1F2937;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease;
  pointer-events: none;
  max-width: 90%;
  white-space: nowrap;
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================================
   HERO BANNER COM EFEITO INFINITO DE PONTA A PONTA
   ======================================================== */
.hero-banner-infinite {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #E20000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -14px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(254, 0, 0, 0.18);
}

.hero-banner-inner {
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 480px) {
  .hero-banner-infinite {
    margin-top: -16px;
  }

  .hero-banner-inner {
    max-width: 460px;
  }
}

/* ========================================================
   RODAPÉ OFICIAL J&T EXPRESS BRASIL (FUNDO VERMELHO)
   ======================================================== */
.official-footer {
  width: 100%;
  background-color: #DB0000;
  color: #FFFFFF;
  padding: 40px 16px 26px;
  margin-top: 36px;
  border-top: none;
  font-size: 13px;
  line-height: 1.6;
}

.footer-container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1.4fr 1.1fr;
    gap: 36px;
    align-items: start;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  height: 32px;
  width: auto;
  max-width: 155px;
  display: block;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  line-height: 1.55;
}

.footer-badge-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11.5px;
  font-style: italic;
}

.footer-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  fill: #FFFFFF;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text-group {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-value {
  color: #FFFFFF;
  font-size: 13.5px;
}

.contact-value strong {
  color: #FFFFFF;
  font-weight: 700;
}

.footer-corporate-info {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
  transition: opacity 0.15s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-links .dot {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
}

/* ========================================================
   RESPONSIVIDADE (MOBILE & DESKTOP)
   ======================================================== */
@media (min-width: 480px) {
  body {
    background-color: #F5F5F7;
  }

  .global-header {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .page-wrapper {
    margin: 16px auto 28px;
    padding: 0 14px;
    max-width: 440px;
  }

  .card-main {
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
}
