/* ============================================================
   Phoenix Soluções Corporativas — folha de estilo principal
   Paleta:  azul #2273c3 · marinho #264673 / #344256 · areia #f5a623
   Fontes:  Montserrat (títulos) · Inter (texto)
   ============================================================ */

:root {
  --blue:        #2273c3;
  --blue-dark:   #1a5da3;
  --navy:        #264673;
  --navy-900:    #0e1a2e;
  --navy-800:    #15233d;
  --slate:       #344256;
  --gray:        #65758b;
  --gray-light:  #9ca3af;
  --line:        #e2e8f0;
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-blue:     #eef4fb;
  --sky:         #93c5fd;
  --amber:       #f5a623;
  --gold:        #c8941f;
  --brand-green: #16432f;
  --shadow-sm:   0 1px 3px rgba(15, 30, 60, .08);
  --shadow:      0 10px 30px rgba(15, 30, 60, .08);
  --shadow-lg:   0 20px 50px rgba(15, 30, 60, .15);
  --radius:      14px;
  --radius-lg:   20px;
  --container:   1180px;
  --header-h:    76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: "Montserrat", system-ui, sans-serif; color: var(--navy); line-height: 1.2; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- acessibilidade ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, #2589e0, #4aa3ec);
  color: #fff; box-shadow: 0 8px 20px rgba(37, 137, 224, .32);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(37, 137, 224, .45); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-glass:hover { background: rgba(255,255,255,.28); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Cabeçalho ocupa a largura toda → logo mais à esquerda e botão mais à direita */
.site-header .container { max-width: 100%; padding-inline: clamp(24px, 4vw, 72px); }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { flex: none; }
.logo-img { flex: none; height: 48px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: "Montserrat", sans-serif; font-weight: 800; letter-spacing: 2.5px; color: var(--brand-green); font-size: 1.2rem; }
.logo-text small { font-size: .6rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* logo empilhada no rodapé */
.footer-logo { display: inline-block; }
.footer-logo img { height: 116px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; color: var(--slate); font-size: .98rem; position: relative; }
.main-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--blue); transition: width .2s ease;
}
.main-nav ul a:hover { color: var(--blue); }
.main-nav ul a:hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; }

/* Bandeira do Brasil no cabeçalho */
.flag-br { display: inline-flex; align-items: center; line-height: 0; flex: none; }
.flag-br svg { display: block; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  margin-top: var(--header-h);
  background: linear-gradient(120deg, #1f6fc0 0%, #2273c3 45%, #1a5da3 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(26,93,163,.95) 0%, rgba(34,115,195,.55) 55%, rgba(34,115,195,.15) 100%),
    url("https://img.usecurling.com/p/1600/900?q=modern%20corporate%20building%20glass") center/cover no-repeat;
  opacity: .9;
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; padding-block: 60px; color: #fff; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  padding: 7px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  backdrop-filter: blur(4px); margin-bottom: 22px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(147,197,253,.3); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 800; }
.hero h1 .accent { color: var(--sky); }
.hero-sub { margin-top: 22px; font-size: 1.15rem; max-width: 30em; color: rgba(255,255,255,.92); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }

/* Em telas largas, aproxima o bloco do topo (texto + botões) da borda esquerda */
@media (min-width: 1024px) {
  .hero .container {
    max-width: 660px;
    margin-left: clamp(32px, 4vw, 72px);
    margin-right: auto;
  }
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
.section { padding-block: 90px; position: relative; }
.section-light { background: var(--bg-soft); }
.section-light.alt { background: var(--bg-blue); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--blue); }
.section-head > p { margin-top: 16px; color: var(--gray); font-size: 1.05rem; }
.head-rule { display: block; width: 70px; height: 4px; border-radius: 4px; background: var(--blue); margin: 18px auto 0; }
.head-rule.light { background: rgba(255,255,255,.7); margin-inline: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700; color: var(--gray-light); margin-bottom: 10px; }
.eyebrow-blue { color: var(--blue); }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cbd9ec; }
.card-center { text-align: center; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: .96rem; }
.icon-box {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--bg-blue); color: var(--blue); margin-bottom: 18px;
}
.card-center .icon-box { margin-inline: auto; }
.icon-box.small { width: 52px; height: 52px; border-radius: 13px; }
.icon-box svg { width: 30px; height: 30px; }
.icon-box.small svg { width: 26px; height: 26px; }

