
/* ===== Navbar CredePay corrigida ===== */
.topbar {
  background: var(--azul-petroleo);
  min-height: 106px;
  padding: 18px 7%;
  display: grid;
  grid-template-columns: 240px 1fr 390px;
  align-items: center;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}

.logo {
  text-decoration: none !important;
  font-size: 34px;
  font-weight: 900;
  color: var(--branco) !important;
  letter-spacing: -1px;
  white-space: nowrap;
  line-height: 1;
}

.logo span {
  color: var(--rosa) !important;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
}

.nav a {
  text-decoration: none !important;
  color: var(--branco) !important;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
  transition: .2s ease;
}

.nav a:hover {
  color: var(--rosa-claro) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-actions a {
  text-decoration: none !important;
}

.nav-cta-outline,
.nav-cta-solid,
.logout-btn {
  border-radius: 10px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.25;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  text-align: left;
  transition: .2s ease;
  white-space: normal;
}

.nav-cta-outline {
  background: var(--branco) !important;
  color: var(--rosa) !important;
  border: 2px solid var(--rosa);
  padding: 12px 20px;
  width: 164px;
}

.nav-cta-solid {
  background: var(--rosa) !important;
  color: var(--branco) !important;
  border: 2px solid var(--rosa);
  padding: 12px 20px;
  width: 124px;
  box-shadow: 0 12px 24px rgba(255,63,127,.25);
}

.logout-btn {
  background: var(--rosa) !important;
  color: var(--branco) !important;
  border: 2px solid var(--rosa);
  width: 58px;
  height: 58px;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(255,63,127,.25);
}

.nav-cta-outline:hover,
.nav-cta-solid:hover,
.logout-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}


:root {
  --azul-petroleo: #003b4a;
  --azul-escuro: #002632;
  --rosa: #ff3f7f;
  --rosa-claro: #ff6fa1;
  --branco: #ffffff;
  --cinza: #f5f7fa;
  --cinza-2: #eef4f7;
  --texto: #1d2b33;
  --muted: #5f7078;
  --shadow: 0 20px 50px rgba(0,0,0,.10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cinza);
  color: var(--texto);
}

a { color: inherit; }

.btn {
  display: inline-block;
  border: none;
  background: var(--rosa);
  color: var(--branco) !important;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255,63,127,.28);
  transition: .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--azul-petroleo);
  box-shadow: 0 14px 30px rgba(0,59,74,.22);
}

.btn-light {
  background: var(--branco);
  color: var(--azul-petroleo) !important;
  box-shadow: none;
}

