/* ==========================================
   PlayZonePT - Global Stylesheet
   Last updated: April 2026
   Dev note: please dont touch the popup section
   its been working fine and last time someone changed it
   it broke the age gate for 3 days -- Joao
   ========================================== */

/* reset - borrowed from somewhere online, works fine */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* base body - dark theme per design brief */
body {
  background: #0d0f14;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 242, 255, 0.04) 0%, transparent 25%),
    radial-gradient(circle at 85% 85%, rgba(112, 0, 255, 0.04) 0%, transparent 25%),
    linear-gradient(60deg, rgba(255, 255, 255, 0.01) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.01) 75.5%),
    linear-gradient(-60deg, rgba(255, 255, 255, 0.01) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.01) 75.5%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 80px 140px, 80px 140px, 40px 40px, 40px 40px;
  color: #d1d5db;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  animation: bgFadeIn 1.5s ease-out;
}

@keyframes bgFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* body when popup is open we lock scroll - dont change this */
body.popup-aktiv {
  overflow: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

/* headings - we have 3 main sizes across the site */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.overlay-escuro-99 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.overlay-escuro-99.hidden {
  display: none;
}

.popup-caixa-alpha {
  background: #161b27;
  border: 1px solid rgba(112, 0, 255, 0.3);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(112, 0, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Floating background geometric shapes */
.geom-shape-1 {
  position: fixed;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(0, 242, 255, 0.05), transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: floatShape 20s infinite linear;
}

.geom-shape-2 {
  position: fixed;
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(-45deg, rgba(112, 0, 255, 0.05), transparent);
  border-radius: 50%;
  z-index: -1;
  animation: floatShape 25s infinite linear reverse;
}

.geom-shape-3 {
  position: fixed;
  top: 40%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transform: rotate(45deg);
  z-index: -1;
  animation: floatShape 15s infinite ease-in-out;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 40px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

/* logo inside the popup */
.popup-logo-wrap {
  margin-bottom: 24px;
}

.popup-logo-wrap img {
  height: 42px;
  width: auto;
}

.popup-ttl {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.popup-desc {
  color: #8892a4;
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* the two main buttons */
.popup-btns-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.btn-sim {
  background: #00f2ff;
  color: #0d0f14;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
}

.btn-sim:hover {
  background: #00d1db;
}

.btn-nao {
  background: transparent;
  color: #8892a4;
  border: 1px solid #2a3045;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  transition: border-color 0.2s, color 0.2s;
}

.btn-nao:hover {
  border-color: #4a5568;
  color: #c0c8d4;
}

/* links at bottom of popup - required by SRIJ */
.popup-links-resp {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.popup-links-resp a {
  color: #5b6b8a;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}

.popup-links-resp a:hover {
  color: #00f2ff;
}

/* ---- popup for under 18 --- */
/* this one shows when they click NO */
.overlay-menor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.overlay-menor.hidden {
  display: none;
}

.popup-menor-box {
  background: #12151f;
  border: 1px solid #8b0000;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.popup-menor-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.popup-menor-ttl {
  font-size: 1.4rem;
  font-weight: 800;
  color: #e53e3e;
  margin-bottom: 12px;
}

.popup-menor-txt {
  color: #8892a4;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ==========================================
   COOKIE BANNER
   We need this per EU/Portuguese law (RGPD)
   ========================================== */

.cookie-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #161b27;
  border-top: 1px solid #2a3045;
  z-index: 8888;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-strip.hidden {
  display: none;
}

.cookie-txt-blk {
  flex: 1;
  min-width: 200px;
}

.cookie-txt-blk p {
  font-size: 0.82rem;
  color: #8892a4;
  line-height: 1.5;
}

.cookie-txt-blk a {
  color: #00f2ff;
  text-decoration: none;
}

.cookie-btns-area {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ck-aceitar {
  background: #00f2ff;
  color: #0d0f14;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.ck-recusar {
  background: transparent;
  color: #8892a4;
  border: 1px solid #2a3045;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #0d0f14;
  border-bottom: 1px solid #1e2435;
  padding: 0 24px;
}

/* inner wrapper */
.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* logo group */
.logo-grupo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img-wrap img {
  height: 36px;
  width: auto;
}

.logo-txt-stack {
  display: flex;
  flex-direction: column;
}

.logo-overline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #00f2ff;
  text-transform: uppercase;
  line-height: 1;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

/* nav links */
.nav-lista {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-lista li a {
  display: block;
  padding: 8px 14px;
  color: #8892a4;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-lista li a:hover {
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.08);
}

/* mobile burger - hidden on desktop */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* mobile menu itself */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0d0f14;
  border-bottom: 1px solid #1e2435;
  z-index: 400;
  padding: 16px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 16px;
  color: #8892a4;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav ul li a:hover {
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.08);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-zona {
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* the background gradient blob thing - looked cool in figma */
.hero-zona::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner-box {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-block;
  background: rgba(0, 242, 255, 0.12);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: #00f2ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-heading {
  margin-bottom: 22px;
}

/* subtitle / description under the h1 */
.hero-subtext {
  color: #8892a4;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* the three badge cards under the description */
.hero-badges-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge-item {
  background: #161b27;
  border: 1px solid #2a3045;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  transition: border-color 0.25s, transform 0.25s;
}

.badge-item:hover {
  border-color: rgba(0, 242, 255, 0.4);
  transform: translateY(-3px);
}

.badge-ico {
  font-size: 1.6rem;
}

.badge-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: #c0c8d4;
  text-align: center;
}

/* ==========================================
   SECÇÃO OFFERS / VITRINA
   This is the main offers showcase
   ========================================== */

.vitrina-secao {
  padding: 64px 24px;
  background: #0a0c11;
}

.vitrina-topo {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.vitrina-topo .secao-rotulo {
  display: inline-block;
  color: #00f2ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vitrina-topo p {
  color: #8892a4;
  font-size: 0.95rem;
  margin-top: 10px;
}

.offers-lista {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* individual offer card */
.offer-card {
  background: #161b27;
  border: 1px solid #2a3045;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}

.offer-card:hover {
  border-color: rgba(0, 242, 255, 0.35);
  transform: translateY(-2px);
}

/* small flag at top of card */
.card-bandeira {
  background: rgba(0, 242, 255, 0.1);
  border-bottom: 1px solid #2a3045;
  padding: 8px 20px;
}

.card-bandeira span {
  color: #00f2ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-corpo {
  padding: 20px;
}

/* top row with brand logo and rating */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.card-logo-area {
  background: #0d0f14;
  border-radius: 10px;
  padding: 14px 22px;
  flex: 0 0 auto;
}

.card-logo-area img {
  height: 28px;
  width: auto;
  display: block;
}

.card-rating-blk {
  text-align: right;
  flex-shrink: 0;
}

.rating-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.stars-row {
  color: #00f2ff;
  font-size: 1rem;
  margin-top: 4px;
}

/* bonus box in the middle */
.card-bonus-blk {
  background: #0d0f14;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 14px;
}

.bonus-label-sm {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5b6b8a;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bonus-valor {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
}

/* CTA button for offer */
.btn-jogar {
  display: block;
  width: 100%;
  background: #00f2ff;
  color: #0d0f14;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.15s;
}

.btn-jogar:hover {
  background: #00d1db;
  transform: scale(1.01);
}

/* disclaimer text under offer - LEGALLY REQUIRED, DO NOT REMOVE */
.card-disclaimer {
  font-size: 0.73rem;
  color: #5b6b8a;
  text-align: center;
  line-height: 1.5;
  padding: 0 4px;
}

/* the big disclaimer strip under the entire offers section */
.offer-general-disc {
  background: #161b27;
  border: 1px solid #1e2435;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 32px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.offer-general-disc p {
  font-size: 0.78rem;
  color: #5b6b8a;
  line-height: 1.6;
}

.offer-general-disc strong {
  color: #8892a4;
}

/* ==========================================
   INFO / METHODOLOGY SECTION
   Depois dos offers - this is the text content
   ========================================== */

.info-secao {
  padding: 72px 24px;
}

.info-inner {
  max-width: 860px;
  margin: 0 auto;
}

.info-heading {
  text-align: center;
  margin-bottom: 48px;
}

.info-heading p {
  color: #8892a4;
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* each block / card in the info section */
.info-blk {
  background: #161b27;
  border: 1px solid #2a3045;
  border-radius: 14px;
  padding: 30px 32px;
  margin-bottom: 20px;
}

.info-blk h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

/* heading that should be orange - responsible gaming section */
.info-blk h3.laranja {
  color: #00f2ff;
}

.info-blk p {
  color: #8892a4;
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.65;
}

/* highlighted links within body text */
.info-blk a {
  color: #00f2ff;
  text-decoration: none;
}

/* lists inside info blocks */
.lista-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.lista-check li {
  color: #8892a4;
  font-size: 0.88rem;
  padding-left: 4px;
}

.lista-check li::before {
  content: '- ';
  color: #00f2ff;
  font-weight: 700;
}

/* bullet style list - red dots variant */
.lista-ponto {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.lista-ponto li {
  color: #8892a4;
  font-size: 0.88rem;
  padding-left: 4px;
}

.lista-ponto li::before {
  content: '• ';
  color: #e53e3e;
  font-weight: 700;
  font-size: 1.1rem;
}

/* recommendation note at bottom of block - italic */
.nota-recomend {
  font-style: italic;
  color: #4a5568 !important;
  font-size: 0.8rem !important;
}

/* ==========================================
   REVIEWS / TESTIMONIALS
   ========================================== */

.reviews-secao {
  padding: 100px 24px;
  background: #080a0f;
  position: relative;
  overflow: hidden;
}

/* Background glow for the whole section */
.reviews-secao::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-topo {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.reviews-topo h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.reviews-topo p {
  color: #8892a4;
  font-size: 1.05rem;
  line-height: 1.6;
}

.reviews-grelha {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: linear-gradient(145deg, #1a202c, #161b27);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 166, 35, 0.05);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  background: #2a3045;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #00f2ff;
  font-size: 1rem;
  border: 1px solid rgba(0, 242, 255, 0.1);
}

.rev-info {
  display: flex;
  flex-direction: column;
}

.rev-nome {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.rev-stars {
  color: #f5a623;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.rev-texto {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.rev-texto::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
}

/* ==========================================
   COOKIES SECTION
   Brief cookies policy inline - not the banner
   ========================================== */

.cookies-secao {
  padding: 60px 24px;
}

.cookies-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cookies-inner h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.cookies-inner p {
  color: #8892a4;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   lots of stuff crammed here - logo, links,
   responsible gaming badge, partners
   ========================================== */

.rodape {
  background: #080a0f;
  border-top: 1px solid #1e2435;
  padding: 56px 24px 32px;
}

.rodape-interior {
  max-width: 1000px;
  margin: 0 auto;
}

/* center block with logo */
.rodape-logo-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.rodape-logo-wrap img {
  height: 40px;
  width: auto;
}

/* footer description paragraph */
.rodape-desc {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
  color: #4a5568;
  font-size: 0.83rem;
  line-height: 1.65;
}

/* responsible gaming block in footer */
.rodape-resp-box {
  background: #0d0f14;
  border: 1px solid #1e2435;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.rodape-resp-box .resp-titulo {
  color: #f5a623;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rodape-resp-box p {
  color: #5b6b8a;
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 12px;
}

/* hotline info inside footer */
.linhas-ajuda {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.linha-item {
  color: #8892a4;
  font-size: 0.8rem;
  font-weight: 600;
}

/* footer nav - link columns */
.rodape-nav-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1e2435;
}

.rodape-nav-row a {
  color: #5b6b8a;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.rodape-nav-row a:hover {
  color: #f5a623;
}

/* social icons */
.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.social-ico {
  width: 38px;
  height: 38px;
  background: #161b27;
  border: 1px solid #2a3045;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b6b8a;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-ico:hover {
  border-color: rgba(245,166,35,0.4);
  color: #f5a623;
}

/* partner logos area in footer - srij, sicad etc */
.parceiros-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.parceiro-item {
  background: #0d0f14;
  border: 1px solid #1e2435;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s;
}

.parceiro-item:hover {
  border-color: rgba(245,166,35,0.3);
}

.parceiro-item img {
  height: 32px;
  width: auto;
  filter: brightness(0.8);
  transition: filter 0.2s;
}

.parceiro-item:hover img {
  filter: brightness(1);
}

/* jogo responsavel text badge - just text version */
.jogo-resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d0f14;
  border: 1px solid #1e2435;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.jogo-resp-badge:hover {
  border-color: green;
}

.jogo-resp-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5b6b8a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* copyright bar at the very bottom */
.copyright-bar {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #1e2435;
}

.copyright-bar p {
  color: #3a4255;
  font-size: 0.78rem;
}

/* ==========================================
   INNER PAGES - shared styles for
   Privacidade, Jogo Responsavel, Cookies, T&C
   ========================================== */

/* hero for subpages - smaller than main */
.page-hero {
  padding: 56px 24px 48px;
  border-bottom: 1px solid #1e2435;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: #8892a4;
  font-size: 0.9rem;
}

/* main content area for inner pages */
.pagina-conteudo {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.pagina-conteudo h2 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
  margin-top: 36px;
  padding-top: 8px;
  border-top: 1px solid #1e2435;
}

/* first h2 shouldnt have border-top */
.pagina-conteudo h2:first-child {
  border-top: none;
  margin-top: 0;
}

.pagina-conteudo p {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.72;
  margin-bottom: 14px;
}

.pagina-conteudo ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.pagina-conteudo ul li {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 6px;
}

.pagina-conteudo a {
  color: #f5a623;
  text-decoration: none;
}

/* ==========================================
   RESPONSIVE - MOBILE
   broke down around 768px based on testing
   ========================================== */

@media (max-width: 768px) {
  /* hide the nav completely on mobile */
  .nav-lista {
    display: none;
  }

  /* show the burger button */
  .burger-btn {
    display: flex;
  }

  /* reviews go to single column on mobile */
  .reviews-grelha {
    grid-template-columns: 1fr;
  }

  /* hero badges stack */
  .hero-badges-row {
    flex-direction: column;
    align-items: center;
  }

  .badge-item {
    width: 100%;
    max-width: 260px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 20px;
  }

  /* popup make narrower */
  .popup-caixa {
    padding: 36px 24px;
  }

  .popup-btns-row {
    flex-direction: column;
  }

  /* cookie banner stacks vertically */
  .cookie-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-btns-area {
    width: 100%;
  }

  .ck-aceitar, .ck-recusar {
    flex: 1;
    text-align: center;
  }

  /* info blocks padding */
  .info-blk {
    padding: 22px 20px;
  }

  /* card top row on mobile - modified to stay in row */
  .card-top-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-logo-area {
    width: auto;
  }
}

@media (max-width: 500px) {
  /* even smaller screens - mostly phones */
  .hero-zona {
    padding: 40px 16px 48px;
  }

  .reviews-grelha {
    grid-template-columns: 1fr;
  }

  /* footer links wrap differently */
  .rodape-nav-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
