:root {
  --navy: #142540;
  --navy-2: #10203A;
  --blue: #3771AE;
  --blue-2: #51A7F2;
  --white: #FBF9FA;

  --bg: var(--navy);
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);

  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.78);

  --radius: 16px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.25);

  --max: 1320px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% -10%, rgba(81, 167, 242, 0.25), transparent 60%),
              radial-gradient(900px 500px at 110% 0%, rgba(55, 113, 174, 0.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--stroke);
  z-index: 100;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 37, 64, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  height: 90px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  transform: translateY(-1px);
}

.nav .active {
  background: rgba(81, 167, 242, 0.16);
  border: 1px solid rgba(81, 167, 242, 0.25);
}

.nav-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: transparent;
  color: #07111f;
  font-weight: 900;
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(81, 167, 242, 0.35);
}

/* Main */
.main {
  flex: 1;
  padding-bottom: 30px;
}

/* Hero */
.hero {
  padding: 54px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero--banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero--banner .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 45%;
  opacity: 0.75;
  filter: brightness(0.8) contrast(1.05);
  transform: scale(1.03);
}

.hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 32, 58, 0.95) 0%, rgba(16, 32, 58, 0.75) 40%, rgba(16, 32, 58, 0.25) 70%, rgba(16, 32, 58, 0) 100%);
}

.hero--banner .container {
  position: relative;
  z-index: 2;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.hero-card {
  padding: 26px;
}

.hero-aside {
  padding: 22px;
}

.feature {
  padding: 16px;
}

.stat {
  padding: 16px;
}

.mini {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.14);
}

.form {
  padding: 24px;
}

.kicker {
  color: var(--blue-2);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
}

.h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 8px 0 10px;
  font-weight: 950;
}

.p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}

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

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(234, 240, 255, 0.9);
}

.mini b {
  display: block;
  margin-bottom: 6px;
}

.mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 26px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.section .lead {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.65;
}

/* Grids */
.grid-3 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.feature b {
  display: block;
  margin-bottom: 6px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.stat .n {
  font-size: 26px;
  font-weight: 950;
}

.stat .l {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Forms */
.form h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.form .hint {
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}

.form h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

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

.field.full-width {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(81, 167, 242, 0.7);
  box-shadow: 0 0 0 4px rgba(81, 167, 242, 0.18);
}

.field .error {
  color: #ffb4b4;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border: 1px dashed rgba(81, 167, 242, 0.35);
  border-radius: 12px;
  background: rgba(81, 167, 242, 0.06);
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(234, 240, 255, 0.92);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(81, 167, 242, 0.22);
  background: rgba(81, 167, 242, 0.09);
  color: rgba(234, 240, 255, 0.9);
  line-height: 1.6;
  margin-top: 14px;
}

/* Footer */
.footer {
  margin-top: 28px;
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px; /* reduzido de 8px para 4px */
}

.footer-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px; /* reduzido de 6px para 2px */
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 4px; /* reduzido de 6px para 4px */
  line-height: 1.4;
}

.footer-col a {
  color: var(--muted);
  transition: color 0.2s;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.footer-col small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  transition: 0.2s;
}

.social a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* WhatsApp flutuante */
.whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.whats a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  transition: 0.2s;
}

.whats a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.whats .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
}

/* Mapa responsivo */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.15);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Página Sobre */
.page-sobre .page-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 110px;
  min-height: 520px;
  border-bottom: 1px solid var(--stroke);
}

.page-sobre .page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  opacity: 0.55;
  filter: brightness(0.75) contrast(1.08) saturate(0.95);
  transform: scale(1.03);
}

.page-sobre .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 15%, rgba(81, 167, 242, 0.22), transparent 60%),
              linear-gradient(90deg, rgba(16, 32, 58, 0.92) 0%, rgba(16, 32, 58, 0.78) 45%, rgba(16, 32, 58, 0.35) 75%, rgba(16, 32, 58, 0) 100%);
  pointer-events: none;
}

.page-sobre .page-hero .container {
  position: relative;
  z-index: 2;
}

.page-sobre .page-hero-content {
  display: flex;
  align-items: flex-start;
  min-height: 320px;
  padding-top: 16px;
}

.page-sobre .page-hero-card {
  width: 100%;
  max-width: none;
}

.page-sobre .section--overlap {
  margin-top: -313px;
  position: relative;
  z-index: 5;
  padding-top: 0;
}

.page-sobre .section--overlap .card {
  backdrop-filter: blur(10px);
}

/* Página Contato */
.page-contato .page-hero--contato {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 36px 0;
  border-bottom: 1px solid var(--stroke);
}

.page-contato .page-hero--contato .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
  opacity: 0.6;
  filter: brightness(0.72) contrast(1.08) saturate(0.95);
  transform: scale(1.03);
}

.page-contato .page-hero--contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 20%, rgba(81, 167, 242, 0.28), transparent 60%),
              linear-gradient(90deg, rgba(16, 32, 58, 0.96) 0%, rgba(16, 32, 58, 0.8) 45%, rgba(16, 32, 58, 0.45) 70%, rgba(16, 32, 58, 0.1) 100%);
  pointer-events: none;
}