.hero {
  min-height: 88vh;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  color: var(--branco);
  background:
    linear-gradient(135deg, rgba(0,38,50,.96), rgba(0,59,74,.82)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
}

.hero-simple {
  min-height: 48vh;
  padding: 95px 7%;
  color: var(--branco);
  background:
    linear-gradient(135deg, rgba(0,38,50,.95), rgba(0,59,74,.88)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
}

.tag {
  display: inline-block;
  background: rgba(255,63,127,.16);
  border: 1px solid rgba(255,63,127,.42);
  color: #ffd8e5;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

h1 span,
.highlight { color: var(--rosa); }

.hero p,
.hero-simple p {
  font-size: 22px;
  line-height: 1.5;
  max-width: 760px;
  color: #e6f8fd;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visual-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.visual-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.mini-panel {
  margin: -75px 24px 0;
  background: var(--branco);
  color: var(--azul-petroleo);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.mini-panel h2 { font-size: 26px; margin-bottom: 14px; }

.check-list {
  list-style: none;
}

.check-list li {
  margin: 12px 0;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--rosa);
  margin-right: 10px;
  font-weight: 900;
}

section {
  padding: 85px 7%;
}

.section-title {
  font-size: clamp(34px, 4vw, 50px);
  color: var(--azul-petroleo);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 20px;
  max-width: 820px;
  line-height: 1.6;
  margin-bottom: 45px;
  color: var(--muted);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--branco);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e6eef2;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-content { padding: 32px; }

.card h3 {
  color: var(--azul-petroleo);
  font-size: 24px;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(0,59,74,.95), rgba(0,38,50,.95)),
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80');
  background-position: center;
  background-size: cover;
  color: var(--branco);
}

.dark-section .section-title,
.dark-section .section-subtitle { color: var(--branco); }

.dark-section .card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.dark-section .card h3 { color: var(--branco); }
.dark-section .card p { color: #e6f8fd; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
  background: var(--branco);
}

.split img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.content-box {
  background: linear-gradient(135deg, #ffffff, #f7fbfc);
  border-left: 8px solid var(--rosa);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.content-box p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #3a4a51;
}

.form-container {
  max-width: 960px;
  margin: auto;
  background: linear-gradient(135deg, #ffffff, #f7fbfc);
  border-radius: 32px;
  padding: 50px;
  box-shadow: var(--shadow);
  border: 1px solid #e6eef2;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--azul-petroleo);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #d7e4ea;
  font-size: 16px;
  outline: none;
  background: var(--branco);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 4px rgba(255,63,127,.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-btn {
  margin-top: 30px;
  background: var(--rosa);
  color: white;
  border: none;
  padding: 18px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 16px 35px rgba(255,63,127,.28);
}

.faq-item {
  background: var(--branco);
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 18px;
  border: 1px solid #e6eef2;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.faq-item h3 {
  color: var(--azul-petroleo);
  margin-bottom: 10px;
}

.blog-card .date {
  color: var(--rosa);
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
}

.cta {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: var(--branco);
  text-align: center;
  border-radius: 38px;
  margin: 70px 7%;
  padding: 76px 30px;
  box-shadow: 0 24px 60px rgba(255,63,127,.28);
}

.cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}

.cta p {
  font-size: 22px;
  margin-bottom: 30px;
}

.footer {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 55px 7% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}

.footer h3,
.footer h4 {
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #d5e9ef;
  line-height: 1.7;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rosa);
  display: grid !important;
  place-items: center;
  color: var(--branco) !important;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #d5e9ef;
}

.legal-content {
  max-width: 1000px;
  margin: auto;
}

.legal-content h2 {
  color: var(--azul-petroleo);
  margin: 36px 0 14px;
}

.legal-content p,
.legal-content li {
  line-height: 1.75;
  color: #3a4a51;
  margin-bottom: 12px;
}

.video-box {
  background: var(--azul-petroleo);
  color: white;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.video-placeholder {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 70px 20px;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .nav,
  .hero,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section,
  .hero,
  .hero-simple { padding-left: 5%; padding-right: 5%; }
  .footer { padding-left: 5%; padding-right: 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-container { padding: 28px; }
  h1 { letter-spacing: -2px; }
}


@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    padding: 20px 5%;
  }

  .nav,
  .nav-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-actions {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: auto;
  }

  .logo {
    font-size: 30px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 14px;
  }

  .nav-cta-outline,
  .nav-cta-solid {
    width: auto;
    min-width: 145px;
    min-height: 52px;
    text-align: center;
  }

  .logout-btn {
    width: 52px;
    height: 52px;
  }
}


/* ===== Validação elegante de formulários ===== */
.input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 4px rgba(229,57,53,.10) !important;
}

.input-success {
  border-color: #0aa66a !important;
  box-shadow: 0 0 0 4px rgba(10,166,106,.10) !important;
}

.field-feedback {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  display: none;
}

.field-feedback.error {
  display: block;
  color: #e53935;
}

.field-feedback.success {
  display: block;
  color: #0aa66a;
}

.form-alert {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 800;
  display: none;
}

.form-alert.error {
  display: block;
  background: #fff2f2;
  color: #b42318;
  border: 1px solid #ffd0d0;
}

.form-alert.success {
  display: block;
  background: #effaf5;
  color: #027a48;
  border: 1px solid #b7ebd2;
}


/* ===== Formulário em etapas - Seja Parceiro ===== */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-indicator {
  cursor: default;
}

.step-indicator.active-step {
  background: #fff7f0 !important;
}

.step-indicator.done-step {
  background: #effaf5 !important;
}

.step-indicator.done-step div:first-child {
  border-color: #0aa66a !important;
  color: #0aa66a !important;
}

.form-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.secondary-btn {
  background: var(--azul-petroleo);
  color: #fff;
  border: none;
  padding: 16px 26px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.primary-small-btn {
  background: var(--rosa);
  color: #fff;
  border: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(255,63,127,.24);
}

@media (max-width: 720px) {
  .form-actions-row {
    flex-direction: column;
  }

  .secondary-btn,
  .primary-small-btn {
    width: 100%;
  }
}


/* ===== Página de confirmação CredePay ===== */
.confirm-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,63,127,.22), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(255,111,161,.18), transparent 26%),
    linear-gradient(135deg, #002632 0%, #003b4a 58%, #011b24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 7%;
  color: #fff;
}

.confirm-card {
  width: min(980px, 100%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  border-radius: 38px;
  padding: 58px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.confirm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.16), transparent 36%, rgba(255,63,127,.12));
  pointer-events: none;
}

.confirm-logo {
  position: relative;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -1.8px;
  margin-bottom: 28px;
}

.confirm-logo span {
  color: var(--rosa);
}

.confirm-badge {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(255,63,127,.36);
}

.confirm-card h1 {
  position: relative;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.confirm-card p {
  position: relative;
  max-width: 720px;
  margin: 0 auto 18px;
  color: #e6f8fd;
  font-size: 20px;
  line-height: 1.6;
}

.confirm-actions {
  position: relative;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: .22s ease;
}

.confirm-btn.primary {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255,63,127,.34);
}

.confirm-btn.secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.confirm-btn:hover {
  transform: translateY(-2px);
}

.confirm-steps {
  position: relative;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.confirm-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 22px;
  text-align: left;
}

.confirm-step strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 16px;
}

.confirm-step span {
  color: #cfe7ee;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .confirm-card {
    padding: 34px 24px;
  }

  .confirm-steps {
    grid-template-columns: 1fr;
  }
}


