/* =====================================================
   MOTALAB — CARTÃO FIDELIDADE · CSS Principal
   ===================================================== */

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

:root {
  --teal: #3DBFB8;
  --teal-mid: #2AABA4;
  --teal-dark: #1E8F8A;
  --teal-deep: #166B67;
  --teal-navy: #0E4F4D;
  --teal-light: #A8E6E3;
  --teal-pale: #E0F7F6;
  --navy: #12323A;
  --white: #FFFFFF;
  --off: #F7FEFE;
  --gray: #6B7280;
  --gray-lt: #F3F4F6;
  --green: #10B981;
  --red: #EF4444;
  --shadow: 0 8px 32px rgba(61, 191, 184, 0.22);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off);
  color: var(--navy);
  overflow-x: hidden;
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

/* =====================================================
   NAVBAR
   ===================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 191, 184, 0.15);
  box-shadow: 0 2px 20px rgba(14, 79, 77, 0.07);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.nav-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn-login {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}

.nav-btn-login:hover {
  background: var(--teal-pale);
}

.nav-btn-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(61, 191, 184, 0.35);
  transition: .2s;
  white-space: nowrap;
}

.nav-btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 191, 184, 0.5);
}

/* Perfil logado */
.nav-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-pale);
  border: 1.5px solid rgba(61, 191, 184, 0.3);
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  transition: .2s;
  max-width: 240px;
}

.nav-profile:hover {
  background: #C8F0EE;
  box-shadow: 0 4px 14px rgba(61, 191, 184, 0.2);
}

.np-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.np-info {
  flex: 1;
  min-width: 0;
}

.np-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-badge {
  font-size: 9px;
  color: var(--teal-dark);
  font-weight: 600;
}

.nav-profile svg {
  color: var(--teal-dark);
  flex-shrink: 0;
}

@media(max-width:480px) {
  .nav-inner {
    padding: 8px 14px;
  }

  .nav-logo-img {
    height: 44px;
  }

  .nav-btn-login {
    padding: 7px 12px;
    font-size: 12px;
  }

  .nav-btn-cta {
    padding: 7px 12px;
    font-size: 12px;
  }

  .np-badge {
    display: none;
  }
}

/* =====================================================
   HERO
   ===================================================== */
#landingScreen {
  padding-top: 70px;
}

