/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0a1172;
  --blue:    #1a3a8f;
  --mid:     #1565c0;
  --light:   #2196f3;
  --pale:    #e8f0fe;
  --bg:      #f0f4ff;
  --white:   #ffffff;
  --gray:    #6b7280;
  --dark:    #1e293b;
  --success: #22c55e;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(10,17,114,.12);
  --trans:   .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.text-center { text-align: center; }
.badge {
  display: inline-block;
  background: var(--pale);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,17,114,.3); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--pale); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,17,114,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img { height: 52px; object-fit: contain; }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text span:first-child { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.logo-text span:last-child  { font-size: .72rem; color: var(--gray); letter-spacing: .5px; }

nav { display: flex; align-items: center; gap: 32px; }
nav a { color: var(--dark); font-weight: 500; transition: color var(--trans); font-size: .95rem; }
nav a:hover { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  padding: 16px 20px;
}
.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  color: var(--dark);
  font-weight: 500;
}
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,17,114,.88) 0%, rgba(21,101,192,.75) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  color: var(--white);
  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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 650px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: #7dd3fc; }
.hero p {
  font-size: 1.1rem;
  opacity: .88;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  opacity: .9;
}
.trust-item i { font-size: 1rem; color: #7dd3fc; }

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 48px;
}

/* ===== SERVICE CARDS ===== */
.services { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.04);
  border-radius: 50% 0 0 0;
}
.card:hover { background: var(--blue); transform: translateY(-6px); box-shadow: 0 12px 32px rgba(10,17,114,.25); }
.card-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.card h3 { font-size: 1.05rem; font-weight: 700; }
.card p  { font-size: .85rem; opacity: .8; line-height: 1.5; }
.card-arrow { margin-top: auto; opacity: .5; font-size: .9rem; }

.card-featured {
  background: linear-gradient(135deg, var(--light) 0%, var(--mid) 100%);
  border: 2px solid rgba(255,255,255,.2);
}
.card-featured:hover { background: linear-gradient(135deg, var(--mid) 0%, var(--navy) 100%); }

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: .88rem; color: var(--gray); }