/* ===== CEP automático ===== */
.cep-loading {
  border-color: var(--rosa) !important;
  box-shadow: 0 0 0 4px rgba(255,63,127,.10) !important;
}

.readonly-field {
  background: #f2f6f8 !important;
  color: #4d5b62;
}


/* ===== Home Premium CredePay ===== */
.home-premium-hero {
  min-height: 92vh;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255,63,127,.22), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(255,111,161,.16), transparent 22%),
    linear-gradient(135deg, rgba(0,38,50,.98), rgba(0,59,74,.92)),
    url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--rosa);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--rosa);
}

.home-premium-hero h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.home-premium-hero h1 span {
  color: var(--rosa);
}

.home-premium-hero p {
  font-size: 22px;
  line-height: 1.55;
  color: #e6f8fd;
  max-width: 690px;
  margin-bottom: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.proof-pill {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  color: #fff;
}

.home-device-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  padding: 24px;
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
  position: relative;
}

.home-device-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.floating-score {
  margin: -72px 28px 0;
  position: relative;
  background: #fff;
  color: var(--azul-petroleo);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 58px rgba(0,0,0,.20);
}

.floating-score strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.floating-score span {
  color: var(--muted);
  line-height: 1.5;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
  padding: 0 7% 60px;
}

.metric-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  border: 1px solid #e6eef2;
}

.metric-card strong {
  display: block;
  color: var(--rosa);
  font-size: 30px;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--azul-petroleo);
  font-weight: 850;
}

.solution-band {
  background: #fff;
}

.product-card {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #f7fbfc);
  border: 1px solid #e6eef2;
  box-shadow: 0 18px 48px rgba(0,0,0,.07);
}

.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
  font-weight: 900;
}

.conversion-section {
  background:
    linear-gradient(135deg, rgba(0,59,74,.96), rgba(0,38,50,.96)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.conversion-section .section-title,
.conversion-section .section-subtitle {
  color: #fff;
}

.conversion-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 40px;
}

.conversion-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

.conversion-item h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.conversion-item p {
  color: #e6f8fd;
  line-height: 1.65;
}

/* ===== Simulação Premium ===== */
.simulacao-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,63,127,.16), transparent 22%),
    linear-gradient(135deg, #002632, #003b4a);
  min-height: 100vh;
}

.simulacao-shell {
  padding: 74px 7% 90px;
}

.simulacao-logo {
  text-align: center;
  color: #fff;
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -1.6px;
  margin-bottom: 34px;
}

.simulacao-logo span {
  color: var(--rosa);
}

.simulacao-intro {
  text-align: center;
  color: #e6f8fd;
  max-width: 780px;
  margin: 0 auto 32px;
}

.simulacao-intro h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 62px);
}

.simulacao-card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.20);
}

.simulacao-card .form-grid {
  margin-top: 0;
}

.simulacao-footer-note {
  margin-top: 24px;
  text-align: center;
  color: #d8edf3;
  font-size: 14px;
}

.money-prefix {
  position: relative;
}

.money-prefix input {
  padding-left: 44px !important;
}

.money-prefix::before {
  content: "R$";
  position: absolute;
  left: 16px;
  top: 43px;
  color: var(--azul-petroleo);
  font-weight: 900;
  z-index: 1;
}

.analysis-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,63,127,.23), transparent 26%),
    radial-gradient(circle at 90% 76%, rgba(255,111,161,.18), transparent 26%),
    linear-gradient(135deg, #002632 0%, #003b4a 60%, #011b24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 7%;
  color: #fff;
}

.analysis-card {
  width: min(1040px, 100%);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 34px 90px rgba(0,0,0,.30);
  backdrop-filter: blur(18px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.analysis-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.16), transparent 35%, rgba(255,63,127,.13));
  pointer-events: none;
}

.analysis-logo,
.analysis-card h1,
.analysis-card p,
.analysis-actions,
.analysis-timeline {
  position: relative;
}

.analysis-logo {
  font-size: 46px;
  font-weight: 950;
  letter-spacing: -1.8px;
  margin-bottom: 30px;
}

.analysis-logo span {
  color: var(--rosa);
}

.analysis-badge {
  width: 104px;
  height: 104px;
  border-radius: 32px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  display: grid;
  place-items: center;
  font-size: 46px;
  font-weight: 900;
  box-shadow: 0 20px 48px rgba(255,63,127,.35);
  transform: rotate(-4deg);
  position: relative;
}

.analysis-card h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.analysis-card p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #e6f8fd;
  font-size: 20px;
  line-height: 1.6;
}

.analysis-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.analysis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: .22s ease;
}

.analysis-btn.primary {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255,63,127,.34);
}

.analysis-btn.secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.analysis-timeline {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.analysis-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 24px;
  text-align: left;
}

.analysis-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.analysis-step span {
  color: #cfe7ee;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .home-premium-hero,
  .conversion-box {
    grid-template-columns: 1fr;
  }

  .metrics-row,
  .analysis-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .simulacao-card,
  .analysis-card {
    padding: 30px 22px;
  }
}