.hero {
  background: linear-gradient(150deg, var(--teal-navy) 0%, var(--teal-deep) 45%, var(--teal-dark) 100%);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub strong {
  color: white;
}

/* Demo card na landing */
.demo-card-wrap {
  max-width: 420px;
  margin: 0 auto 36px;
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.demo-card-png {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  image-rendering: -webkit-optimize-contrast;
}

.hero-btn {
  background: white;
  color: var(--teal-deep);
  border: none;
  padding: 17px 44px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: .25s;
  display: inline-block;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.hero-btn span {
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: var(--teal-dark);
  margin-top: 3px;
}

/* Price strip */
.price-strip {
  background: var(--teal);
  padding: 18px 24px;
  text-align: center;
}

.ps-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ps-inner p {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.ps-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.ps-price sup {
  font-size: 16px;
  margin-top: 6px;
}

.ps-price span {
  font-size: 19px;
  align-self: flex-end;
  margin-bottom: 3px;
}

.ps-badge {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 4px 14px;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

/* =====================================================
   BENEFÍCIOS
   ===================================================== */
.benefits-sec {
  padding: 70px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.stag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.stitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.stitle span {
  color: var(--teal-dark);
}

.ssub {
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
  text-align: center;
}

.bgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.bc {
  background: white;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(14, 79, 77, 0.06);
  border: 1px solid rgba(61, 191, 184, 0.1);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.bc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}

.bc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 191, 184, 0.18);
}

.bci {
  width: 50px;
  height: 50px;
  background: var(--teal-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
}

.bc h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.bc p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.bcp {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 6px;
  display: inline-block;
}

.compare-grid {
  background: linear-gradient(135deg, var(--teal-navy), var(--teal-deep));
  border-radius: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: white;
  margin-bottom: 48px;
}

.cg h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.cg ul {
  list-style: none;
}

.cg ul li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}

.cg ul li:last-child {
  border-bottom: none;
}

.cg.yes li {
  color: rgba(255, 255, 255, 0.92);
}

.cg.no li {
  color: rgba(255, 255, 255, 0.6);
}

.cond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.ci {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(61, 191, 184, 0.12);
  text-align: center;
  box-shadow: 0 2px 10px rgba(14, 79, 77, 0.04);
}

.cii {
  font-size: 26px;
  margin-bottom: 8px;
}

.ci h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

.ci p {
  font-size: 12px;
  color: var(--gray);
}

.warn-box {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.7;
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 80px 24px;
  text-align: center;
}

.cta-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-final-btn {
  background: white;
  color: var(--teal-deep);
  border: none;
  padding: 18px 52px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: .25s;
}

.cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

footer {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.8;
}

footer strong {
  color: rgba(255, 255, 255, 0.8);
}

footer a {
  color: var(--teal-light);
  text-decoration: none;
}

.footer-copy {
  margin-top: 10px;
  opacity: 0.35;
}

/* =====================================================
   MODAL
   ===================================================== */
.modal-ov {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 40, 50, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-ov.open {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 24px;
  width: 100%;
  max-width: 490px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  animation: slideup .35s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes slideup {
  from {
    transform: translateY(40px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.modal-head {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
  padding: 22px 26px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modal-head::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.modal-logo {
  height: 66px;
  width: auto;
  background: white;
  border-radius: 14px;
  padding: 8px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: block;
  margin: 0 auto 10px;
}

.mh-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}

.steps-bar {
  display: flex;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.step.done::after,
.step.active::after {
  background: rgba(255, 255, 255, 0.5);
}

.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.step.active .step-dot {
  background: white;
  color: var(--teal-deep);
}

.step.done .step-dot {
  background: rgba(255, 255, 255, 0.6);
  color: var(--teal-deep);
}

.step span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.step.active span {
  color: white;
}

.modal-body {
  padding: 24px 26px 28px;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Campos */
.field {
  margin-bottom: 13px;
  position: relative;
}

.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.field input,
.field-select {
  width: 100%;
  padding: 12px 13px;
  border: 2px solid #E5E7EB;
  border-radius: 11px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  transition: .2s;
  outline: none;
  background: #FAFAFA;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field-select:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(61, 191, 184, 0.1);
}

.field input.err {
  border-color: var(--red);
}

.errmsg {
  font-size: 11px;
  color: var(--red);
  margin-top: 3px;
  display: none;
}

.field input.err~.errmsg,
.field input.err+.errmsg {
  display: block;
}

/* Mostrar/ocultar senha */
.pw-wrap {
  position: relative;
}

.pw-wrap input {
  padding-right: 44px;
}

.pw-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  opacity: 0.55;
  transition: .2s;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pw-toggle:hover {
  opacity: 1;
  color: var(--teal-deep);
}

.eye-icon {
  display: block;
  pointer-events: none;
}

.pw-toggle:hover {
  opacity: 1;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

/* Botões */
.btn-primary {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-top: 6px;
  transition: .2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 191, 184, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid rgba(61, 191, 184, 0.3);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: .2s;
}

.btn-secondary:hover {
  background: var(--teal-pale);
}

.btn-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: .2s;
}

.btn-outline:hover {
  background: var(--teal-pale);
}

.login-err {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FEE2E2;
  border: 1px solid #FECACA;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 12px;
  color: #991B1B;
  font-weight: 600;
  margin-bottom: 10px;
}

.divider {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin: 16px 0 8px;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #E5E7EB;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Sucesso */
.success-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  animation: pop .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes pop {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.success-check svg {
  width: 38px;
  height: 38px;
}

/* Dependentes */
.dep-item {
  background: var(--teal-pale);
  border: 1px solid rgba(61, 191, 184, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideup .25s ease;
}

.dep-item-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.dep-item-info {
  flex: 1;
  min-width: 0;
}

.dep-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dep-item-meta {
  font-size: 11px;
  color: var(--teal-deep);
  margin-top: 2px;
}

.dep-item-rm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: .2s;
}

.dep-item-rm:hover {
  background: var(--red);
  color: white;
}

.dep-form {
  background: white;
  border: 2px solid rgba(61, 191, 184, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  animation: slideup .25s ease;
}

.dep-form-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.dep-form-ok {
  flex: 1;
  padding: 9px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: .2s;
}

.dep-form-ok:hover {
  background: var(--teal-dark);
}

.dep-form-cancel {
  padding: 9px 14px;
  background: transparent;
  color: var(--gray);
  border: 1.5px solid #E5E7EB;
  border-radius: 9px;
  font-size: 12px;
  cursor: pointer;
  transition: .2s;
}

.dep-form-cancel:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-add-dep {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 2px dashed var(--teal);
  border-radius: 11px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: .2s;
}

.btn-add-dep:hover {
  background: var(--teal-pale);
}

.btn-add-dep:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.dep-counter {
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 8px;
}

/* Pix */
.pix-valor {
  background: linear-gradient(135deg, var(--teal-pale), #C8F0EE);
  border: 2px solid rgba(61, 191, 184, 0.25);
  border-radius: 15px;
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}

.pv-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--teal-deep);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.pv-price sup {
  font-size: 18px;
  margin-top: 6px;
}

.pv-price span {
  font-size: 20px;
  align-self: flex-end;
  margin-bottom: 4px;
}

.pv-label {
  font-size: 12px;
  color: var(--teal-dark);
  margin-top: 4px;
  font-weight: 600;
}

.pix-qr-box {
  background: white;
  border: 1px solid rgba(61, 191, 184, 0.2);
  border-radius: 13px;
  padding: 16px;
  text-align: center;
  margin-bottom: 12px;
}

.pix-qr-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pix-qr-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  border: 2px solid rgba(61, 191, 184, 0.15);
  padding: 8px;
}

.pix-qr-hint {
  font-size: 11px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.5;
}

.pix-key-box {
  background: white;
  border: 2px dashed var(--teal);
  border-radius: 13px;
  padding: 14px;
  margin-bottom: 12px;
}

.pk-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pk-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
  margin-bottom: 8px;
}

.copy-btn {
  background: var(--teal);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.copy-btn:hover {
  background: var(--teal-dark);
}

.copy-btn.copied {
  background: var(--green);
}

.pix-instr {
  background: #F8FFFE;
  border: 1px solid rgba(61, 191, 184, 0.2);
  border-radius: 11px;
  padding: 13px 15px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.9;
}

.pix-instr strong {
  color: var(--navy);
}

.pix-notice {
  background: var(--teal-pale);
  border-radius: 11px;
  padding: 12px 14px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--teal-deep);
  font-weight: 600;
  line-height: 1.4;
}

.pn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

/* Modal confirmação */
.confirm-box {
  max-width: 340px !important;
  padding: 32px 28px 28px;
  text-align: center;
  overflow: visible !important;
  animation: popIn .28s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
  from {
    transform: scale(.88);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  transition: .2s;
}

.confirm-box.logout .confirm-icon {
  background: rgba(30, 143, 138, 0.1);
  border-color: rgba(30, 143, 138, 0.25);
}

.confirm-msg {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}

.confirm-sub {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 24px;
}

.confirm-actions {
  display: flex;
  gap: 10px;
}

.btn-confirm-nao {
  flex: 1;
  padding: 12px;
  background: var(--gray-lt);
  color: var(--navy);
  border: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: .2s;
}

.btn-confirm-nao:hover {
  background: #E5E7EB;
}

.btn-confirm-sim {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, var(--red), #DC2626);
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: .2s;
}

.btn-confirm-sim:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
}

.confirm-box.logout .btn-confirm-sim {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-deep));
}

.confirm-box.logout .btn-confirm-sim:hover {
  box-shadow: 0 6px 18px rgba(30, 143, 138, 0.4);
}

/* =====================================================
   HOME — TELA DO USUÁRIO
   ===================================================== */
#homeScreen {
  padding-top: 70px;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--teal-pale) 0%, var(--off) 380px);
}

.home-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.welcome-bar {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.wb-hello {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.wb-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-top: 2px;
}

.wb-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.wb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
}

.sec-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.sec-hint {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
}

/* ── FLIP CARD ── */
.flip-wrap {
  perspective: 1200px;
  -webkit-perspective: 1200px;
  margin-bottom: 10px;
}

.flip-inner {
  position: relative;
  width: 100%;
  padding-bottom: 63%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.4, .2, .2, 1);
  -webkit-transition: -webkit-transform .75s cubic-bezier(.4, .2, .2, 1);
  cursor: pointer;
}

.flip-inner.flipped {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* overflow:hidden removido — quebra preserve-3d no Safari/iOS */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* força GPU layer no Safari */
  box-shadow: 0 18px 54px rgba(14, 79, 77, 0.28), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FRENTE — PNG real */
.flip-front {
  background: #0B3D3A;
}

/* Imagem PNG ocupa 100% da face */
.fc-png {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* Validade sobreposta — posição configurável */
.fc-venc-overlay {
  position: absolute;
  top: 6%;
  right: 5%;
  z-index: 3;
  text-align: right;
  filter: drop-shadow(0 1px 4px rgba(6, 6, 6, 0.6));
}

.fc-vl {
  font-size: clamp(4px, 1.1vw, 7px);
  font-weight: 700;
  color: rgba(3, 3, 3, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fc-vd {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 2.2vw, 13px);
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Rodapé com foto + nome */
.fc-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 4% 5%;
  display: flex;
  align-items: flex-end;
  gap: 3%;
  z-index: 3;
  background: linear-gradient(to top, rgba(8, 42, 40, 0.72) 0%, transparent 100%);
  border-radius: 0 0 20px 20px;
}

.fc-holder {
  flex: 1;
  min-width: 0;
}

.fc-hname {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(7px, 2.1vw, 13px);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-flip-hint {
  font-size: clamp(5px, 1.3vw, 8px);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
  font-weight: 600;
}

/* VERSO */
.flip-back {
  background: linear-gradient(155deg, #31bfb5 0%, #2aa8a1 50%, #1e9a96 100%);
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.fb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fb-stripe {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  height: 11%;
  background: rgba(69, 67, 67, 0.5);
}

.fb-header {
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.fb-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8px, 2.5vw, 14px);
  font-weight: 900;
  color: rgb(5, 83, 81);
}

.fb-logo span {
  color: rgba(236, 255, 255, 0.753);
}

.fb-logo em {
  font-style: normal;
  color: rgba(236, 255, 255, 0.753);
  font-size: 0.85em;
}

.fb-sub {
  font-size: clamp(4px, 1.1vw, 7px);
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Dados pessoais no verso — tamanho maior, mais legível */
.fb-data {
  position: absolute;
  top: 27%;
  left: 0;
  right: 0;
  padding: 0 6%;
  z-index: 2;
}

.fb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(3px, 1vw, 7px);
  border-bottom: 1px solid rgba(0, 255, 195, 0.948);
  padding-bottom: clamp(2px, 0.7vw, 5px);
}

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

.fb-lbl {
  font-size: clamp(5px, 1.3vw, 8px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  min-width: clamp(42px, 11vw, 68px);
}

.fb-val {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6px, 1.9vw, 11px);
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.39);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.fb-num {
  color: var(--teal-light);
  letter-spacing: 2px;
  font-size: clamp(7px, 2vw, 12px);
}

/* Participantes no verso — maiores */
.fb-members-label {
  position: absolute;
  top: 57%;
  left: 6%;
  right: 6%;
  font-size: clamp(5px, 1.2vw, 7px);
  font-weight: 800;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.fb-members {
  position: absolute;
  top: 61%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 6% 14%;
  z-index: 2;
  background: linear-gradient(to top, rgba(8, 42, 40, 0.95) 0%, rgba(8, 42, 40, 0.55) 70%, transparent 100%);
  overflow: hidden;
}

.fb-m-row {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(6px, 1.7vw, 10px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.7;
}

.fb-m-titular {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(7px, 1.9vw, 11px);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.fb-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2% 6%;
  z-index: 2;
  background: rgba(8, 42, 40, 0.75);
}

.fb-ben {
  font-size: clamp(5px, 1.3vw, 8px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.6;
}

.fb-addr {
  font-size: clamp(4px, 1.1vw, 7px);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 1px;
}

/* Hint e foto */
.flip-hint {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 14px;
}

.flip-hint span {
  color: var(--teal-dark);
  font-weight: 600;
  cursor: pointer;
}

/* Benefícios grid */
.bm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.bm {
  background: white;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(61, 191, 184, 0.1);
  box-shadow: 0 2px 8px rgba(14, 79, 77, 0.04);
}

.bmi {
  font-size: 20px;
  margin-bottom: 4px;
}

.bmv {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--teal-dark);
}

.bmt {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

/* Info card */
.info-card {
  background: white;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(14, 79, 77, 0.05);
  border: 1px solid rgba(61, 191, 184, 0.09);
}

.ir {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}

.ir:last-child {
  border-bottom: none;
}

.irl {
  color: var(--gray);
}

.irv {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

/* Membros panel */
.members-panel {
  background: white;
  border-radius: 18px;
  padding: 6px 16px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(14, 79, 77, 0.05);
  border: 1px solid rgba(61, 191, 184, 0.09);
}

.mp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
}

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

.mp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.mp-av.titular {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-navy));
}

.mp-info {
  flex: 1;
  min-width: 0;
}

.mp-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-meta {
  font-size: 11px;
  color: var(--gray);
  margin-top: 1px;
}

.mp-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(22, 107, 103, 0.12);
  color: var(--teal-deep);
  white-space: nowrap;
}

.mp-rm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: .2s;
}

.mp-rm:hover {
  background: var(--red);
  color: white;
}

.mp-empty {
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

.add-member-btn {
  width: 100%;
  padding: 11px;
  background: transparent;
  border: 2px dashed var(--teal);
  border-radius: 11px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 14px;
  transition: .2s;
}

.add-member-btn:hover {
  background: var(--teal-pale);
}

.add-member-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.locations-box {
  background: var(--teal-pale);
  border-radius: 12px;
  padding: 13px 15px;
  margin: 14px 0 18px;
}

.locations-box p {
  font-size: 12px;
  color: var(--teal-deep);
  line-height: 1.8;
}

.logout-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  color: var(--gray);
  font-size: 13px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: .2s;
}

.logout-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =====================================================
   TOAST & LOADING
   ===================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  transition: transform .3s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

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

.toast.ok {
  background: var(--green);
}

.toast.err {
  background: var(--red);
}

.loading-ov {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}

.loading-ov.show {
  display: flex;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid var(--teal-light);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

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

.loading-ov p {
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media(max-width:768px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
  }

  .benefits-sec {
    padding: 50px 18px;
  }

  .hero {
    padding: 60px 18px 80px;
  }

  .modal-box {
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-ov {
    align-items: flex-end;
    padding: 0;
  }

  .confirm-box {
    border-radius: 20px !important;
    position: relative !important;
    bottom: auto !important;
    max-width: 92vw !important;
    margin: auto;
  }
}

@media(min-width:769px) {
  .bgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cond-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .pix-actions {
    flex-direction: column;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }
}

.container {
  text-align: center;
}

/* =====================================================
   STEP PIX — novo layout com imagem e WhatsApp
   ===================================================== */
.pix-qr-static {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 8px;
  image-rendering: -webkit-optimize-contrast;
}

/* Como funciona */
.pix-how {
  background: #F0FDFC;
  border: 1px solid rgba(61, 191, 184, .25);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.pix-how-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}

.pix-how-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phs {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
}

.phs-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.phs-txt strong {
  color: var(--teal-deep);
}

/* Aviso pendente */
.pix-notice-pend {
  background: #FEF3C7;
  border-left: 3px solid var(--yellow);
  border-radius: 10px;
}

.pix-notice-pend .pn-dot {
  background: var(--yellow);
}

/* Botão WhatsApp */
.btn-whatsapp {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-top: 6px;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}

/* Caixa de info pós-envio */
.pend-info-box {
  background: #F0FDFC;
  border: 1px solid rgba(61, 191, 184, .25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 16px;
  text-align: left;
}

.pib-row {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.8;
}

/* Check pendente */
.pending-check {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

/* =====================================================
   TELA PENDENTE
   ===================================================== */
#pendingScreen {
  padding-top: 70px;
  min-height: 100vh;
  background: linear-gradient(145deg, var(--teal-navy) 0%, var(--teal-deep) 55%, var(--teal-dark) 100%);
  align-items: center;
  justify-content: center;
  padding: 90px 20px 40px;
}

#pendingScreen.active {
  display: flex !important;
}

.pend-wrap {
  width: 100%;
  max-width: 460px;
}

.pend-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.pend-icon-wrap {
  margin-bottom: 14px;
}

.pend-icon-wrap svg {
  animation: pendpulse 2.2s ease-in-out infinite;
}

@keyframes pendpulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.07)
  }
}

.pend-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.pend-title span {
  color: var(--teal-deep);
}

.pend-sub {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pend-code-box {
  background: var(--teal-pale);
  border: 2px solid rgba(61, 191, 184, .3);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.pend-code-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pend-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--teal-deep);
  letter-spacing: 4px;
}

.pend-steps {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ps-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid #F3F4F6;
}

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

.ps-item.ps-done {
  color: var(--green);
}

.ps-item.ps-cur {
  color: var(--teal-deep);
  font-weight: 700;
}

.ps-item.ps-next {
  color: #9CA3AF;
}

.ps-dot-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.ps-spin-wrap svg {
  animation: spin .9s linear infinite;
}

.pend-contact {
  margin-bottom: 18px;
}

.pend-contact p {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}

.pend-contact-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pend-wpp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: .2s;
}

.pend-wpp-btn:hover {
  background: #128C7E;
}

.pend-tel-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-pale);
  color: var(--teal-deep);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  transition: .2s;
}

.pend-tel-btn:hover {
  background: #C8F0EE;
}

.pend-logout {
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 11px;
  padding: 10px 22px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: .2s;
}

.pend-logout:hover {
  border-color: var(--red);
  color: var(--red);
}

@media(max-width:480px) {
  .pend-card {
    padding: 28px 18px;
  }

  .pend-code {
    font-size: 22px;
  }
}

/* =====================================================
   MODAL RECUPERAÇÃO DE SENHA
   ===================================================== */
.rec-wpp-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: #166534;
  line-height: 1.5;
  margin-bottom: 18px;
}