:root {
  --bg-main: #0b1220;
  --bg-deep: #08101c;
  --bg-panel: #1c2737;
  --bg-panel-2: #202c3d;
  --bg-header: #050505;
  --bg-soft: #111a28;
  --text-main: #ffffff;
  --text-soft: #c9d2e3;
  --text-muted: #7f8aa3;
  --gold: #f3c316;
  --gold-strong: #ffcc00;
  --gold-dark: #d4a800;
  --green-badge: #2f9e72;
  --red-badge: #b04c63;
  --line: rgba(255, 255, 255, 0.06);
  --bg-card: var(--bg-panel);
  --bg-card-soft: #162132;
  --danger: #ff9fb2;
  --success: #72e0b0;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

img,
video,
canvas {
  max-width: 100%;
  height: auto;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(30, 50, 80, 0.18), transparent 35%),
    linear-gradient(180deg, #0a1019 0%, #0b1220 35%, #09111b 100%);
  color: var(--text-main);
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(660px, 100vw);
  height: 72px;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(243, 195, 22, 0.15);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 0 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-logo {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.menu-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #121d2b;
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
}

.ghost-btn {
  visibility: hidden;
}

.link-btn {
  display: grid;
  place-items: center;
}

.container {
  max-width: 660px;
  margin: 78px auto 0;
  padding: 14px;
  width: 100%;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.section-head h1 {
  font-size: 1.28rem;
}

.section-head p,
.muted {
  color: var(--text-soft);
  font-size: 0.91rem;
}

.muted {
  color: var(--text-muted);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: linear-gradient(180deg, #1c2737 0%, #182231 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

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

.card-content {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.card-featured {
  overflow: hidden;
}

.card-featured img {
  height: 230px;
}

.card-title-lg {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.card-compact {
  padding: 10px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: center;
  background: #141f2f;
}

.card-compact img {
  height: 88px;
  border-radius: 12px;
}

.card-compact-content {
  display: grid;
  gap: 6px;
}

.card-compact-content h3 {
  font-size: 0.96rem;
}

.status-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.73rem;
  padding: 3px 8px;
}

.status-active {
  background: rgba(47, 158, 114, 0.2);
  color: #72e0b0;
}

.status-ended {
  background: rgba(176, 76, 99, 0.22);
  color: #ff9fb2;
}

.badge-success {
  background: rgba(47, 158, 114, 0.2);
  color: #72e0b0;
}

.badge-danger,
.badge-closed {
  background: rgba(176, 76, 99, 0.22);
  color: #ff9fb2;
}

.badge-muted {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 11px 14px;
  font-weight: 700;
  transition: 0.18s ease;
}

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

.btn-primary {
  width: 100%;
  color: #111;
  background: linear-gradient(180deg, #f7c91d 0%, #efbc10 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(243, 195, 22, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffd22d 0%, #e3b109 100%);
}

.btn-primary:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  background: #1a2639;
  color: var(--text-main);
}

.btn-outline {
  background: #101827;
  border: 1px solid rgba(243, 195, 22, 0.35);
  color: var(--gold);
}

.btn-sm {
  width: fit-content;
  padding: 8px 12px;
  font-size: 0.84rem;
}

.btn-block {
  width: 100%;
}

.panel {
  background: linear-gradient(180deg, #1c2737 0%, #182231 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.campaign-page {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.campaign-main-card h1 {
  margin-top: 6px;
  font-size: 1.17rem;
}

.hero-wrap {
  position: relative;
}

.campaign-shell {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.campaign-main-card.campaign-shell {
  padding: 0;
  overflow: hidden;
}

.campaign-hero {
  width: 100%;
  max-height: 420px;
  border-radius: 0;
  display: block;
  object-fit: cover;
}

.campaign-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(0deg, rgba(4, 7, 12, 0.95), rgba(4, 7, 12, 0.1));
}

.campaign-overlay h1 {
  font-size: 1.18rem;
  color: #fff;
  margin: 4px 0;
}

.campaign-overlay p {
  color: #ccd7ea;
  font-size: 0.87rem;
}

.urgency-ribbon {
  display: inline-flex;
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(243, 195, 22, 0.42);
  color: #f7d060;
  border-radius: 8px;
  padding: 3px 8px;
  font-weight: 700;
}

.tickets-strip {
  min-height: 40px;
  background: #111924;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}

.tickets-icon {
  font-size: 0.95rem;
}

.progress-wrap {
  background: #1d2736;
  border-radius: 0;
  overflow: hidden;
}

.progress-bar {
  height: 20px;
  width: 100%;
  background: linear-gradient(180deg, #ffe600 0%, #f3d400 100%);
  color: #111;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: #1f2a3a;
  padding: 10px 12px;
  color: #fff;
  font-size: 0.88rem;
}

.info-price {
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
}

.prizes-strip {
  margin: 10px 10px 8px;
  min-height: 34px;
  border-radius: 10px;
  background: #5c6877;
  color: #15202e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.prizes-trigger {
  cursor: pointer;
  transition: 0.2s ease;
  border: 0;
}

.prizes-trigger:hover {
  filter: brightness(1.05);
}

.premium-prizes-trigger {
  width: calc(100% - 20px);
  margin: 10px 10px 8px;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd42d 0%, #f3c316 100%);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(243, 195, 22, 0.22);
  cursor: pointer;
  transition: 0.2s ease;
}

.premium-prizes-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(243, 195, 22, 0.3);
}

.prizes-trigger-icon {
  font-size: 18px;
  line-height: 1;
}

.prizes-trigger-text {
  line-height: 1;
}

.prizes-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

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

.prizes-modal {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(243, 195, 22, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  padding: 18px;
  position: relative;
}

.prizes-modal h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.prizes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prize-item {
  background: #0f1a2a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 12px;
}

.prize-item-title {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.prize-item-desc {
  color: #c7d2e4;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.prize-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 158, 114, 0.18);
  color: #72e0b0;
  font-size: 12px;
  font-weight: 800;
}

.prizes-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.price-strip {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  background: rgba(10, 18, 31, 0.9);
  border: 1px solid rgba(243, 195, 22, 0.18);
  border-radius: 14px;
}

.price-strip .label,
.price-strip .suffix {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.price-strip .price-badge {
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.campaign-highlight {
  margin: 0 10px 10px;
  text-align: center;
  color: #dbe3f3;
  font-size: 0.92rem;
  font-weight: 600;
}

.capsule {
  background: #182436;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-row h2 {
  font-size: 1.03rem;
}

.counter-chip {
  font-size: 0.74rem;
  background: rgba(243, 195, 22, 0.18);
  color: var(--gold);
  border: 1px solid rgba(243, 195, 22, 0.36);
  border-radius: 999px;
  padding: 3px 8px;
}

.package-list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.package-btn,
.package-card {
  min-height: 88px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(243, 195, 22, 0.28);
  background: #050505;
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.2s ease;
}

.pack-qty {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 6px;
}

.pack-tag {
  font-size: 10px;
  color: #f1f1f1;
  min-height: 14px;
}

.pack-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.package-card .package-qty {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}

.package-card .package-price {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.95;
}

.pack-action {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

.package-card .package-action {
  font-size: 12px;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.package-btn.popular,
.package-btn.active {
  background: #ecd79a;
  color: #111;
  border-color: var(--gold);
}

.package-btn.popular .pack-price,
.package-btn.active .pack-price,
.package-btn.popular .pack-action,
.package-btn.active .pack-action,
.package-btn.popular .pack-tag,
.package-btn.active .pack-tag,
.package-btn.popular .pack-qty,
.package-btn.active .pack-qty {
  color: #111;
}

.badge-popular,
.popular-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: #f3c316;
  color: #111;
  margin-bottom: 4px;
}

.cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-top: 10px;
  align-items: stretch;
}

.quantity-control {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  min-width: 176px;
}

.step-btn {
  background: #172335;
  color: #fff;
  border-radius: 12px;
}

.quantity-control input {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f1827;
  color: #fff;
  border-radius: 12px;
  padding: 10px;
}

.quantity-btn {
  width: 42px;
  height: 42px;
}

.quantity-input {
  height: 42px;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.btn-cta {
  min-height: 42px;
  border-radius: 12px;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 0.94rem;
}

.buy-btn .buy-label {
  font-size: 13px;
  font-weight: 500;
}

.buy-btn .buy-price {
  font-size: 16px;
  font-weight: 800;
}

.buy-row {
  display: grid;
  grid-template-columns: 44px 1fr 44px 1.3fr;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
  min-width: 0;
}

.buy-row > * {
  min-width: 0;
}

.qty-btn,
.qty-input,
.buy-btn {
  min-height: 46px;
  border-radius: 12px;
}

.qty-btn {
  background: #263246;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 22px;
  font-weight: 800;
}

.qty-input {
  background: #1f2a3a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.buy-btn .label {
  font-size: 14px;
  font-weight: 700;
}

.buy-btn .value {
  font-size: 18px;
  font-weight: 900;
}

.min-purchase-note {
  margin-top: 8px;
  font-size: 12px;
  color: #e6b2b2;
}

.min-purchase-note.valid {
  color: #9cb7d8;
}

.packages-section {
  padding: 14px;
  border-radius: 16px;
}

.packages-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 8px;
}

.accordion p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.winners-list {
  margin-top: 8px;
  display: grid;
  gap: 7px;
}

.winner-item {
  background: linear-gradient(180deg, #f8d61c 0%, #f1c90e 100%);
  color: #111;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.winner-item small {
  color: #2a2104;
  font-weight: 600;
}

.scratch-winners-section {
  margin-top: 18px;
}

.scratch-winners-card {
  background: linear-gradient(180deg, #1d2838 0%, #1a2331 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 14px 12px 16px;
}

.scratch-winners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.scratch-winners-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.scratch-winners-title h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.scratch-winners-title span {
  font-size: 14px;
  color: #7f8aa3;
}

.scratch-counter {
  min-width: 56px;
  height: 30px;
  padding: 0 10px;
  border-radius: 10px;
  background: #f3c316;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.scratch-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.scratch-filter-btn {
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(243, 195, 22, 0.28);
  background: #0f1a2a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.scratch-filter-btn.active {
  background: #f3c316;
  color: #111;
  border-color: #f3c316;
}

.scratch-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scratch-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, #f8d61c 0%, #f1c90e 100%);
  color: #111;
  border-radius: 10px;
  min-height: 38px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
}

.scratch-row .ticket {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 5px 8px;
  text-align: center;
  font-weight: 800;
}

.scratch-row .prize {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scratch-row .person {
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scratch-row.available {
  background: #243245;
  color: #dbe4f5;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.scratch-row.available .ticket {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.scratch-toggle-btn {
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: #aebad0;
  font-size: 13px;
  cursor: pointer;
}

.legal-section {
  margin-top: 18px;
  padding-bottom: 24px;
}

.legal-card {
  background: linear-gradient(180deg, #1d2838 0%, #1a2331 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.legal-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.legal-logos img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 24px;
  background: #e5e5e5;
  padding: 10px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.legal-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #b8c3d6;
  font-size: 15px;
  line-height: 1.55;
}

.legal-text p {
  margin: 0 0 12px;
}

.checkout-layout,
.payment-layout,
.scratch-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.form-grid label,
.pix-field {
  display: grid;
  gap: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

input,
textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1625;
  color: #fff;
  border-radius: 11px;
  padding: 10px 11px;
}

.upsell-box {
  background: rgba(243, 195, 22, 0.08);
  border: 1px solid rgba(243, 195, 22, 0.24);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 7px;
}

.promo-bubble {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #ffd42d 0%, #f3c316 100%);
  color: #111;
  border-radius: 18px;
  padding: 16px 18px;
  margin: 12px 0 14px;
  box-shadow: 0 12px 28px rgba(243, 195, 22, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: promoPulse 1.1s ease-in-out infinite;
}

.promo-bubble::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 34px;
  width: 34px;
  height: 34px;
  background: #ffd42d;
  transform: rotate(45deg);
  border-radius: 6px;
  opacity: 0.95;
}

.promo-bubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  animation: promoShine 2.2s linear infinite;
}

.promo-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-check input {
  display: none;
}

.promo-check-ui {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid #111;
  background: rgba(255, 255, 255, 0.78);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12);
}

.promo-check input:checked + .promo-check-ui {
  background: #111;
  border-color: #111;
}

.promo-check input:checked + .promo-check-ui::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.promo-content {
  min-width: 0;
}

.promo-title {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.promo-subtitle {
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 4px;
}

.promo-small {
  font-size: 13px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.2;
}

.promo-tag {
  min-width: 86px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}

.promo-bubble.selected {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 14px 34px rgba(243, 195, 22, 0.42);
}

@keyframes promoPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(243, 195, 22, 0.22);
  }
  50% {
    transform: scale(1.012);
    box-shadow: 0 16px 34px rgba(243, 195, 22, 0.36);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(243, 195, 22, 0.22);
  }
}

@keyframes promoShine {
  0% {
    left: -35%;
  }
  100% {
    left: 120%;
  }
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: #eaf0fb !important;
}

.countdown {
  margin: 8px 0;
  font-size: clamp(2rem, 8vw, 2.5rem);
  color: var(--gold);
  font-weight: 900;
}

.pix-block {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 16px;
}

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

.pix-code-box {
  border-radius: 14px;
  background: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-all;
}

.gateway-status {
  margin-top: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.gateway-status.info {
  background: rgba(255, 212, 45, 0.1);
  border: 1px solid rgba(243, 195, 22, 0.18);
  color: #ffe169;
}

.gateway-status.success {
  background: rgba(47, 158, 114, 0.12);
  border: 1px solid rgba(47, 158, 114, 0.22);
  color: #9bf0c8;
}

.gateway-status.error {
  background: rgba(176, 76, 99, 0.14);
  border: 1px solid rgba(176, 76, 99, 0.22);
  color: #ffc2cf;
}

.pix-copy-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd42d 0%, #f3c316 100%);
  color: #111;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(243, 195, 22, 0.2);
  transition: 0.2s ease;
  margin-top: 12px;
}

.pix-copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(243, 195, 22, 0.28);
}

.pix-copy-btn.success {
  background: linear-gradient(180deg, #35c98c 0%, #2f9e72 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(47, 158, 114, 0.24);
}

.pix-qr-wrap {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.pix-qr-container {
  width: 220px;
  min-height: 220px;
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.payment-qr-image {
  display: block;
  width: 100%;
  max-width: 192px;
  height: auto;
}

.qr-loading-state {
  width: 192px;
  height: 192px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(240, 240, 240, 0.96), rgba(255, 255, 255, 0.82));
  position: relative;
  overflow: hidden;
}

.qr-loading-state::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: qrShimmer 1.25s infinite;
}

@keyframes qrShimmer {
  100% {
    transform: translateX(100%);
  }
}

.pix-field textarea {
  min-height: 82px;
  resize: none;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 10px 0;
}

.warning {
  color: #ffd4d4;
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.hidden {
  display: none !important;
}

.qr-container {
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.fake-qr {
  width: 170px;
  height: 170px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #fff 10%, #000 10% 20%, #fff 20% 30%, #000 30% 40%, #fff 40% 50%, #000 50% 60%, #fff 60% 70%, #000 70% 80%, #fff 80% 90%, #000 90%),
    linear-gradient(#000 10%, #fff 10% 20%, #000 20% 30%, #fff 30% 40%, #000 40% 50%, #fff 50% 60%, #000 60% 70%, #fff 70% 80%, #000 80% 90%, #fff 90%);
  border: 8px solid #fff;
}

.scratch-panel {
  text-align: center;
}

.scratch-premium-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.scratch-canvas-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1b2d4a 0%, #10213a 100%);
  border: 1px solid rgba(243, 195, 22, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 28px rgba(243, 195, 22, 0.1);
}

.scratch-canvas-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 24px rgba(243, 195, 22, 0.08);
  pointer-events: none;
  z-index: 2;
}

.scratch-card {
  position: relative;
  width: min(100%, 370px);
  margin: 10px auto;
  border-radius: 15px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  overflow: hidden;
}

.scratch-area {
  background: linear-gradient(135deg, #ffd86b, #e0a800);
  border-radius: 16px;
  animation: brilho 2s infinite;
}

.scratch-result {
  min-height: 190px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f1b31, #1b2d49);
  font-size: 1.2rem;
  padding: 14px;
}

.winner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

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

.winner-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, #182437 0%, #101a29 100%);
  border: 1px solid rgba(243, 195, 22, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  text-align: center;
  overflow: hidden;
  animation: winnerPopIn 0.35s ease;
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe163 0%, #f3c316 100%);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.winner-modal h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
}

.winner-text {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.25;
  color: #f8f8f8;
  font-weight: 700;
}

.winner-prize-box {
  position: relative;
  border-radius: 20px;
  padding: 20px 14px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffd631 0%, #f0c400 100%);
  box-shadow: 0 12px 30px rgba(243, 195, 22, 0.35);
  overflow: hidden;
}

.winner-prize-box::before,
.winner-prize-box::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  background: rgba(255, 153, 0, 0.65);
  border-radius: 999px;
  transform: rotate(25deg);
}

.winner-prize-box::before {
  left: 16px;
  bottom: 28px;
}

.winner-prize-box::after {
  right: 24px;
  top: 24px;
}

.winner-prize-img {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: prizeBounce 1s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.25));
}

.winner-claim-btn {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffe163 0%, #f3c316 100%);
  color: #111;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(243, 195, 22, 0.28);
}

.winner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.winner-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.winner-confetti-bit {
  position: absolute;
  top: -12px;
  width: 9px;
  height: 16px;
  border-radius: 4px;
  animation: winnerConfettiFall 1.5s linear infinite;
}

.reserve-details-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 16px;
  color: #fff;
}

.reserve-details-id {
  margin-bottom: 14px;
}

.reserve-details-label-top {
  display: block;
  color: #b7c3d6;
  font-size: 14px;
}

.reserve-details-code {
  display: block;
  color: #8fa0ba;
  font-size: 13px;
  margin-top: 2px;
}

.reserve-details-line {
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
}

.reserve-details-line strong {
  font-weight: 900;
}

.payment-success-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(47, 158, 114, 0.12);
  border: 1px solid rgba(47, 158, 114, 0.22);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.payment-success-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f9e72;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.payment-success-title {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.payment-success-subtitle {
  color: #c7d2e4;
  font-size: 13px;
}

.confirm-page {
  display: grid;
  gap: 14px;
}

.confirm-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.confirm-details-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
}

.confirm-details-title {
  color: #c7d2e4;
  font-size: 14px;
  margin-bottom: 4px;
}

.confirm-details-code {
  color: #8fa0ba;
  font-size: 13px;
  margin-bottom: 12px;
}

.confirm-details-line {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.confirm-details-line strong {
  font-weight: 900;
}

.confirm-redirect-info {
  text-align: center;
  color: #c7d2e4;
  font-size: 14px;
  margin-bottom: 14px;
}

.confirm-go-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.paid-review-page {
  display: grid;
  gap: 14px;
}

.paid-review-card {
  display: grid;
  gap: 14px;
}

.neutral-review-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
}

.paid-review-copy {
  margin-bottom: 0;
}

.analysis-box {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.analysis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #fff;
}

.analysis-head span {
  color: #ffe169;
  font-weight: 900;
}

.analysis-progress {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #0c1522;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.22);
}

.analysis-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd42d 0%, #f3c316 55%, #35c98c 100%);
  box-shadow: 0 0 18px rgba(243, 195, 22, 0.24);
  transition: width 0.1s linear;
}

.analysis-note {
  margin-top: 10px;
  color: #c7d2e4;
  font-size: 14px;
  line-height: 1.5;
}

.premio-card {
  max-width: 520px;
  margin: 0 auto;
}

.prize-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 18px 16px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 12px;
}

.prize-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 18px;
  position: relative;
}

.prize-image-wrap::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.3) 0%, rgba(255, 196, 0, 0.08) 45%, rgba(255, 196, 0, 0) 75%);
  filter: blur(8px);
}

.prize-image-wrap img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
  animation: none;
}

.prize-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 900;
  color: #ffe169;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.18),
    0 0 20px rgba(255, 210, 45, 0.18);
}

.prize-title strong,
.prize-title .highlight {
  color: #ffffff;
}

.prize-description {
  margin: 0 0 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #c7d2e4;
}

.prize-input {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #091423;
  color: #fff;
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}

.prize-input::placeholder {
  color: #7f8aa3;
}

.prize-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd42d 0%, #f3c316 100%);
  color: #111;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(243, 195, 22, 0.2);
}

.pix-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

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

.pix-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 18px 16px;
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(243, 195, 22, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
}

.pix-modal h3 {
  margin: 0;
  font-size: 1.2rem;
}

.pix-value {
  margin: 0;
  font-weight: 800;
  color: #ffd42d;
}

.pix-qr-box {
  display: grid;
  place-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.pix-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.pix-modal-actions {
  display: grid;
  gap: 10px;
}

.upsell-info-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 100px);
}

.upsell-info-card {
  background: linear-gradient(180deg, #1b2738 0%, #162131 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 18px;
}

.upsell-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe163 0%, #f3c316 100%);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.upsell-info-card h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.upsell-info-card p {
  margin: 0 0 14px;
  color: #c7d2e4;
  font-size: 15px;
  line-height: 1.5;
}

.upsell-hero-placeholder {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, #22324a 0%, #18263a 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
}

.upsell-benefits {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #fff;
}

.upsell-benefits li {
  margin-bottom: 8px;
}

.upsell-highlight {
  border-radius: 16px;
  padding: 14px;
  background: rgba(243, 195, 22, 0.1);
  border: 1px solid rgba(243, 195, 22, 0.18);
  color: #ffe169;
  margin-bottom: 14px;
}

.upsell-phone-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 12px;
  margin: 0 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.upsell-actions {
  display: grid;
  gap: 10px;
}

.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  background: #0f1a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes brilho {
  0% { box-shadow: 0 0 10px #ffd86b; }
  50% { box-shadow: 0 0 30px #ffd86b; }
  100% { box-shadow: 0 0 10px #ffd86b; }
}

@keyframes pulo {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes winnerPopIn {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(18px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes prizeBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes winnerConfettiFall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(360px) rotate(280deg); opacity: 0; }
}

#scratchCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.summary-list {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.summary-list li {
  list-style: none;
  background: #101a29;
  border-radius: 10px;
  padding: 8px 9px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.89rem;
}

@media (max-width: 720px) {
  .topbar {
    width: 100vw;
    height: 68px;
  }

  .container {
    margin-top: 72px;
    max-width: 100%;
    padding: 10px;
  }

  .card-featured img {
    height: 205px;
  }

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

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

  .buy-row {
    grid-template-columns: 44px 1fr 44px;
  }

  .buy-row .buy-btn {
    grid-column: 1 / -1;
  }

}

@media (max-width: 640px) {
  .container,
  .campaign-page,
  .campaign-shell,
  .panel,
  .packages-section,
  .scratch-winners-section,
  .legal-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .info-strip {
    gap: 10px;
    padding: 8px 8px;
  }

  .buy-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .buy-btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }

  .promo-bubble {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px 14px;
  }

  .promo-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .promo-title {
    font-size: 17px;
  }

  .promo-subtitle {
    font-size: 14px;
  }

  .promo-small {
    font-size: 12px;
  }

  .package-list,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scratch-row {
    grid-template-columns: 92px 1fr 90px;
    font-size: 12px;
    gap: 6px;
  }

  .legal-logos img {
    max-width: 90%;
  }
}