/* ===== Ajuste compacto da simulação ===== */
.simulacao-shell {
  padding-top: 36px !important;
  padding-bottom: 70px !important;
}

.simulacao-intro {
  margin-bottom: 22px !important;
}

.simulacao-intro h1 {
  margin-bottom: 12px !important;
  line-height: .95 !important;
}

.simulacao-intro p {
  margin-bottom: 0 !important;
}

.simulacao-card {
  margin-top: 0 !important;
}


/* ===== Blog Premium ===== */
.blog-hero {
  padding: 90px 7% 70px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255,63,127,.18), transparent 24%),
    linear-gradient(135deg, rgba(0,38,50,.98), rgba(0,59,74,.92));
  color: #fff;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
  color: #dff5fb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  padding: 70px 7%;
}

.blog-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
  border: 1px solid #e7eef2;
  transition: .22s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-content {
  padding: 28px;
}

.blog-category {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,63,127,.10);
  color: var(--rosa);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.blog-card h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--azul-petroleo);
}

.blog-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.blog-link {
  color: var(--rosa);
  font-weight: 900;
  text-decoration: none;
}

.article-page {
  background: #f7fafc;
}

.article-hero {
  padding: 90px 7% 60px;
  background:
    linear-gradient(135deg, rgba(0,38,50,.96), rgba(0,59,74,.92)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.article-hero-content {
  max-width: 980px;
}

.article-category {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}

.article-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.article-hero p {
  max-width: 760px;
  color: #dff5fb;
  line-height: 1.7;
  font-size: 21px;
}

.article-content {
  max-width: 920px;
  margin: -50px auto 80px;
  background: #fff;
  border-radius: 34px;
  padding: 54px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  position: relative;
  z-index: 2;
}

.article-content h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: 34px;
  color: var(--azul-petroleo);
}

.article-content p,
.article-content li {
  color: #4d5b62;
  line-height: 1.9;
  font-size: 18px;
}

.article-content ul {
  padding-left: 22px;
}

.article-cta {
  margin-top: 50px;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0,59,74,.96), rgba(0,38,50,.96));
  color: #fff;
  text-align: center;
}

.article-cta h3 {
  font-size: 34px;
  margin-bottom: 14px;
}

.article-cta p {
  color: #dff5fb;
  margin-bottom: 22px;
}

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

  .article-content {
    margin: -30px 20px 60px;
    padding: 34px 24px;
  }
}


/* ===== Footer social premium ===== */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  transition: .22s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  background: var(--rosa);
  border-color: var(--rosa);
}


/* ===== Ícones sociais + WhatsApp ===== */
.footer-social-btn::before {
  margin-right: 8px;
  font-size: 16px;
}

.footer-social-btn.instagram::before {
  content: "📸";
}

.footer-social-btn.linkedin::before {
  content: "💼";
}

.footer-social-btn.youtube::before {
  content: "▶";
}

.whatsapp-floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1fb85a);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(37,211,102,.28);
  transition: .22s ease;
}

.whatsapp-floating-btn:hover {
  transform: translateY(-2px);
}

.whatsapp-floating-btn::before {
  content: "✆";
  font-size: 18px;
}


/* ===== Navbar ajustada ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta-outline,
.nav-cta-solid,
.whatsapp-floating-btn,
.logout-btn {
  min-height: 48px !important;
  padding: 12px 18px !important;
  border-radius: 16px !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.whatsapp-floating-btn {
  min-width: 170px;
  border-radius: 999px !important;
}

.whatsapp-floating-btn::before {
  content: "◉";
  font-size: 12px;
  margin-right: 2px;
}

.logout-btn {
  width: 48px;
  min-width: 48px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .nav-actions {
    gap: 10px;
  }

  .nav-cta-outline,
  .nav-cta-solid,
  .whatsapp-floating-btn {
    font-size: 14px !important;
    padding: 10px 14px !important;
  }
}


/* ===== Navbar responsiva corrigida ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.nav a {
  font-size: 14px !important;
  line-height: 1.1 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.whatsapp-floating-btn {
  min-width: 155px !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
}

.nav-cta-outline,
.nav-cta-solid {
  min-width: 120px;
  padding: 10px 14px !important;
  font-size: 14px !important;
}

.logout-btn {
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
}

@media (max-width: 1280px) {
  .topbar {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px !important;
  }

  .whatsapp-floating-btn {
    min-width: 145px !important;
  }

  .nav-cta-outline,
  .nav-cta-solid {
    min-width: 112px;
    font-size: 13px !important;
  }
}


/* ===== Página jurídica CredePay ===== */
.legal-page-hero {
  padding: 90px 7% 60px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,63,127,.18), transparent 24%),
    linear-gradient(135deg, #002632, #003b4a);
  color: #fff;
}

.legal-page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.legal-page-hero p {
  color: #dff5fb;
  font-size: 20px;
  max-width: 820px;
  line-height: 1.6;
}

.legal-document {
  max-width: 1080px;
  margin: -38px auto 80px;
  background: #fff;
  border-radius: 34px;
  padding: 54px;
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
  border: 1px solid #e6eef2;
  position: relative;
  z-index: 2;
}

