/* =====================================================
   22BET PORTUGAL – MAIN STYLESHEET
   ===================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --c-primary: #195A61;
  --c-primary-dark: #0F4C54;
  --c-primary-deep: #044146;
  --c-primary-mid: #09626A;
  --c-accent: #FF4949;
  --c-white: #FFFFFF;
  --c-bg: #0a1a1c;
  --c-bg2: #0d2124;
  --c-bg3: #112629;
  --c-text: #e8f4f5;
  --c-text-muted: #8ab4b8;
  --c-border: rgba(25,90,97,0.35);
  --c-gold: #f5c842;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-btn: 0 6px 20px rgba(255,73,73,0.35);
  --shadow-btn-green: 0 6px 20px rgba(25,90,97,0.5);
  --transition: 0.22s ease;
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --container: 1200px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #FF4949 0%, #d42f2f 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: 2px solid rgba(255,255,255,0.12);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255,73,73,0.5);
  background: linear-gradient(135deg, #ff5f5f 0%, #e03535 100%);
}

.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 3px 10px rgba(255,73,73,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.12);
}

.btn--ghost:active {
  transform: translateY(0);
}

.btn--xl {
  min-height: 54px;
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--c-white);
}

.section__title--light { color: var(--c-text); }

.section__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--c-text-muted);
  max-width: 780px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section__sub--light { color: rgba(232,244,245,0.75); }

.text-accent { color: var(--c-accent); }
.text-accent-light { color: var(--c-gold); }

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
.section {
  padding: clamp(56px, 8vw, 100px) 0;
  overflow: hidden;
}

.section:nth-child(odd) { background: var(--c-bg2); }
.section:nth-child(even) { background: var(--c-bg); }

/* Override backgrounds */
.advantages { background: var(--c-bg2); }
.bonuses { background: linear-gradient(160deg, var(--c-primary-deep) 0%, #031f22 100%); }
.howto { background: var(--c-bg); }
.sport { background: linear-gradient(160deg, #031f22 0%, var(--c-bg2) 100%); }
.casino { background: var(--c-bg); }
.mobile { background: linear-gradient(160deg, var(--c-primary-deep) 0%, #031f22 100%); }
.payments { background: var(--c-bg2); }
.support { background: linear-gradient(160deg, #031f22 0%, var(--c-bg2) 100%); }
.faq { background: var(--c-bg); }
.finalcta { background: linear-gradient(135deg, var(--c-primary-deep) 0%, #031f22 50%, var(--c-primary) 100%); }

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,26,28,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header__container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.header__logo { flex-shrink: 0; }

.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.header__nav { flex: 1; overflow-x: auto; overflow-y: visible; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  justify-content: center;
}

.header__nav-link {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.03em;
}

.header__nav-link:hover { color: var(--c-white); background: rgba(255,255,255,0.07); }

.header__nav-link--bonus {
  color: var(--c-gold);
  font-weight: 900;
}

.header__nav-link--bonus:hover { color: #ffe080; background: rgba(245,200,66,0.1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__actions .btn {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.85rem;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.header__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: rgba(10,26,28,0.99);
  border-top: 1px solid var(--c-border);
  animation: slideDown 0.22s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.header__mobile-menu.is-open { display: flex; }

.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__mobile-link {
  display: block;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.header__mobile-link:hover { background: rgba(255,255,255,0.07); }

.header__mobile-link--bonus { color: var(--c-gold); }

.header__mobile-cta {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: linear-gradient(180deg, #031f22 0%, var(--c-primary-deep) 40%, var(--c-bg) 100%);
  overflow: hidden;
}

.hero__media {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  border-bottom: 3px solid var(--c-primary);
}

.hero__media a { display: block; width: 100%; }

.hero__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.hero__media:hover .hero__img { transform: scale(1.02); }

.hero__content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px clamp(48px, 6vw, 80px);
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-mid) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.hero__bonus-text {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  color: var(--c-white);
  text-shadow: 0 4px 30px rgba(255,73,73,0.4), 0 2px 0 rgba(0,0,0,0.5);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__bonus-detail {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 36px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hero__highlight {
  color: var(--c-gold);
  font-weight: 900;
  font-size: 1.15em;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  opacity: 0.7;
}

/* =====================================================
   ADVANTAGES
   ===================================================== */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.advantages__card {
  background: linear-gradient(135deg, var(--c-bg3) 0%, rgba(4,65,70,0.3) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}

.advantages__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  border-color: rgba(25,90,97,0.65);
}

.advantages__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.advantages__card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.advantages__card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages__cta { text-align: center; margin-top: 10px; }

/* =====================================================
   BONUSES
   ===================================================== */
.bonuses__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.bonuses__card {
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  min-width: 0;
  transition: border-color var(--transition), transform var(--transition);
}

.bonuses__card--featured {
  border-color: rgba(255,73,73,0.45);
  background: linear-gradient(135deg, rgba(255,73,73,0.07) 0%, rgba(4,65,70,0.3) 100%);
}

.bonuses__card--featured:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}

.bonuses__tag {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.bonuses__icon { font-size: 2.5rem; margin-bottom: 14px; }

.bonuses__name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 8px;
}

.bonuses__value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
}

.bonuses__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.bonuses__list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bonuses__list li {
  font-size: 0.88rem;
  color: var(--c-text);
  font-weight: 600;
}

.bonuses__card .btn { width: 100%; }

.bonuses__media {
  margin: 8px 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--c-border);
  max-height: 380px;
}

.bonuses__media a { display: block; }

.bonuses__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.35s ease;
  background: rgba(4,65,70,0.2);
}

.bonuses__media:hover .bonuses__img { transform: scale(1.02); }

.bonuses__terms {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  opacity: 0.65;
  margin-top: 10px;
}

/* =====================================================
   HOW TO START
   ===================================================== */
.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}

.howto__steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-accent) 100%);
  border-radius: 2px;
}

.howto__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  min-width: 0;
}

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

.howto__step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-white);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(25,90,97,0.5);
  border: 3px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.howto__step-body { flex: 1; min-width: 0; padding-top: 10px; }

.howto__step-body h3 {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 8px;
}

.howto__step-body p {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.howto__cta { text-align: center; }
.howto__cta .btn { margin-bottom: 14px; }

.howto__note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  opacity: 0.75;
}

/* =====================================================
   SPORT
   ===================================================== */
.sport__media {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--c-border);
  max-height: 400px;
}

.sport__media a { display: block; }

.sport__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  background: rgba(4,65,70,0.2);
  transition: transform 0.35s ease;
}

.sport__media:hover .sport__img { transform: scale(1.02); }

.sport__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.sport__cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 0;
}

.sport__cat-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.sport__list { display: flex; flex-direction: column; gap: 7px; }

.sport__list li {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  padding-left: 14px;
  position: relative;
  overflow-wrap: anywhere;
}

.sport__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 900;
}