.page-contato .page-hero--contato .container {
  position: relative;
  z-index: 2;
}

.page-contato .page-hero--contato .page-hero-content {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-contato .page-hero-left {
  max-width: 680px;
}

.page-contato .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(234, 240, 255, 0.92);
  font-weight: 800;
}

.page-contato .hero-ico {
  font-size: 18px;
}

.page-contato .hero-title {
  margin: 14px 0 8px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 950;
}

.page-contato .hero-sub {
  margin: 0 0 18px;
  max-width: 620px;
  color: rgba(234, 240, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
}

.page-contato .hero-big {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 950;
  color: rgba(234, 240, 255, 0.95);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Utilities */
.mt-3 {
  margin-top: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .split {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: rgba(20, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-bottom: 1px solid var(--stroke);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 40;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    justify-content: center;
    padding: 14px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    height: 70px;
  }

  .page-sobre .page-hero {
    padding: 24px 0 95px;
    min-height: 460px;
  }

  .page-sobre .page-hero-content {
    min-height: 280px;
    padding-top: 10px;
  }

  .page-sobre .section--overlap {
    margin-top: -60px;
  }

  .page-contato .page-hero--contato {
    min-height: 360px;
    padding: 26px 0;
  }

  .page-contato .hero-title {
    font-size: 30px;
  }

  .page-contato .hero-big {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .h1 {
    font-size: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-col {
    padding: 0 12px; /* adicionado para não colar na lateral */
  }

  .page-sobre .page-hero {
    padding: 18px 0 85px;
    min-height: 420px;
  }

  .page-sobre .page-hero-card {
    padding: 16px;
  }

  .page-sobre .section--overlap {
    margin-top: -50px;
  }

  .page-contato .page-hero--contato {
    min-height: 320px;
  }

  .page-contato .hero-badge {
    padding: 8px 12px;
    font-size: 13px;
  }

  .page-contato .hero-sub {
    font-size: 14px;
  }

  .page-contato .hero-big {
    font-size: 22px;
  }
}

/* Página Política de Privacidade */
.page-privacidade .policy {
  max-width: 980px;
  margin: 0 auto;
}

.policy-hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 18px 0;
}

.policy-h2 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.policy-h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  color: rgba(234, 240, 255, 0.95);
}

.policy-text {
  color: rgba(234, 240, 255, 0.78);
  line-height: 1.75;
  margin: 0 0 12px;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 6px;
  padding-left: 18px;
  color: rgba(234, 240, 255, 0.78);
}

.policy-list li {
  list-style: disc;
}


/* Página Termos de Uso */
.page-termos .terms {
  max-width: 980px;
  margin: 0 auto;
}

.terms-hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 18px 0;
}

.terms-h2 {
  margin: 14px 0 10px;
  font-size: 20px;
}

.terms-text {
  color: rgba(234, 240, 255, 0.78);
  line-height: 1.75;
  margin: 0 0 12px;
}

.terms-checks {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(81, 167, 242, 0.35);
  background: rgba(81, 167, 242, 0.06);
}

.terms-check input {
  margin-top: 3px;
}

.terms-error {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 180, 180, 0.25);
  background: rgba(255, 180, 180, 0.08);
  color: #ffb4b4;
}

.terms-small {
  color: rgba(234, 240, 255, 0.7);
  font-size: 13px;
}

/* =========================
   Consentimento (compacto)
   ========================= */
.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
}

.consent-modal {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(20, 37, 64, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.consent-head {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.consent-head h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.consent-close-x {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  padding: 6px 10px;
  cursor: pointer;
}

.consent-body {
  padding: 12px 14px;
}

.consent-text {
  margin: 0 0 10px;
  color: rgba(234,240,255,0.82);
  line-height: 1.55;
  font-size: 13px;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 10px;
}

.consent-links a {
  text-decoration: underline;
  color: rgba(234,240,255,0.92);
  font-size: 13px;
}

.consent-checks {
  display: grid;
  gap: 8px;
  margin: 10px 0;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(81, 167, 242, 0.30);
  background: rgba(81, 167, 242, 0.07);
  font-size: 13px;
  color: rgba(234,240,255,0.88);
}

.consent-check input { margin-top: 3px; }

.consent-error {
  display: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 180, 180, 0.25);
  background: rgba(255, 180, 180, 0.08);
  color: #ffb4b4;
  font-size: 13px;
}

.consent-foot {
  padding: 10px 14px 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.consent-foot .btn {
  padding: 10px 14px;
  font-size: 0.95rem;
}

/* No mobile fica ainda mais slim */
@media (max-width: 560px) {
  .consent-modal { max-width: 100%; }
  .consent-overlay { padding: 10px; }
  .consent-foot { justify-content: stretch; }
  .consent-foot .btn { flex: 1; }
}

body.consent-locked {
  overflow: hidden;
}