.legal-document h1 {
  font-size: 34px;
  line-height: 1.15;
  color: var(--azul-petroleo);
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.legal-document h2 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--azul-petroleo);
  margin-top: 34px;
  margin-bottom: 14px;
}

.legal-document h3 {
  font-size: 19px;
  color: var(--azul-petroleo);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-document p,
.legal-document li {
  color: #4d5b62;
  font-size: 17px;
  line-height: 1.82;
}

.legal-document ul {
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal-document .updated {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,63,127,.10);
  color: var(--rosa);
  font-weight: 900;
  margin-bottom: 30px;
}

.legal-warning {
  background: #f7fbfc;
  border-left: 6px solid var(--rosa);
  border-radius: 22px;
  padding: 24px;
  margin: 28px 0;
}

@media (max-width: 760px) {
  .legal-document {
    margin: -24px 18px 60px;
    padding: 32px 22px;
  }
}


/* ===== Legal pages shared ===== */
.legal-page-hero {
  padding: 90px 7% 60px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,63,127,.18), transparent 24%),
    linear-gradient(135deg, #002632, #003b4a);
  color: #fff;
}

.legal-page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.legal-page-hero p {
  color: #dff5fb;
  font-size: 20px;
  max-width: 820px;
  line-height: 1.6;
}

.legal-document {
  max-width: 1080px;
  margin: -38px auto 80px;
  background: #fff;
  border-radius: 34px;
  padding: 54px;
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
  border: 1px solid #e6eef2;
}

.legal-document h1,
.legal-document h2,
.legal-document h3{
  color:#002632;
}

.legal-document p,
.legal-document li{
  color:#4d5b62;
  line-height:1.8;
}

.legal-document ul{
  padding-left:22px;
}

.updated{
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,63,127,.10);
  color:#ff3f7f;
  font-weight:800;
  margin-bottom:24px;
}


/* ===== Login / Recuperação de senha CredePay ===== */
.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,63,127,.16), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(37,211,102,.10), transparent 24%),
    linear-gradient(135deg, #f5f8fa 0%, #eef4f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 7%;
}

.auth-card {
  width: min(440px, 100%);
  background:
    linear-gradient(160deg, rgba(0,59,74,.98), rgba(0,38,50,.98));
  border-radius: 34px;
  padding: 42px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,63,127,.20), transparent 26%),
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 35%);
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -1.5px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 24px;
}

.auth-logo span {
  color: var(--rosa);
}

.auth-card h1 {
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.auth-subtitle {
  text-align: center;
  color: #cfe7ee;
  line-height: 1.55;
  margin-bottom: 30px;
  font-size: 15px;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-form .form-group {
  margin: 0;
}

.auth-form label {
  color: #fff;
  font-weight: 850;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.auth-form input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 0 16px;
  font-size: 15px;
  background: rgba(255,255,255,.96);
  color: #002632;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 4px rgba(255,63,127,.16);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8f8fc;
  font-weight: 750;
}

.auth-check input {
  width: 16px;
  height: 16px;
}

.auth-link {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.auth-link:hover {
  color: var(--rosa-claro);
}

.auth-submit {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(255,63,127,.26);
  transition: .22s ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
}

.auth-back {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
  color: #e8f8fc;
  font-weight: 850;
  text-decoration: none;
}

.auth-back:hover {
  color: var(--rosa-claro);
}

.auth-message {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.auth-message.success {
  display: block;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.35);
  color: #baffd4;
}

.auth-message.error {
  display: block;
  background: rgba(255,63,127,.12);
  border: 1px solid rgba(255,63,127,.35);
  color: #ffd7e4;
}

.auth-footer-note {
  text-align: center;
  margin-top: 24px;
  color: #cfe7ee;
  font-size: 13px;
  line-height: 1.5;
}

.auth-footer-note a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 520px) {
  .auth-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .auth-row {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== Painel CredePay ===== */
.app-body {
  margin: 0;
  background: #f3f7fa;
  color: #002632;
  min-height: 100vh;
}

.app-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.app-sidebar {
  background: linear-gradient(180deg, #003b4a 0%, #002632 100%);
  color: #fff;
  padding: 28px 22px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.app-logo {
  display: block;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -1.4px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 34px;
}

.app-logo span {
  color: var(--rosa);
}

.app-menu-title {
  color: #8fb2bd;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  margin: 28px 0 12px;
}

.app-menu {
  display: grid;
  gap: 8px;
}

.app-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  color: #eaf8fb;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  transition: .2s ease;
}

.app-menu a:hover,
.app-menu a.active {
  background: rgba(255,255,255,.10);
  color: #fff;
}

.app-menu .icon {
  width: 22px;
  text-align: center;
  color: var(--rosa);
}

.app-main {
  min-width: 0;
}

.app-topbar {
  height: 68px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid #e3ebef;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(12px);
}

.app-search {
  width: 270px;
  height: 42px;
  border: 1px solid #d8e4e9;
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
}

.app-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 13px;
  background: #002632;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,38,50,.12);
}

.app-pill.green {
  background: #20c765;
}

.app-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #081d25;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.app-content {
  padding: 42px 34px 70px;
}

.app-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.app-title-row h1 {
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0;
}

.app-title-row p {
  margin: 8px 0 0;
  color: #60737b;
}

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

.kpi-card {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.04);
}

.kpi-card small {
  color: #6c7d84;
  font-weight: 800;
}

.kpi-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  color: #002632;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 22px;
}

.panel-card {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 18px 44px rgba(0,0,0,.05);
}

.panel-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.hero-panel {
  min-height: 280px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,63,127,.18), transparent 28%),
    linear-gradient(135deg, #003b4a, #002632);
  border-radius: 28px;
  color: #fff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel h2 {
  color: #fff;
  font-size: 34px;
  max-width: 620px;
  line-height: 1.05;
  margin: 0;
}