.sport__live {
  background: linear-gradient(135deg, rgba(255,73,73,0.08) 0%, rgba(4,65,70,0.25) 100%);
  border: 1px solid rgba(255,73,73,0.25);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  min-width: 0;
}

.sport__live-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.sport__live-desc {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.sport__cta { text-align: center; }

/* =====================================================
   CASINO
   ===================================================== */
.casino__media {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--c-border);
  max-height: 400px;
}

.casino__media a { display: block; }

.casino__img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  object-position: center;
  background: rgba(4,65,70,0.2);
  transition: transform 0.35s ease;
}

.casino__media:hover .casino__img { transform: scale(1.02); }

.casino__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.casino__card {
  background: linear-gradient(135deg, var(--c-bg3) 0%, rgba(4,65,70,0.25) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: block;
  color: var(--c-text);
}

.casino__card:hover {
  transform: translateY(-4px);
  border-color: rgba(25,90,97,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.casino__card-icon { font-size: 2.2rem; margin-bottom: 12px; }

.casino__card h3 {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--c-white);
  margin-bottom: 8px;
}

.casino__card p {
  font-size: 0.86rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.casino__cta { text-align: center; }

/* =====================================================
   MOBILE APP
   ===================================================== */
.mobile__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.mobile__feat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  min-width: 0;
}

.mobile__feat-icon { font-size: 2.4rem; margin-bottom: 14px; }

.mobile__feat h3 {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.mobile__feat p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.mobile__feat .btn { width: 100%; }

.mobile__benefits {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 36px;
  min-width: 0;
}

.mobile__benefits-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 20px;
}

.mobile__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mobile__benefit-item {
  font-size: 0.87rem;
  color: var(--c-text);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.mobile__cta { text-align: center; }

/* =====================================================
   PAYMENTS
   ===================================================== */
.payments__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.payments__group {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  min-width: 0;
}

.payments__group-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--c-white);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.payments__methods {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.payments__method {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  overflow-wrap: anywhere;
}

.payments__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.payments__info-card {
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, rgba(4,65,70,0.4) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  min-width: 0;
}

.payments__info-card h4 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.payments__big {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--c-gold);
  margin-bottom: 6px;
}

.payments__info-card p:last-child {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.payments__cta { text-align: center; }

/* =====================================================
   SUPPORT
   ===================================================== */
.support__channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.support__channel {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  min-width: 0;
}

.support__channel-icon { font-size: 2.4rem; margin-bottom: 14px; }

.support__channel h3 {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 10px;
}

.support__channel p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.support__channel .btn { width: 100%; }

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

.support__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-text);
  min-width: 0;
  overflow-wrap: anywhere;
}

.support__trust-icon { font-size: 1.4rem; flex-shrink: 0; }

/* =====================================================
   FAQ
   ===================================================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  text-align: left;
  transition: background var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__question:hover { background: rgba(255,255,255,0.05); }
.faq__question[aria-expanded="true"] { color: var(--c-gold); background: rgba(245,200,66,0.05); }

.faq__arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform var(--transition);
  color: var(--c-text-muted);
}

.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); color: var(--c-gold); }

.faq__answer {
  display: none;
  padding: 0 22px 22px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__answer.is-open { display: block; }

.faq__answer p {
  font-size: 0.91rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.finalcta__box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.finalcta__badge {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finalcta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--c-white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(255,73,73,0.3);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.finalcta__bonus {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--c-text);
  margin-bottom: 28px;
  line-height: 1.5;
}

.finalcta__bonus strong { color: var(--c-gold); }

.finalcta__media {
  margin: 0 auto 30px;
  max-width: 660px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,73,73,0.3);
  max-height: 380px;
}

.finalcta__media a { display: block; }

.finalcta__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  background: rgba(4,65,70,0.2);
  transition: transform 0.35s ease;
}

.finalcta__media:hover .finalcta__img { transform: scale(1.02); }

.finalcta__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.finalcta__terms {
  font-size: 0.78rem;
  color: rgba(232,244,245,0.45);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #030e10;
  border-top: 1px solid var(--c-border);
  padding: 60px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer__logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.footer__links-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--c-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__links-list a {
  font-size: 0.87rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}

.footer__links-list a:hover { color: var(--c-white); }

.footer__payments {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer__payments-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__pay {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-muted);
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.footer__trust-badge {
  display: inline-block;
  background: rgba(25,90,97,0.25);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__bottom { border-top: 1px solid var(--c-border); padding-top: 20px; }

.footer__copy {
  font-size: 0.83rem;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 0.77rem;
  color: rgba(138,180,184,0.5);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

/* =====================================================
   CATFISH BAR
   ===================================================== */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--c-primary-deep) 0%, #0a2f33 50%, var(--c-primary-deep) 100%);
  border-top: 2px solid var(--c-primary);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.catfish.is-hidden { transform: translateY(110%); }