/* ---------- serviços ---------- */
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service:hover .service-media img { transform: scale(1.06); }
.service-badge {
  position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.92); color: var(--blue); display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.service-badge svg { width: 22px; height: 22px; }
.service-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-body p { color: var(--gray); font-size: .94rem; flex: 1; }
.link-arrow { color: var(--blue); font-weight: 600; font-size: .92rem; margin-top: 16px; display: inline-flex; gap: 6px; align-items: center; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ============================================================
   SEÇÃO ESCURA — EQUIPE
   ============================================================ */
.section-dark { background: var(--navy-900); color: rgba(255,255,255,.85); overflow: hidden; }
.section-dark h2 { color: #fff; }
.watermark {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: clamp(4rem, 14vw, 12rem);
  color: rgba(255,255,255,.03); letter-spacing: 10px; white-space: nowrap; pointer-events: none; user-select: none;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split-media.tilt img { box-shadow: var(--shadow); }
.section-dark .split-media { position: relative; }
.section-dark .split-media::before {
  content: ""; position: absolute; top: -16px; left: -16px; width: 60%; height: 40%;
  background: linear-gradient(135deg, var(--blue), transparent); border-radius: var(--radius-lg); z-index: -1;
}
.split-body h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; }
.split-body .lead { margin-top: 16px; font-size: 1.08rem; }
.split-body > p { color: var(--gray); }
.section-dark .split-body > p, .section-dark .lead { color: rgba(255,255,255,.7); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 34px; margin-top: 34px; }
.feature { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; }
.feature .check {
  display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(34,115,195,.2); color: var(--sky); font-weight: 700; font-size: .9rem; margin-bottom: 10px;
}
.feature h4 { color: #fff; text-transform: uppercase; font-size: .92rem; letter-spacing: .5px; margin-bottom: 8px; }
.feature p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ============================================================
   SEGMENTOS
   ============================================================ */
.segment {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; padding: 24px;
  background-image: var(--bg); background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm); transition: transform .25s ease;
}
.segment:hover { transform: translateY(-6px); }
.segment-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,26,46,.1) 0%, rgba(14,26,46,.85) 100%); }
.segment h3 { position: relative; z-index: 2; color: #fff; font-size: 1.15rem; }

/* ============================================================
   SOBRE — missão e visão
   ============================================================ */
#sobre .split-media.tilt img { transform: rotate(-2deg); border: 8px solid #fff; }
.split-body > p + p { margin-top: 14px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.mv { border-left: 4px solid var(--blue); padding-left: 16px; }
.mv h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.mv p { color: var(--gray); font-size: .92rem; }

/* ============================================================
   CONTATO
   ============================================================ */
.section-contact { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; }
.section-contact .split { align-items: start; }
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.contact-info > p { margin: 24px 0 30px; color: rgba(255,255,255,.9); max-width: 30em; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; }
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.65); margin-bottom: 2px; }
.contact-list a:hover { text-decoration: underline; }