.hero-panel p {
  color: #dff5fb;
  max-width: 650px;
  line-height: 1.6;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--rosa);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.quick-actions a.alt {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity-item {
  padding: 16px;
  border-radius: 18px;
  background: #f6fafb;
  border: 1px solid #e2ebef;
}

.activity-item strong {
  display: block;
  margin-bottom: 4px;
}

.activity-item span {
  color: #687c84;
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.app-table th,
.app-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e7eef2;
  font-size: 14px;
}

.app-table th {
  color: #60737b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.status {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.pending { background: #fff4d8; color: #9a6200; }
.status.ok { background: #dcfce7; color: #166534; }
.status.bad { background: #ffe2ec; color: #be124c; }
.status.info { background: #e0f2fe; color: #075985; }

.form-panel {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.form-panel .full {
  grid-column: 1 / -1;
}

.form-panel label {
  font-weight: 900;
  margin-bottom: 8px;
  display: block;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  border: 1px solid #d8e4e9;
  border-radius: 14px;
  min-height: 48px;
  padding: 0 14px;
}

.form-panel textarea {
  padding: 14px;
  min-height: 120px;
}

@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: relative;
    height: auto;
  }

  .kpi-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .app-topbar {
    flex-wrap: wrap;
    height: auto;
    padding: 16px;
  }
}


/* ===== Header refinado do painel ===== */
.app-topbar {
  justify-content: space-between !important;
}

.app-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.app-search-wrap {
  position: relative;
  width: min(360px, 42vw);
}

.app-search {
  width: 100% !important;
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 30;
}

.search-results.active {
  display: block;
}

.search-results a {
  display: block;
  padding: 13px 15px;
  color: #002632;
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
  border-bottom: 1px solid #eef3f5;
}

.search-results a:last-child {
  border-bottom: 0;
}

.search-results a:hover {
  background: #f6fafb;
  color: var(--rosa);
}

.app-avatar {
  border: none;
  cursor: pointer;
}

.profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  overflow: hidden;
  z-index: 40;
}

.profile-dropdown.active {
  display: block;
}

.profile-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  color: #465a62;
  text-decoration: none;
  font-weight: 850;
  border-bottom: 1px solid #eef3f5;
}

.profile-dropdown a:last-child {
  border-bottom: 0;
}

.profile-dropdown a:hover {
  background: #f6fafb;
  color: var(--rosa);
}

@media (max-width: 760px) {
  .app-topbar {
    justify-content: center !important;
  }

  .app-search-wrap {
    width: 100%;
  }
}


/* ===== Proposta premium CredePay ===== */
.proposal-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.proposal-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.proposal-step {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.proposal-step .number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,63,127,.10);
  color: var(--rosa);
  font-weight: 950;
}

.proposal-step.active {
  border-color: rgba(255,63,127,.45);
  box-shadow: 0 14px 32px rgba(255,63,127,.08);
}

.proposal-step strong {
  display: block;
  font-size: 13px;
}

.proposal-step span {
  color: #6d7e85;
  font-size: 12px;
}

.proposal-section {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 26px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 18px 44px rgba(0,0,0,.045);
}

.proposal-section h2 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #002632;
}

.proposal-section p {
  margin: 0 0 22px;
  color: #61737b;
  line-height: 1.55;
}

.proposal-form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
}

.proposal-form-grid .full {
  grid-column: 1 / -1;
}

.proposal-field label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  color: #002632;
}

.proposal-field input,
.proposal-field select,
.proposal-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d6e3e8;
  border-radius: 15px;
  padding: 0 14px;
  outline: none;
  background: #fff;
  color: #002632;
}

.proposal-field textarea {
  min-height: 110px;
  padding: 14px;
}

.proposal-field input:focus,
.proposal-field select:focus,
.proposal-field textarea:focus {
  border-color: var(--rosa);
  box-shadow: 0 0 0 4px rgba(255,63,127,.11);
}

.radio-card {
  border: 1px solid #dfe9ee;
  border-radius: 18px;
  padding: 18px;
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  background: #f9fcfd;
}

.radio-card input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
}

.radio-card strong {
  display: block;
  margin-bottom: 4px;
}

