/* ============================================
   instago — style.css v2
   Full-width · Instagram gradient hero
   ============================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Instagram gradient stops */
  --ig-yellow:  #ffd521;
  --ig-orange:  #ff7a00;
  --ig-red:     #ff0069;
  --ig-purple:  #d300c5;
  --ig-blue:    #7638fa;

  /* Hero gradient (esquerda=azul/roxo, direita=laranja — como SSS) */
  --hero-gradient: linear-gradient(135deg,
    #405de6 0%, #5851db 15%, #833ab4 30%,
    #c13584 50%, #e1306c 70%, #fd1d1d 85%, #f77737 100%
  );

  /* Botão de download: sólido para contrastar no hero roxo */
  --btn-dl-bg:   #ffffff;
  --btn-dl-text: #c13584;

  /* Seções de conteúdo */
  --bg-white:   #ffffff;
  --bg-subtle:  #f7f8fc;
  --border:     #e5e7eb;
  --text-main:  #111827;
  --text-body:  #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --accent: #c13584;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 20px rgba(0,0,0,.07);
  --shadow-btn:  0 8px 24px rgba(193,53,132,.35);

  --font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1160px;
  --section-pad: 80px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.3);
  position: sticky;
  top: 0;
  z-index: 200;
  height: 58px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.header-nav {
  display: flex;
  gap: 6px;
  flex: 1;
}

.nav-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.15s;
}

.nav-pill:hover { background: var(--bg-subtle); color: var(--text-main); }
.nav-pill.active {
  background: rgba(193,53,132,.08);
  color: var(--accent);
  border-color: rgba(193,53,132,.2);
}

.lang-wrap select {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  background: var(--bg-white);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* ── HERO ── */
.hero {
  background: var(--hero-gradient);
  padding: 72px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Textura sutil de pontos brancos */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Hero copy ── */
.hero-copy { max-width: 660px; }

.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 16px;
  animation: fadeUp .5s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  line-height: 1.55;
  animation: fadeUp .5s .08s ease both;
}

/* Input block */
.input-block {
  animation: fadeUp .5s .15s ease both;
}

.input-row {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  max-width: 680px;
}

.url-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0 20px;
  min-width: 0;
  height: 58px;
}

.url-input::placeholder { color: var(--text-light); font-weight: 400; }

.btn-paste {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: none;
  border-left: 1px solid var(--border);
  padding: 0 16px;
  cursor: pointer;
  height: 58px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}

.btn-paste:hover { background: var(--border); color: var(--text-main); }
.btn-paste:active { transform: scale(0.97); }

.btn-download {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--btn-dl-text);
  background: var(--btn-dl-bg);
  border: none;
  border-left: 1px solid rgba(193,53,132,.15);
  padding: 0 28px;
  cursor: pointer;
  height: 58px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: background .15s, color .15s, transform .1s;
}

.btn-download:hover {
  background: var(--accent);
  color: #fff;
}
.btn-download:active { transform: scale(0.97); }
.btn-download:disabled { opacity: .65; cursor: not-allowed; }

/* Erro */
.error-msg {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffe082;
  min-height: 18px;
}

/* Progress bar sutil */
.proc-bar-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 680px;
}

.proc-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 99px;
  overflow: hidden;
}

.proc-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 99px;
  transition: width .1s linear;
}

.proc-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

/* Pills de features */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 28px;
  animation: fadeUp .5s .22s ease both;
}

.hero-pills li {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
}

/* ── IG Icon (coluna direita do hero) ── */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIn .7s .2s ease both;
}

.ig-icon-wrap {
  position: relative;
  width: 220px;
  height: 220px;
}

.ig-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 28px;
  background: rgba(0,0,0,.3);
  filter: blur(18px);
  border-radius: 50%;
}

.ig-icon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
  animation: float 4s ease-in-out infinite;
}

/* ── Content Body ── */
.content-body {}