.contact-card {
  background: #fff; color: var(--slate); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.contact-card h3 { color: var(--blue); font-size: 1.5rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.field label .opt { font-weight: 400; color: var(--gray-light); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--slate); background: var(--bg-soft);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-light); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(34,115,195,.15);
}
.field input:invalid:not(:placeholder-shown) { border-color: #e2627a; }
.field textarea { resize: vertical; }
.contact-card .btn { margin-top: 6px; }
.form-status { margin-top: 14px; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #1f9d55; }
.form-status.err { color: #e2627a; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; max-width: 30em; font-size: .94rem; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; font-size: .94rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; font-size: .86rem; color: rgba(255,255,255,.5); }
.footer-bottom .container { text-align: center; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(37,211,102,.5);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .section-dark .split-media { max-width: 460px; margin-inline: auto; }
  #sobre .split { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 12px 24px 24px; transform: translateY(-130%); transition: transform .3s ease; visibility: hidden;
  }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav ul a { display: block; padding: 14px 4px; }
  .main-nav ul a::after { display: none; }
  .nav-cta { margin-top: 16px; text-align: center; }
  .section { padding-block: 64px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row, .mv-grid, .feature-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .contact-card { padding: 26px; }
  #sobre .split-media.tilt img { transform: none; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- preferências de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   PAINEL ADMIN (/admin)
   ============================================================ */
.admin-body { background: var(--bg-soft); min-height: 100vh; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 9px 16px; }
.btn-ghost:hover { background: rgba(255,255,255,.22); }

/* --- login --- */
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 24px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy)); }
.login-card { background: #fff; border-radius: var(--radius-lg); padding: 40px 34px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-lg); text-align: center; }
.login-logo { height: 92px; width: auto; margin: 0 auto 18px; display: block; }
.login-card h1 { font-size: 1.5rem; color: var(--brand-green); }
.login-sub { color: var(--gray); font-size: .92rem; margin: 6px 0 24px; }
.login-card .field { text-align: left; }
.login-card .btn { margin-top: 8px; }

/* --- painel --- */
.admin-header { background: var(--navy-900); color: #fff; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-brand { display: flex; align-items: center; gap: 12px; }
.admin-symbol { height: 38px; width: auto; }
.admin-brand strong { font-family: "Montserrat", sans-serif; display: block; letter-spacing: 1px; }
.admin-brand span { font-size: .78rem; color: rgba(255,255,255,.6); }
.admin-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-user { font-size: .85rem; color: rgba(255,255,255,.75); margin-right: 4px; }

.admin-toolbar { display: flex; align-items: center; gap: 14px; padding: 20px 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); background: #fff; }
.stat { background: var(--bg-blue); border-radius: 10px; padding: 8px 18px; text-align: center; line-height: 1.1; }
.stat strong { font-family: "Montserrat", sans-serif; font-size: 1.3rem; color: var(--blue); display: block; }
.stat span { font-size: .74rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.admin-search { flex: 1; min-width: 200px; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 10px; font: inherit; font-size: .92rem; }
.admin-filter { padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: .92rem; background: #fff; }
.admin-search:focus, .admin-filter:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(34,115,195,.15); }

.admin-table-wrap { padding: 24px; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); font-size: .9rem; }
.admin-table th { background: var(--bg-blue); color: var(--navy); text-align: left; padding: 13px 14px;
  font-weight: 700; white-space: nowrap; font-size: .82rem; text-transform: uppercase; letter-spacing: .4px; }
.admin-table td { padding: 13px 14px; border-top: 1px solid var(--line); vertical-align: top; color: var(--slate); }
.admin-table tr:hover td { background: var(--bg-soft); }
.admin-table .nowrap { white-space: nowrap; color: var(--gray); font-size: .84rem; }
.admin-table .contato a { color: var(--blue); }
.admin-table .msg { max-width: 280px; color: var(--gray); }
.admin-table .empty { text-align: center; color: var(--gray); padding: 40px; }
.status-select { border: 1px solid var(--line); border-radius: 7px; padding: 6px 8px; font: inherit; font-size: .82rem;
  background: #fff; cursor: pointer; font-weight: 600; }
.status-select.status-novo { color: var(--blue); border-color: #bcd6f5; background: #eef6fd; }
.status-select.status-em_contato { color: #b7791f; border-color: #f0d98a; background: #fdf6e3; }
.status-select.status-convertido { color: #1f9d55; border-color: #a7e0bd; background: #ecfaf1; }
.status-select.status-descartado { color: #9ca3af; }

@media (max-width: 600px) {
  .admin-table .msg { max-width: 160px; }
  .admin-toolbar { gap: 10px; }
}