.radio-card span {
  color: #61737b;
  font-size: 14px;
  line-height: 1.45;
}

.switch-line {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.switch-line input {
  width: 42px;
  height: 22px;
  min-height: auto;
  accent-color: var(--rosa);
}

.proposal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.btn-soft {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 15px;
  border: 1px solid #d6e3e8;
  background: #fff;
  color: #002632;
  font-weight: 950;
  cursor: pointer;
}

.btn-main {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  border: none;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-claro));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(255,63,127,.24);
}

.proposal-summary {
  position: sticky;
  top: 92px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,63,127,.18), transparent 28%),
    linear-gradient(160deg, #003b4a, #002632);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,38,50,.20);
}

.proposal-summary h2 {
  color: #fff;
  margin: 0 0 8px;
}

.proposal-summary p {
  color: #d7eef4;
  line-height: 1.6;
  margin-bottom: 22px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.summary-line span {
  color: #b9d6df;
}

.summary-line strong {
  text-align: right;
}

.summary-total {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}

.summary-total span {
  display: block;
  color: #b9d6df;
  margin-bottom: 6px;
}

.summary-total strong {
  font-size: 28px;
}

.calc-result {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ecfdf3;
  border: 1px solid #b8f2ce;
  color: #126437;
  font-weight: 900;
}

.calc-result.active {
  display: block;
}

@media (max-width: 1180px) {
  .proposal-layout {
    grid-template-columns: 1fr;
  }

  .proposal-summary {
    position: relative;
    top: auto;
  }

  .proposal-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .proposal-form-grid,
  .proposal-steps {
    grid-template-columns: 1fr;
  }
}


/* ===== Fluxo adicionar proposta ===== */
.proposal-hidden {
  display: none !important;
}

.proposal-step.done .number {
  background: #20c765;
  color: #fff;
}

.proceed-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #dcfce7;
  border: 1px solid #b8f2ce;
  color: #126437;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.proceed-box.active {
  display: flex;
}

.proceed-box strong {
  display: block;
  font-size: 19px;
  margin-bottom: 4px;
}

.proceed-box span {
  display: block;
  line-height: 1.45;
}

.proceed-box button {
  flex-shrink: 0;
}

.address-search-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 8px;
}

.address-search-row button {
  border: 1px solid #d6e3e8;
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
  color: #002632;
}

.form-help {
  color: #61737b;
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.45;
}

.required-star {
  color: var(--rosa);
}

@media (max-width: 720px) {
  .proceed-box {
    align-items: stretch;
    flex-direction: column;
  }

  .address-search-row {
    grid-template-columns: 1fr;
  }
}


/* ===== Etapas adicionais proposta ===== */
.field-feedback {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 850;
}

.field-feedback.ok {
  color: #15803d;
}

.field-feedback.error {
  color: #be124c;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}


/* ===== Validações automáticas proposta ===== */
.input-error {
  border-color: #be124c !important;
  box-shadow: 0 0 0 4px rgba(190,18,76,.10) !important;
}

.input-ok {
  border-color: #16a34a !important;
  box-shadow: 0 0 0 4px rgba(22,163,74,.10) !important;
}

.cep-status {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 850;
}

.cep-status.ok {
  color: #15803d;
}

.cep-status.error {
  color: #be124c;
}


/* ===== Revisão proposta ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 22px;
  margin-top: 24px;
}

.review-card {
  background: #f8fbfc;
  border: 1px solid #d7e3e7;
  border-radius: 20px;
  padding: 24px;
}

.review-card-full {
  grid-column: 1 / -1;
}

.review-card h3 {
  margin-bottom: 18px;
  color: #082f49;
}

.review-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e5eef2;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item span {
  color: #60737b;
  font-weight: 700;
}

.review-item strong {
  color: #082f49;
  text-align: right;
}


/* ===== Revisão proposta corrigida ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 22px;
  margin-top: 24px;
}

.review-card {
  background: #f8fbfc;
  border: 1px solid #d7e3e7;
  border-radius: 20px;
  padding: 24px;
}

.review-card-full {
  grid-column: 1 / -1;
}

.review-card h3 {
  margin-bottom: 18px;
  color: #082f49;
}

.review-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e5eef2;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item span {
  color: #60737b;
  font-weight: 700;
}

.review-item strong {
  color: #082f49;
  text-align: right;
}


/* ===== Revisão compacta dentro do painel ===== */
#proposalStepFour {
  width: 100%;
}

#proposalStepFour .proposal-section {
  margin-top: 0;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  min-width: 0;
}

.review-card-full {
  grid-column: auto;
}

.review-card h3 {
  font-size: 18px;
}

.review-item {
  align-items: flex-start;
}

.review-item span {
  font-size: 14px;
}

.review-item strong {
  font-size: 14px;
  max-width: 58%;
  word-break: break-word;
}

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

  .review-card-full {
    grid-column: 1 / -1;
  }
}

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


/* ===== Listagem premium de propostas ===== */
.proposals-toolbar {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 24px 24px 0 0;
  padding: 22px;
  display: grid;
  gap: 18px;
}