/* ===== INFO SECTION ===== */
.info { background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.info-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.info-stat { margin-bottom: 28px; }
.info-stat-num { font-size: 2.4rem; font-weight: 800; color: #7dd3fc; }
.info-stat-label { font-size: .9rem; opacity: .8; }
.info-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.info-text p  { color: var(--gray); margin-bottom: 12px; }
.feature-list { list-style: none; margin: 24px 0 32px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--dark);
  font-size: .95rem;
}
.feature-list li i { color: var(--mid); font-size: 1rem; }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(10,17,114,.06);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q i { transition: transform var(--trans); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
  color: var(--gray);
  font-size: .9rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.contact-strip h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.contact-strip p  { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 14px; opacity: .7; }
.footer-logo-text span:first-child { color: var(--white); font-size: 1.2rem; font-weight: 800; }
.footer-logo-text span:last-child  { color: rgba(255,255,255,.5); font-size: .72rem; display: block; }
footer h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .5px; text-transform: uppercase; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--trans); }
footer ul li a:hover { color: var(--white); }
.footer-contact p { font-size: .88rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact p i { color: #7dd3fc; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  opacity: .55;
}
.footer-legal a { color: rgba(255,255,255,.55); margin-left: 16px; }
.footer-legal a:hover { color: var(--white); opacity: 1; }

/* ===== FLOATING WHATSAPP ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.fab-whatsapp a {
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: var(--trans);
  animation: pulse 2.5s infinite;
}
.fab-whatsapp a:hover { transform: scale(1.1); }
.fab-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
}
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

@keyframes pulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,.75); }
}

/* ===== FORM PAGE ===== */
.form-page { min-height: 80vh; display: flex; align-items: center; padding: 60px 0; }
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(10,17,114,.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.form-sidebar {
  background: linear-gradient(160deg, var(--navy) 0%, var(--mid) 100%);
  color: var(--white);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-sidebar h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.3; }
.form-sidebar p  { opacity: .8; font-size: .9rem; }
.sidebar-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  opacity: .9;
}
.sidebar-feature i { font-size: 1.1rem; color: #7dd3fc; margin-top: 2px; flex-shrink: 0; }
.form-body { padding: 48px 40px; }
.form-body h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-body .sub { color: var(--gray); font-size: .88rem; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label span { color: #ef4444; }
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: .95rem;
  color: var(--dark);
  transition: border-color var(--trans);
  background: #fafbff;
}
.form-group input:focus { outline: none; border-color: var(--mid); background: var(--white); }
.form-group input::placeholder { color: #9ca3af; }
.form-group .hint { font-size: .78rem; color: var(--gray); margin-top: 4px; }

.form-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 24px 0;
}
.form-disclaimer {
  font-size: .78rem;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.form-disclaimer a { color: var(--mid); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  color: var(--white);
  padding: 60px 0 40px;
  text-align: center;
}
.legal-hero h1 { font-size: 2rem; font-weight: 800; }
.legal-hero p   { opacity: .8; margin-top: 8px; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 32px 0 10px; }
.legal-content p,
.legal-content li { font-size: .93rem; color: var(--gray); line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; }
.legal-content .updated { font-size: .82rem; color: var(--gray); margin-bottom: 32px; }

/* ===== ADMIN ===== */
.admin-body { background: #f8fafc; min-height: 100vh; }
.admin-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header h1 { font-size: 1.1rem; font-weight: 700; }
.admin-header .admin-user { font-size: .85rem; opacity: .8; }
.admin-logout {
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  transition: var(--trans);
}
.admin-logout:hover { background: rgba(255,255,255,.25); }

.admin-main { padding: 32px 28px; max-width: 1300px; margin: 0 auto; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(10,17,114,.07);
}
.stat-card .label { font-size: .8rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.stat-card .value { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-card .trend { font-size: .78rem; color: var(--success); margin-top: 4px; }

.table-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(10,17,114,.07);
  overflow: hidden;
}
.table-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.table-header h2 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .88rem;
  color: var(--gray);
  background: #fafbff;
}
.search-box input { border: none; outline: none; background: none; font-size: .88rem; color: var(--dark); width: 200px; }

table { width: 100%; border-collapse: collapse; }
thead th {
  background: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid #f3f4f6;
}
tbody td { padding: 14px 16px; font-size: .88rem; color: var(--dark); border-bottom: 1px solid #f9fafb; }
tbody tr:hover { background: #fafbff; }
tbody tr:last-child td { border-bottom: none; }

.td-name { font-weight: 600; }
.td-cpf  { font-family: monospace; font-size: .82rem; color: var(--gray); }
.td-valor { font-weight: 700; color: var(--navy); }

.btn-wa-admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: var(--white);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-wa-admin:hover { background: #1da851; }

.btn-del {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--trans);
  font-size: .88rem;
}
.btn-del:hover { background: #fef2f2; }

.empty-state { text-align: center; padding: 64px; color: var(--gray); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: .3; }
.empty-state p { font-size: .9rem; }

/* login screen */
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
  padding: 20px;
}
.login-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  text-align: center;
}
.login-card h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 20px 0 6px; }
.login-card p { color: var(--gray); font-size: .88rem; margin-bottom: 32px; }
.login-error { color: #ef4444; font-size: .85rem; margin-top: 10px; display: none; }

/* ===== INFO BADGES (segunda-via) ===== */
.info-badges {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-badge-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(10,17,114,.07);
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-badge-item i  { font-size: 1.5rem; color: var(--mid); flex-shrink: 0; }
.info-badge-item strong { color: var(--navy); font-size: .9rem; display: block; }
.info-badge-item p  { font-size: .8rem; color: var(--gray); margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-card { grid-template-columns: 1fr; }
  .form-sidebar { padding: 32px 28px; }
  .form-body { padding: 32px 28px; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { min-height: 480px; }
  .hero-buttons { flex-direction: column; }
  .trust-bar-inner { gap: 20px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .admin-main { padding: 20px 16px; }
  table { font-size: .8rem; }
  thead th, tbody td { padding: 10px 10px; }

  /* ---- HEADER MOBILE: botão em 1 linha ---- */
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: .78rem;
    white-space: nowrap;
  }

  /* ---- CARDS MOBILE: compactos com descrição resumida ---- */
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .card {
    padding: 18px 14px;
    gap: 8px;
    border-radius: 10px;
  }
  .card-icon {
    width: 38px; height: 38px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .card h3 { font-size: .85rem; }
  .card p  { font-size: .74rem; opacity: .85; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .card-arrow {
    font-size: .8rem;
    margin-top: 6px;
    font-weight: 700;
    color: #fff !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  /* ---- FORM PAGE MOBILE: sem overflow, sem zoom ---- */
  .form-page { padding: 0; align-items: flex-start; }
  .form-card {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
  }
  .form-sidebar { padding: 24px 16px; gap: 16px; }
  .form-body { padding: 24px 16px; }
  .form-body h3 { font-size: 1.15rem; }
  .form-group input,
  .form-group input::placeholder { font-size: 16px; } /* evita zoom automático iOS/Android */

  /* ---- INFO BADGES MOBILE: empilhados ---- */
  .info-badges {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 16px 0;
  }
}

@media (max-width: 400px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