.catfish__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: calc(var(--container) - 40px);
  margin: 0 auto;
  width: 100%;
}

.catfish__text {
  flex: 1;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 700;
  color: var(--c-text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.catfish__btn {
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 20px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.catfish__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}

.catfish__close:hover { color: var(--c-white); background: rgba(255,255,255,0.1); }

/* =====================================================
   EXIT POPUP
   ===================================================== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.exit-popup.is-visible { display: flex; align-items: center; justify-content: center; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.exit-popup__box {
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, #0d2a2e 0%, #031f22 60%, #0a1a1c 100%);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 500px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: popIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}

.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.exit-popup__close:hover { background: rgba(255,73,73,0.2); color: var(--c-white); }

.exit-popup__badge {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.exit-popup__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--c-white);
  margin-bottom: 12px;
}

.exit-popup__bonus {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--c-gold);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.exit-popup__sub {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.exit-popup__sub strong { color: var(--c-white); }
.exit-popup__btn { width: 100%; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Large tablet */
@media (max-width: 1024px) {
  .payments__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .mobile__benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet */
@media (max-width: 768px) {
  /* Header */
  .header__nav { display: none; }
  .header__actions .btn:not(.header__actions .btn:last-child) { display: none; }
  .header__burger { display: flex; }

  /* Grids → 1–2 col */
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonuses__cards { grid-template-columns: 1fr; }
  .sport__grid { grid-template-columns: 1fr; }
  .casino__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile__features { grid-template-columns: 1fr; }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__info { grid-template-columns: 1fr; }
  .support__channels { grid-template-columns: 1fr; }
  .support__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .mobile__benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Hero */
  .hero__cta-group { flex-direction: column; align-items: center; }
  .hero__cta-group .btn { width: 100%; max-width: 340px; }

  /* Howto */
  .howto__steps::before { left: 28px; }
  .howto__step-num { width: 56px; height: 56px; font-size: 1.3rem; }

  /* Final CTA */
  .finalcta__cta-group { flex-direction: column; align-items: center; }
  .finalcta__cta-group .btn { width: 100%; max-width: 340px; }

  /* Catfish */
  .catfish__text { white-space: normal; font-size: 0.78rem; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --radius: 10px; --radius-lg: 14px; }

  .advantages__grid { grid-template-columns: 1fr; }
  .casino__grid { grid-template-columns: 1fr; }
  .payments__grid { grid-template-columns: 1fr; }
  .support__trust { grid-template-columns: 1fr; }
  .mobile__benefits-grid { grid-template-columns: 1fr; }

  .hero__media { max-height: 260px; }
  .hero__img { max-height: 260px; }

  .section { padding: 44px 0; }

  .header__logo-img { height: 36px; }

  .howto__step { flex-direction: column; gap: 12px; }
  .howto__steps::before { display: none; }
  .howto__step-num { margin: 0 auto; }

  .btn--xl { min-height: 50px; padding: 13px 24px; font-size: 0.97rem; }

  .exit-popup__box { padding: 32px 20px; }
  .exit-popup__title { font-size: 1.6rem; }

  .bonuses__card { padding: 28px 20px; }
  .bonuses__value { font-size: 2.4rem; }

  .catfish__inner { flex-wrap: wrap; }
  .catfish__text { width: calc(100% - 40px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .catfish__btn { flex: 1; min-width: 120px; font-size: 0.78rem; padding: 8px 12px; }

  /* Section in CTA context - full width buttons */
  .section .btn:not(.header__actions .btn):not(.catfish__btn) {
    width: 100%;
  }
}

/* Very small */
@media (max-width: 360px) {
  .hero__bonus-text { font-size: 2.4rem; }
  .section__title { font-size: 1.75rem; }
  .finalcta__title { font-size: 2rem; }
}
/* ════════════════════════════════════════════════════
   22Bet Portugal — Regulação, Login, APK e Jogo Responsável
   Namespace: bet22-pt-secure__
   Mobile-first
═════════════════════════════════════════════════════ */

.bet22-pt-secure {
  width: 100%;
  background: linear-gradient(180deg, #0a1a1c 0%, #0d2124 100%);
  color: #e8f4f5;
  padding: 3.25rem 0;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  line-height: 1.7;
}

.bet22-pt-secure__container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.bet22-pt-secure__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 16px rgba(25, 90, 97, 0.3);
}

.bet22-pt-secure__lead {
  background: linear-gradient(145deg, rgba(25, 90, 97, 0.18) 0%, #112629 100%);
  border: 1px solid rgba(25, 90, 97, 0.4);
  border-left: 4px solid #195A61;
  border-radius: 0.875rem;
  padding: 1.25rem 1.25rem;
  margin: 0 0 2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.bet22-pt-secure__lead p {
  font-size: 1rem;
  color: #e8f4f5;
  margin: 0;
  line-height: 1.75;
  font-weight: 500;
}

.bet22-pt-secure__article {
  background: linear-gradient(145deg, #112629 0%, rgba(4, 65, 70, 0.4) 100%);
  border: 1px solid rgba(25, 90, 97, 0.35);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.bet22-pt-secure__article:hover {
  border-color: rgba(25, 90, 97, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.bet22-pt-secure__article:last-of-type {
  margin-bottom: 1.5rem;
}

.bet22-pt-secure__h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #f5c842;
  margin: 0 0 0.875rem;
  text-transform: none;
}

.bet22-pt-secure__h4 {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 1.25rem 0 0.625rem;
  padding-left: 0.625rem;
  border-left: 3px solid #FF4949;
}

.bet22-pt-secure__article p {
  font-size: 0.95rem;
  color: rgba(232, 244, 245, 0.82);
  line-height: 1.75;
  margin: 0 0 0.875rem;
  font-weight: 500;
}

.bet22-pt-secure__article p:last-child {
  margin-bottom: 0;
}

.bet22-pt-secure__article p em,
.bet22-pt-secure__list li em,
.bet22-pt-secure__ol li em,
.bet22-pt-secure__aside p em {
  color: #f5c842;
  font-style: italic;
  font-weight: 700;
}

.bet22-pt-secure__article p strong,
.bet22-pt-secure__list li strong,
.bet22-pt-secure__ol li strong,
.bet22-pt-secure__aside p strong {
  color: #ffffff;
  font-weight: 800;
}

/* Lists */
.bet22-pt-secure__list,
.bet22-pt-secure__ol {
  margin: 0.625rem 0 1rem;
  padding: 0;
  list-style: none;
}

.bet22-pt-secure__ol {
  counter-reset: bet22-pt-secure-counter;
}

.bet22-pt-secure__list li {
  position: relative;
  padding: 0.625rem 0.875rem 0.625rem 2.25rem;
  margin: 0 0 0.5rem;
  background: rgba(10, 26, 28, 0.55);
  border-left: 3px solid #195A61;
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: rgba(232, 244, 245, 0.85);
  line-height: 1.7;
  font-weight: 500;
}

.bet22-pt-secure__list li::before {
  content: '›';
  position: absolute;
  left: 0.85rem;
  top: 0.5rem;
  color: #FF4949;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.bet22-pt-secure__ol li {
  counter-increment: bet22-pt-secure-counter;
  position: relative;
  padding: 0.75rem 0.875rem 0.75rem 2.875rem;
  margin: 0 0 0.625rem;
  background: rgba(10, 26, 28, 0.55);
  border: 1px solid rgba(25, 90, 97, 0.3);
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: rgba(232, 244, 245, 0.85);
  line-height: 1.7;
  font-weight: 500;
}

.bet22-pt-secure__ol li::before {
  content: counter(bet22-pt-secure-counter);
  position: absolute;
  left: 0.625rem;
  top: 0.625rem;
  width: 1.625rem;
  height: 1.625rem;
  background: linear-gradient(135deg, #FF4949 0%, #d42f2f 100%);
  color: #ffffff;
  border-radius: 50%;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 73, 73, 0.4);
}

/* Aside */
.bet22-pt-secure__aside {
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.12) 0%, rgba(25, 90, 97, 0.18) 100%);
  border: 1px solid rgba(245, 200, 66, 0.4);
  border-left: 4px solid #f5c842;
  border-radius: 0.625rem;
  padding: 1rem 1.125rem;
  margin: 1rem 0 0;
}

.bet22-pt-secure__aside p {
  font-size: 0.92rem;
  color: rgba(232, 244, 245, 0.92);
  margin: 0;
  line-height: 1.7;
}

/* CTA */
.bet22-pt-secure__cta {
  background: linear-gradient(135deg, #044146 0%, rgba(255, 73, 73, 0.18) 50%, #044146 100%);
  border: 1px solid rgba(255, 73, 73, 0.35);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem;
  margin: 1.5rem 0 0;
  text-align: center;
  box-shadow: 0 4px 18px rgba(255, 73, 73, 0.15);
}

.bet22-pt-secure__cta p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

/* ════════════════════════════════
   TABLET (≥40em / 640px)
════════════════════════════════ */
@media (min-width: 40em) {
  .bet22-pt-secure {
    padding: 4rem 0;
  }

  .bet22-pt-secure__title {
    font-size: 2.4rem;
    margin-bottom: 1.75rem;
  }

  .bet22-pt-secure__lead {
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.25rem;
  }

  .bet22-pt-secure__lead p {
    font-size: 1.05rem;
  }

  .bet22-pt-secure__article {
    padding: 1.875rem 1.75rem;
    margin-bottom: 1.75rem;
  }

  .bet22-pt-secure__h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .bet22-pt-secure__h4 {
    font-size: 1.12rem;
    padding-left: 0.75rem;
  }

  .bet22-pt-secure__article p {
    font-size: 0.97rem;
  }

  .bet22-pt-secure__list li {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.95rem;
  }

  .bet22-pt-secure__ol li {
    padding: 0.875rem 1.125rem 0.875rem 3.125rem;
    font-size: 0.95rem;
  }

  .bet22-pt-secure__ol li::before {
    left: 0.75rem;
    top: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
  }

  .bet22-pt-secure__cta {
    padding: 1.75rem 2rem;
    margin-top: 2rem;
  }

  .bet22-pt-secure__cta p {
    font-size: 1.02rem;
  }
}

/* ════════════════════════════════
   DESKTOP (≥60em / 960px)
════════════════════════════════ */
@media (min-width: 60em) {
  .bet22-pt-secure {
    padding: 4.5rem 0;
  }

  .bet22-pt-secure__title {
    font-size: 2.85rem;
    margin-bottom: 2rem;
  }

  .bet22-pt-secure__lead {
    padding: 1.75rem 2rem;
    margin-bottom: 2.75rem;
  }

  .bet22-pt-secure__article {
    padding: 2.25rem 2.25rem;
    margin-bottom: 2rem;
  }

  .bet22-pt-secure__h3 {
    font-size: 1.95rem;
  }

  .bet22-pt-secure__h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
  }

  .bet22-pt-secure__article p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .bet22-pt-secure__cta {
    padding: 2rem 2.5rem;
  }

  .bet22-pt-secure__cta p {
    font-size: 1.05rem;
  }
}

/* ════════════════════════════════
   LARGE DESKTOP (≥75em / 1200px)
════════════════════════════════ */
@media (min-width: 75em) {
  .bet22-pt-secure__container {
    padding: 0 1.5rem;
  }

  .bet22-pt-secure__title {
    font-size: 3rem;
  }

  .bet22-pt-secure__article {
    padding: 2.5rem 2.5rem;
  }
}