.proposals-toolbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-toggle {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d8e4e9;
  border-radius: 14px;
  background: #fff;
  color: #002632;
  font-weight: 900;
  cursor: pointer;
}

.filter-toggle.active {
  background: rgba(255,63,127,.10);
  border-color: rgba(255,63,127,.35);
  color: var(--rosa);
}

.proposal-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.proposal-search-row input,
.proposals-filters input,
.proposals-filters select,
.page-size-select {
  min-height: 44px;
  border: 1px solid #d8e4e9;
  border-radius: 14px;
  padding: 0 14px;
  background: #fff;
  color: #002632;
  outline: none;
}

.proposal-search-row input {
  width: min(360px, 100%);
}

.columns-box {
  position: relative;
}

.columns-button {
  min-height: 44px;
  border: 1px solid #d8e4e9;
  border-radius: 14px;
  background: #fff;
  color: #002632;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.columns-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
  z-index: 20;
  padding: 12px;
}

.columns-menu.active {
  display: grid;
  gap: 10px;
}

.columns-menu label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  color: #465a62;
}

.proposals-filters {
  display: none;
  border-top: 1px solid #eef3f5;
  padding-top: 18px;
}

.proposals-filters.active {
  display: block;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 16px;
  align-items: end;
}

.filters-grid label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.clear-filters {
  color: var(--rosa);
  font-weight: 950;
  text-decoration: none;
  justify-self: end;
  cursor: pointer;
}

.proposals-table-card {
  background: #fff;
  border: 1px solid #e2ebef;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.proposals-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-top: 1px solid #eef3f5;
  flex-wrap: wrap;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-controls button {
  min-width: 40px;
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid #d8e4e9;
  background: #fff;
  color: #002632;
  font-weight: 900;
  cursor: pointer;
}

.pagination-controls button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.rows-control {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #60737b;
  font-weight: 800;
}

.action-menu-btn {
  border: none;
  background: #002632;
  color: #fff;
  width: 38px;
  height: 34px;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 950;
}

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

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


/* ===== Modal detalhes da proposta ===== */
.proposal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 38, 50, .58);
  backdrop-filter: blur(8px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.proposal-modal-overlay.active {
  display: flex;
}

.proposal-modal {
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0,0,0,.25);
  border: 1px solid #e2ebef;
}

.proposal-modal-header {
  padding: 26px 30px;
  border-bottom: 1px solid #e8f0f3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.proposal-modal-header h2 {
  margin: 0 0 6px;
  color: #002632;
  font-size: 28px;
}

.proposal-modal-header p {
  margin: 0;
  color: #60737b;
}

.proposal-modal-close {
  border: none;
  background: #f3f7fa;
  color: #002632;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 950;
  font-size: 18px;
}

.proposal-modal-body {
  padding: 28px 30px 32px;
}

.proposal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.proposal-detail-card {
  background: #f8fbfc;
  border: 1px solid #dce8ed;
  border-radius: 20px;
  padding: 20px;
}

.proposal-detail-card.full {
  grid-column: 1 / -1;
}

.proposal-detail-card h3 {
  margin: 0 0 14px;
  color: #002632;
  font-size: 18px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #e6eef2;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span {
  color: #60737b;
  font-weight: 800;
}

.detail-row strong {
  color: #002632;
  text-align: right;
  word-break: break-word;
}

.action-menu-wrap {
  position: relative;
  display: inline-flex;
}

.row-action-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
  z-index: 30;
  overflow: hidden;
}

.row-action-menu.active {
  display: block;
}

.row-action-menu button {
  width: 100%;
  min-height: 44px;
  border: none;
  background: #fff;
  color: #465a62;
  font-weight: 850;
  text-align: left;
  padding: 0 14px;
  cursor: pointer;
}

.row-action-menu button:hover {
  background: #f6fafb;
  color: var(--rosa);
}

@media (max-width: 760px) {
  .proposal-detail-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Página mostrar proposta ===== */
.proposal-show-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.show-card {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 24px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,.045);
}

.show-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
  color: #002632;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 34px;
}

.show-field span {
  display: block;
  color: #60737b;
  font-weight: 850;
  font-size: 13px;
  margin-bottom: 7px;
}

.show-field strong {
  color: #002632;
  font-size: 15px;
  word-break: break-word;
}

.show-side {
  position: sticky;
  top: 90px;
}

.show-status-card {
  background: #fff;
  border: 1px solid #e2ebef;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(0,0,0,.045);
}

.show-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.show-actions a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.breadcrumb {
  color: #60737b;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #60737b;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .proposal-show-layout {
    grid-template-columns: 1fr;
  }

  .show-side {
    position: relative;
    top: auto;
  }
}

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

.row-view-link{display:flex;align-items:center;min-height:44px;padding:0 14px;text-decoration:none;color:#465a62;font-weight:850}.row-view-link:hover{background:#f6fafb;color:var(--rosa)}


/* ===== Footer documentos público ===== */
.footer-grid > div h4 {
  margin-bottom: 16px;
}

.footer-grid > div a {
  display: block;
  margin-bottom: 12px;
}
