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

:root {
  --navy: #0d1f3c;
  --navy-light: #162d54;
  --gold: #c8a44a;
  --gold-light: #e0bc6a;
  --white: #ffffff;
  --gray-light: #f5f7fa;
  --gray: #e2e8f0;
  --text: #2d3748;
  --text-light: #718096;
  --whatsapp: #25d366;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,31,60,.12);
  --shadow-lg: 0 8px 40px rgba(13,31,60,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
}

.badge {
  display: inline-block;
  background: rgba(200,164,74,.15);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1db954; transform: translateY(-1px); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,31,60,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,164,74,.2);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.logo-text span { font-size: .72rem; color: var(--gold); letter-spacing: .05em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
}
nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a6b 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,164,74,.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,164,74,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,74,.15);
  border: 1px solid rgba(200,164,74,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat span { font-size: .82rem; color: rgba(255,255,255,.6); }

.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,164,74,.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  transition: all .2s;
}

.service-item:hover { background: rgba(200,164,74,.12); border-color: rgba(200,164,74,.3); }

.service-icon {
  width: 36px; height: 36px;
  background: rgba(200,164,74,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
#trust {
  background: var(--gold);
  padding: 20px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
}

.trust-item svg { width: 20px; height: 20px; }

/* ===== AREAS ===== */
#areas {
  padding: 96px 0;
  background: var(--gray-light);
}

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

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}

.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card:hover::before { transform: scaleX(1); }

.area-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.area-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.area-card p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* ===== SOBRE ===== */
#sobre {
  padding: 96px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sobre-avatar {
  font-size: 8rem;
  opacity: .3;
}

.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.sobre-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.sobre-badge span { font-size: .75rem; font-weight: 600; }

.sobre-content .section-subtitle { margin-bottom: 28px; }

.credentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-light);
  border-radius: 10px;
}

.credential-icon { font-size: 1.2rem; }
.credential-item p { font-size: .88rem; color: var(--text-light); margin: 0; }
.credential-item strong { display: block; font-size: .92rem; color: var(--navy); }

/* ===== ARTIGOS ===== */
#artigos {
  padding: 96px 0;
  background: var(--gray-light);
}

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

.artigo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.artigo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.artigo-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.artigo-categoria {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.artigo-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.artigo-body h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.artigo-body p { font-size: .85rem; color: var(--text-light); margin-bottom: 20px; flex: 1; }

.artigo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  transition: gap .2s;
}
.artigo-link:hover { gap: 10px; }

/* ===== WHATSAPP SECTION ===== */
#whatsapp-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#whatsapp-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,164,74,.1) 0%, transparent 70%);
}

.wa-icon {
  width: 80px; height: 80px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 16px rgba(37,211,102,.15);
  animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 16px rgba(37,211,102,.15); }
  50% { box-shadow: 0 0 0 28px rgba(37,211,102,.05); }
}

#whatsapp-section .section-title { color: var(--white); margin: 0 auto 12px; }
#whatsapp-section .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto 36px; max-width: 500px; }

.wa-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.wa-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}

/* ===== FOOTER ===== */
footer {
  background: #060f1e;
  color: rgba(255,255,255,.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p { font-size: .88rem; margin-top: 16px; max-width: 320px; line-height: 1.7; }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-oab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,74,.1);
  border: 1px solid rgba(200,164,74,.2);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .3s;
  animation: fab-enter .5s ease .5s both;
}

@keyframes fab-enter {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-fab:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

.wa-fab-icon { font-size: 1.3rem; }

.wa-fab-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wa-fab:hover .wa-fab-tooltip { opacity: 1; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}

.article-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 760px;
  margin-bottom: 16px;
}

.article-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 660px;
  line-height: 1.7;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray);
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.article-body p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }

.article-body ul, .article-body ol {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--text); line-height: 1.7; }

.article-body .tip-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.tip-box h4 { color: var(--gold); margin-bottom: 8px; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.tip-box p { color: rgba(255,255,255,.85); margin: 0; }

.article-cta {
  background: var(--gray-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.article-cta h3 { color: var(--navy); margin-bottom: 8px; }
.article-cta p { color: var(--text-light); margin-bottom: 20px; font-size: .9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid, .sobre-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .areas-grid, .artigos-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { display: none; }
  nav a:not(.nav-cta) { display: none; }
  .menu-toggle { display: flex; }
  .sobre-img { aspect-ratio: 4/3; }
  .sobre-badge { bottom: -16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .areas-grid, .artigos-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-fab span:not(.wa-fab-icon) { display: none; }
  .wa-fab { padding: 16px; border-radius: 50%; }
}

/* ===== NAV MOBILE ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 16px;
  border-bottom: 1px solid rgba(200,164,74,.2);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.nav-mobile.open { display: flex; }
.nav-mobile a { color: rgba(255,255,255,.8); padding: 12px 16px; border-radius: 8px; font-size: .92rem; }
.nav-mobile a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-mobile .nav-cta { background: var(--gold); color: var(--navy); font-weight: 700; margin-top: 8px; text-align: center; }

/* ===== QUIZ CTA BANNER ===== */
#quiz-banner {
  padding: 72px 0;
  background: var(--white);
}

.quiz-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.quiz-banner-content .badge { margin-bottom: 16px; }

.quiz-banner-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.quiz-banner-content p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: .95rem;
  line-height: 1.7;
}

.quiz-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  border-radius: 10px;
  padding: 14px 18px;
}

.quiz-step-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

.quiz-step p { margin: 0; font-size: .88rem; color: var(--text); }
.quiz-step strong { display: block; color: var(--navy); font-size: .9rem; }

/* ===== FAQ ===== */
#faq {
  padding: 96px 0;
  background: var(--gray-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.4;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: all .3s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-answer p { font-size: .88rem; color: var(--text-light); line-height: 1.75; margin: 0 0 12px; }
.faq-answer a { color: var(--gold); font-weight: 600; }

/* ===== EXIT INTENT POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.popup-overlay.visible .popup-box { transform: translateY(0); }

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.3rem; color: var(--text-light);
  cursor: pointer; line-height: 1;
}
.popup-close:hover { color: var(--navy); }

.popup-emoji { font-size: 3rem; margin-bottom: 16px; }
.popup-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.popup-box p  { font-size: .9rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }

.popup-actions { display: flex; flex-direction: column; gap: 10px; }
.popup-skip { background: none; border: none; color: var(--text-light); font-size: .82rem; cursor: pointer; font-family: inherit; text-decoration: underline; margin-top: 4px; }

/* ===== RESPONSIVE NEW SECTIONS ===== */
@media (max-width: 900px) {
  .quiz-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .popup-box { padding: 28px 20px; }
}