.content-section { padding: var(--section-pad); }
.content-section.alt-bg { background: var(--bg-subtle); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-title.centered { text-align: center; }

.section-intro {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.text-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.text-col p {
  color: var(--text-body);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* Steps numerados */
.numbered-steps {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.numbered-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hero-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(193,53,132,.3);
}

.numbered-steps li div strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.numbered-steps li div p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
}

/* Feature cards */
.visual-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.feature-card.gradient-card {
  background: var(--hero-gradient);
  border: none;
  color: #fff;
}

.feature-card.gradient-card h3,
.feature-card.gradient-card p { color: #fff; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card-icon.secondary {
  background: var(--hero-gradient);
}

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

.benefit-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(193,53,132,.1), rgba(118,56,250,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-inner { max-width: 760px; }

.faq-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}

details:hover { box-shadow: var(--shadow-card); }
details:last-child { margin-bottom: 0; }

summary {
  padding: 18px 22px;
  font-weight: 800;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text-main);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}

details[open] summary::after { content: '−'; }

details p {
  padding: 0 22px 18px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Footer ── */
.site-footer {
  background: var(--text-main);
  color: rgba(255,255,255,.7);
  padding: 36px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}

.footer-nav a:hover { color: #fff; }
.footer-nav span { opacity: .3; font-size: 0.8rem; }

.footer-copy { font-size: 0.8rem; }
.footer-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,.4); }

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
  from { opacity: 0; transform: scale(.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .visual-col { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 16px 56px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .btn-download { padding: 0 18px; }
  .content-section { padding: 52px 16px; }
  .input-row { flex-wrap: wrap; border-radius: var(--radius-md); }
  .url-input { height: 52px; width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; border-bottom: 1px solid var(--border); }
  .btn-paste, .btn-download { height: 48px; flex: 1; justify-content: center; border-radius: 0; }
  .btn-paste { border-left: none; border-top: 1px solid var(--border); }
  .btn-download { border-radius: 0 0 var(--radius-md) var(--radius-md); }
}

/* ════════════════════════════════════════
   HAMBURGER MENU (mobile)
   ════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .15s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg-subtle); }
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  z-index: 199;
  padding: 16px 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-nav a:hover { background: var(--bg-subtle); }
.mobile-nav a.active {
  background: rgba(193,53,132,.08);
  color: var(--accent);
}
.mobile-nav a .mnav-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--hero-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mobile-nav-divider {
  height: 1px; background: var(--border); margin: 8px 0;
}
.mobile-nav-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-light);
  padding: 4px 16px 0;
}

@media (max-width: 700px) {
  .header-nav { display: none !important; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════════
   FOOTER TOOLS LINKS (SEO para Googlebot)
   ════════════════════════════════════════ */
.footer-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto 28px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left;
}
.footer-tool-col h4 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
}
.footer-tool-col a {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s;
}
.footer-tool-col a:hover { color: #fff; }

@media (max-width: 700px) {
  .footer-tools-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
}
@media (max-width: 400px) {
  .footer-tools-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111827;
  border-top: 3px solid transparent;
  border-image: linear-gradient(135deg,#405de6,#833ab4,#c13584,#f77737) 1;
  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,.3);
  transform: translateY(0);
  transition: transform .4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p {
  font-family: var(--font);
  font-size: .87rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
#cookie-banner p a {
  color: #c13584;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  font-family: var(--font);
  font-size: .87rem;
  font-weight: 800;
  color: #fff;
  background: var(--hero-gradient);
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}
.btn-cookie-accept:hover { opacity: .9; transform: translateY(-1px); }
.btn-cookie-decline {
  font-family: var(--font);
  font-size: .87rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

@media (max-width: 600px) {
  #cookie-banner { padding: 14px 16px; }
  #cookie-banner p { font-size: .82rem; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ════════════════════════════════════════
   SPIDER WEB — Internal Linking Grid
   ════════════════════════════════════════ */
.spider-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.spider-inner { max-width: var(--max-w); margin: 0 auto; }
.spider-inner h2 {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 12px; margin-top: 24px;
}
.spider-inner h2:first-child { margin-top: 0; }
.spider-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px;
}
.spider-grid a {
  display: inline-block;
  font-size: .82rem; font-weight: 600; color: var(--text-body);
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  text-decoration: none; transition: border-color .15s, color .15s;
}
.spider-grid a:hover { border-color: #c13584; color: #c13584; }

/* ════════════════════════════════════════
   LANGUAGE SWITCHER (footer + banner)
   ════════════════════════════════════════ */
.footer-lang {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
}
.footer-lang span { color: rgba(255,255,255,.4); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.footer-lang a {
  color: rgba(255,255,255,.7); text-decoration: none;
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  transition: background .15s, color .15s;
}
.footer-lang a:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-lang a.active-lang {
  background: rgba(255,255,255,.15); color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Language suggestion banner */
#lang-banner {
  position: fixed; top: 58px; left: 0; right: 0; z-index: 198;
  background: linear-gradient(135deg,#405de6,#833ab4,#c13584);
  color: #fff; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
  font-family: var(--font); font-size: .87rem;
}
#lang-banner p { margin: 0; font-weight: 600; }
#lang-banner .lbtn {
  background: #fff; color: #c13584; font-weight: 900;
  padding: 7px 16px; border-radius: 100px;
  text-decoration: none; font-size: .82rem; flex-shrink: 0;
}
#lang-banner .lclose {
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: .85rem; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
}
