:root {
  --brand: #35e27a;
  --brand-2: #19c463;
  --brand-dark: #10251a;
  --ink: #17211d;
  --muted: #66736d;
  --line: #e7eee9;
  --soft: #f4fff8;
  --blue-soft: #eaf8ff;
  --card: #ffffff;
  --warning: #fff7e6;
  --danger: #e5484d;
  --shadow: 0 18px 45px rgba(23, 33, 29, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

img, svg { max-width: 100%; display: block; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(90deg, #eafff1, #f7fff9);
  color: #0e5a2b;
  font-size: 14px;
  text-align: center;
  padding: 9px 12px;
  border-bottom: 1px solid #d9f5e3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 238, 233, .9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--brand-dark);
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 70% 20%, #fff 0 12%, transparent 13%), linear-gradient(135deg, var(--brand), #8effba);
  box-shadow: 0 10px 24px rgba(53, 226, 122, .35);
  color: #073d1a;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #26332d;
  font-size: 15px;
}

.nav a { position: relative; padding: 8px 0; }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-pill, .icon-btn, .cart-btn, .mobile-toggle {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  min-height: 42px;
}

.currency-pill { padding: 0 14px; font-size: 14px; }

.icon-btn, .cart-btn, .mobile-toggle {
  width: 42px;
  display: grid;
  place-items: center;
}

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #073d1a;
  font-size: 12px;
  font-weight: 800;
}

.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--brand);
  color: #063b19;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(53, 226, 122, .28); }

.btn.dark { background: var(--brand-dark); color: #fff; }
.btn.dark:hover { box-shadow: 0 14px 28px rgba(16, 37, 26, .2); }
.btn.ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn.block { width: 100%; }
.btn.small { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  background: radial-gradient(circle at 82% 15%, rgba(53, 226, 122, .16), transparent 32%), linear-gradient(180deg, #f8fffb 0%, #ffffff 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #ccefd8;
  background: #f3fff7;
  color: #0b7534;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { font-size: 22px; }

.lead { color: var(--muted); font-size: clamp(18px, 2vw, 21px); margin: 22px 0 0; max-width: 680px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.search-panel {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 670px;
}

.search-icon { width: 44px; height: 44px; border-radius: 16px; background: var(--soft); display: grid; place-items: center; color: #0e6c33; flex: 0 0 auto; }

.search-panel input {
  flex: 1;
  border: 0;
  outline: 0;
  min-height: 48px;
  font-size: 16px;
}

.hero-stats { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 18px; min-width: 145px; }
.stat strong { display: block; font-size: 24px; letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: 14px; }

.phone-card {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  background: linear-gradient(160deg, #e8fff0, #eaf8ff 54%, #ffffff);
  border: 1px solid #dcefe5;
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
}

.phone-card::before, .phone-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.phone-card::before { width: 280px; height: 280px; background: rgba(53, 226, 122, .18); right: -80px; top: -70px; }
.phone-card::after { width: 210px; height: 210px; background: rgba(41, 182, 246, .14); left: -60px; bottom: -50px; }

.device {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 42px;
  background: #101f17;
  box-shadow: 0 40px 80px rgba(16, 37, 26, .22);
}

.device-screen {
  border-radius: 30px;
  min-height: 472px;
  padding: 22px;
  background: linear-gradient(180deg, #f7fff9, #fff);
  overflow: hidden;
}

.device-top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.signal-bars { display: inline-flex; align-items: end; gap: 3px; }
.signal-bars i { display: block; width: 4px; background: var(--brand-2); border-radius: 10px; }
.signal-bars i:nth-child(1) { height: 8px; }
.signal-bars i:nth-child(2) { height: 12px; }
.signal-bars i:nth-child(3) { height: 16px; }
.signal-bars i:nth-child(4) { height: 20px; }

.destination-pass {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(23, 33, 29, .08);
}
.pass-badge { width: 64px; height: 64px; border-radius: 22px; background: linear-gradient(135deg, var(--brand), #b5ffd0); display: grid; place-items: center; font-weight: 900; color: #063b19; margin-bottom: 18px; }
.pass-title { font-size: 28px; font-weight: 900; letter-spacing: -.04em; }
.pass-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.pass-list li { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.pass-list strong { color: var(--ink); }

.float-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 52px;
  width: 230px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.float-card strong { display: block; font-size: 18px; }
.float-card span { color: var(--muted); font-size: 14px; }
.progress { height: 9px; background: #edf5ef; border-radius: 999px; margin-top: 14px; overflow: hidden; }
.progress b { display: block; height: 100%; width: 72%; background: var(--brand); border-radius: inherit; }

.section { padding: 78px 0; }
.section.soft { background: #f8fffb; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 600px; margin: 12px 0 0; }

.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 750;
}
.tab-btn.active { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

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

.destination-card {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(23, 33, 29, .04);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.destination-card::after {
  content: "→";
  margin-left: auto;
  color: #304139;
  font-size: 22px;
  transition: transform .18s ease;
}
.destination-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 58px;
  right: -28px;
  bottom: -22px;
  background: linear-gradient(135deg, rgba(53,226,122,.12), rgba(41,182,246,.10));
  border-radius: 999px;
  transform: rotate(-13deg);
}
.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfeadd; }
.destination-card:hover::after { transform: translateX(4px); }
.dest-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.03em;
  box-shadow: inset 0 -16px 30px rgba(0,0,0,.12);
}
.dest-meta small { color: var(--muted); display: block; margin-bottom: 2px; }
.dest-meta strong { font-size: 20px; letter-spacing: -.03em; }
.dest-meta span { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .review-card, .faq-box, .checkout-card, .product-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 12px 26px rgba(23,33,29,.04);
}
.feature-icon { width: 54px; height: 54px; border-radius: 18px; background: var(--soft); display: grid; place-items: center; color: #0d7937; margin-bottom: 18px; }
.feature-card p, .review-card p, .info-card p { color: var(--muted); margin-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.step::before { counter-increment: step; content: counter(step); width: 44px; height: 44px; border-radius: 15px; background: var(--brand); display: grid; place-items: center; font-weight: 900; margin-bottom: 20px; color: #063b19; }
.step p { color: var(--muted); margin-bottom: 0; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stars { color: #0b8039; letter-spacing: 2px; font-size: 18px; font-weight: 900; }
.reviewer { margin-top: 16px; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
details.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0 20px; }
.faq-item summary { list-style: none; padding: 18px 0; cursor: pointer; font-weight: 850; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--brand-2); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--muted); margin: 0 0 18px; }

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-dark), #164b2a);
  color: #fff;
  border-radius: 36px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-box::after { content: ""; position: absolute; right: -90px; top: -90px; width: 260px; height: 260px; border-radius: 999px; background: rgba(53,226,122,.18); }
.cta-box p { color: rgba(255,255,255,.78); margin: 12px 0 0; max-width: 720px; }
.cta-box .btn { background: #fff; color: var(--brand-dark); position: relative; z-index: 1; }

.footer { background: #0f1f16; color: #fff; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 34px; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer h4 { margin: 0 0 14px; }
.footer a { display: block; margin: 9px 0; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.62); font-size: 14px; }

.page-hero { padding: 54px 0 36px; background: linear-gradient(180deg, #f8fffb, #fff); text-align: center; }
.page-hero .search-panel { margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: #0f7b39; font-weight: 750; }

.product-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 26px; align-items: start; }
.product-visual { position: sticky; top: 102px; min-height: 520px; border-radius: 34px; overflow: hidden; background: linear-gradient(145deg, #eafff2, #eaf7ff); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 28px; }
.product-visual .map-art { position: relative; min-height: 462px; border-radius: 28px; background: radial-gradient(circle at 25% 26%, rgba(53,226,122,.24), transparent 21%), radial-gradient(circle at 70% 62%, rgba(41,182,246,.22), transparent 24%), linear-gradient(160deg, #fff, #f5fff9); overflow: hidden; border: 1px solid rgba(255,255,255,.8); }
.map-line { position: absolute; inset: 70px 42px auto; height: 210px; border: 3px dashed rgba(16,37,26,.18); border-left: 0; border-bottom: 0; border-radius: 0 120px 0 0; transform: rotate(12deg); }
.pin { position: absolute; width: 58px; height: 58px; border-radius: 22px; display: grid; place-items: center; color: #fff; font-weight: 900; box-shadow: 0 16px 36px rgba(0,0,0,.13); }
.pin.one { left: 54px; top: 68px; }
.pin.two { right: 62px; top: 190px; }
.pin.three { left: 112px; bottom: 72px; background: var(--brand-dark) !important; }
.visual-caption { position: absolute; left: 26px; right: 26px; bottom: 26px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 24px; padding: 18px; backdrop-filter: blur(12px); }
.visual-caption strong { display: block; font-size: 22px; }
.visual-caption span { color: var(--muted); }

.product-card { padding: 0; overflow: hidden; }
.product-main { padding: 30px; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.price-large { text-align: right; white-space: nowrap; }
.price-large span { color: var(--muted); display: block; font-size: 13px; }
.price-large strong { font-size: 34px; letter-spacing: -.05em; }
.rating-line { display: flex; gap: 10px; align-items: center; color: var(--muted); margin-top: 10px; flex-wrap: wrap; }
.product-tabs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin: 26px 0; }
.product-tabs button { border: 0; min-height: 54px; background: #fff; font-weight: 800; color: var(--muted); }
.product-tabs button.active { background: #f4fff8; color: #0f7b39; }
.benefits { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.benefits li { display: flex; gap: 12px; align-items: center; }
.check { width: 26px; height: 26px; border-radius: 999px; background: var(--soft); color: #0d7937; display: grid; place-items: center; font-weight: 900; flex: 0 0 auto; }
.compat-box { margin-top: 24px; padding: 18px; border: 1px dashed #bceacb; border-radius: 18px; background: #fbfffc; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.buy-card { margin-top: 22px; padding: 26px; border: 1px solid #bceacb; background: linear-gradient(180deg, #f2fff6, #fff); border-radius: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 850; margin-bottom: 6px; }
.field small { display: block; color: var(--muted); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 16px; padding: 0 14px; outline: none; background: #fff;
}
.field textarea { padding-top: 14px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(53,226,122,.14); }
.qty-control { display: grid; grid-template-columns: 52px 1fr 52px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.qty-control button, .qty-control input { border: 0; min-height: 54px; text-align: center; background: #fff; }
.qty-control button { font-size: 20px; }
.total-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; margin-top: 20px; border-top: 1px solid var(--line); font-weight: 850; }
.total-row strong { font-size: 24px; letter-spacing: -.04em; }
.notice { margin-top: 14px; color: var(--muted); font-size: 14px; }

.price-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; border-style: hidden; box-shadow: 0 0 0 1px var(--line); }
.price-table th, .price-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { background: #f8fffb; }
.price-table tr:last-child td { border-bottom: 0; }

.checkout-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.order-summary { position: sticky; top: 102px; }
.summary-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.summary-icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; color: #fff; font-weight: 900; flex: 0 0 auto; }
.summary-item h3 { font-size: 19px; }
.summary-item p { margin: 4px 0 0; color: var(--muted); }
.summary-line { display: flex; justify-content: space-between; gap: 12px; margin: 12px 0; }
.summary-line.total { font-size: 22px; font-weight: 900; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.payment-box { margin-top: 20px; background: #f8fffb; border: 1px solid #cfeadd; border-radius: 22px; padding: 20px; }
.copy-box { display: flex; gap: 10px; margin-top: 12px; }
.copy-box input { flex: 1; min-width: 0; }
.empty-state { text-align: center; padding: 58px 20px; }
.empty-state p { color: var(--muted); }
.alert { border-radius: 18px; padding: 16px; background: var(--warning); color: #7a4f00; margin-bottom: 18px; border: 1px solid #ffe3aa; }
.success { border-radius: 18px; padding: 16px; background: #ecfff2; color: #0b6d31; margin-top: 16px; border: 1px solid #c8efd4; display: none; }
.success.show { display: block; }

.device-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.device-item { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; display: flex; gap: 12px; align-items: center; }

@media (max-width: 980px) {
  .mobile-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 76px;
    min-height: calc(100vh - 76px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .2s ease;
    border-top: 1px solid var(--line);
  }
  body.menu-open .nav { transform: translateX(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .currency-pill { display: none; }
  .hero-grid, .product-layout, .checkout-layout { grid-template-columns: 1fr; }
  .product-visual, .order-summary { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 22px, var(--container)); }
  .top-strip { font-size: 13px; }
  .header-actions .btn { display: none; }
  .hero { padding-top: 46px; }
  .search-panel { flex-wrap: wrap; }
  .search-panel .btn { width: 100%; }
  .phone-card { padding: 18px; min-height: 470px; }
  .float-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
  .destination-grid, .feature-grid, .form-grid, .device-list { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-head { display: block; }
  .product-title-row { display: block; }
  .price-large { text-align: left; margin-top: 16px; }
  .product-main, .buy-card, .feature-card, .review-card, .faq-box, .checkout-card, .info-card { padding: 20px; }
  .compat-box { display: block; }
  .compat-box .btn { margin-top: 12px; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .cta-box { padding: 30px; }
}

/* Atualizações: franquia de dados e fluxo PIX automático */
.price-large small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.data-allowance-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(27, 114, 255, .18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 114, 255, .08), rgba(54, 216, 137, .10));
  display: grid;
  gap: 4px;
}

.data-allowance-box span,
.data-allowance-box small {
  color: var(--muted);
}

.data-allowance-box strong {
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.pix-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 22px;
  align-items: start;
}

.pix-qr {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 14px;
}

.pix-code {
  min-height: 140px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .82rem;
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 850;
  background: rgba(249, 199, 79, .16);
  color: #8a5a00;
}

.status-pill.paid {
  background: rgba(54, 216, 137, .18);
  color: #057a45;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}

.order-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.order-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.order-list span {
  color: var(--muted);
}

.order-list strong {
  text-align: right;
}

.loading-note {
  color: var(--muted);
  font-size: .95rem;
}

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

/* Complementos visuais para checkout PIX, pagamento e obrigado */
.error-box {
  border-radius: 18px;
  padding: 16px;
  background: #fff1f1;
  color: #9a1919;
  margin-top: 16px;
  border: 1px solid #ffd0d0;
}

.checkout-data-highlight,
.data-highlight {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #cfeadd;
  border-radius: 22px;
  background: linear-gradient(135deg, #f2fff6, #eef7ff);
  display: grid;
  gap: 4px;
}

.data-highlight span,
.data-highlight small {
  color: var(--muted);
}

.data-highlight strong {
  font-size: 1.55rem;
  color: var(--brand-dark);
}

.pix-layout {
  align-items: start;
}

.pix-card h2 {
  margin-top: 14px;
}

.qr-wrap {
  display: grid;
  place-items: center;
  margin: 22px 0 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.qr-wrap img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 14px;
}

.payment-steps {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--muted);
}

.status-pill.pending::before,
.status-pill.paid::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.thanks-section {
  min-height: 70vh;
  display: grid;
  align-items: center;
  background: radial-gradient(circle at 18% 18%, rgba(53,226,122,.14), transparent 26%), linear-gradient(180deg, #f8fffb, #fff);
}

.thanks-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #063b19;
  font-weight: 950;
  font-size: 42px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
  margin: 28px 0;
}

.order-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  background: #fbfffc;
}

.order-grid span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 4px;
}

.order-grid strong {
  display: block;
  color: var(--ink);
}

.whatsapp-install {
  background: #25d366;
  color: #062b15;
}

@media (max-width: 680px) {
  .copy-box { flex-direction: column; }
  .order-grid { grid-template-columns: 1fr; }
}

/* Formulário pós-pagamento para finalizar instalação via WhatsApp */
.install-device-form {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  text-align: left;
}

.install-device-form .field {
  margin-bottom: 16px;
}

.install-device-form input {
  width: 100%;
}

.install-device-form .whatsapp-install {
  width: 100%;
  justify-content: center;
}

/* Sistema de GB extra */
.extra-gb-field {
  margin-top: 16px;
}
.price-breakdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 4px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: #f8fafc;
  color: #475569;
  font-size: .92rem;
}
.price-breakdown strong {
  color: #0f172a;
}
.extra-data-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(44, 123, 229, .10), rgba(126, 232, 173, .16));
  color: #334155;
}
@media (max-width: 640px) {
  .price-breakdown {
    align-items: flex-start;
    flex-direction: column;
  }
}
