@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;0,800;0,900;1,800;1,900&display=swap);

/* =========================================================
   FASTBINGO — CSS COMPLETO (mesma estrutura do seu CSS)
   - Cores puxadas da LOGO (azul principal + navy)
   - Brilho animado (shine/flash) em botões, cards, títulos e banner
   - Ajustes responsivos (logo/nav/banner/imagens sem “encolher” errado)
========================================================= */

/* =========================================================
   VARS / TOKENS
========================================================= */
:root {
  /* Paleta baseada na logo */
  --color-primary: #3E84BC;     /* azul principal */
  --color-primary-2: #1F4169;   /* azul mais escuro */
  --color-secondary: #73C3FF;   /* azul claro (brilho) */
  --color-secondary-2: #B4BDC2; /* cinza claro */

  --color-tertiary: #050C21;    /* navy da logo */
  --color-tertiary-2: #0B2144;  /* variação navy */

  --color-light: #ffffff;
  --color-dark: #1d2430;
  --color-black: #000000;

  /* FX */
  --shadow-soft: 0 10px 26px rgba(0,0,0,.22);
  --shadow: 0 16px 44px rgba(0,0,0,.30);
  --glow: 0 0 18px rgba(62,132,188,.45);
  --glow-strong: 0 0 34px rgba(62,132,188,.55);

  --radius: 18px;
  --radius-sm: 12px;

  --speed: 1; /* reduzido via prefers-reduced-motion */
}

:root {
  --swiper-theme-color: var(--color-light) !important;
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  :root { --speed: 0; }
}

/* =========================================================
   KEYFRAMES (brilho/flash)
========================================================= */
@keyframes shineSweep {
  0%   { transform: translateX(-160%) skewX(-18deg); opacity: 0; }
  12%  { opacity: .85; }
  55%  { opacity: .55; }
  100% { transform: translateX(160%) skewX(-18deg); opacity: 0; }
}

@keyframes glowPulse {
  0%,100% { filter: drop-shadow(0 0 0 rgba(62,132,188,0)); }
  50%     { filter: drop-shadow(0 0 16px rgba(62,132,188,.35)); }
}

@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes floating {
  from { transform: translate(0, 0); }
  65%  { transform: translate(0, 40px); }
  to   { transform: translate(0, 0); }
}

@keyframes sizing {
  from { transform: translateY(240px) scale(.98); }
  65%  { transform: translateY(240px) scale(.7); }
  to   { transform: translateY(240px) scale(.98); }
}

/* =========================================================
   BASE
========================================================= */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;

  /* fundo com cara da logo */
  background:
    radial-gradient(900px 520px at 12% -5%, rgba(62,132,188,.22) 0%, rgba(62,132,188,0) 62%),
    radial-gradient(900px 520px at 88% 6%, rgba(31,65,105,.18) 0%, rgba(31,65,105,0) 65%),
    linear-gradient(180deg, #060A18 0%, #08102A 42%, #060A18 100%);

  color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* textura leve */
body:before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* =========================================================
   LINKS / TIPOGRAFIA
========================================================= */
#projects .menu li a {
  position: relative;
  color: var(--color-dark);
}

a {
  text-decoration: none;
  color: var(--color-secondary);
}

.-white { color: var(--color-light); }

h1 {
  font-weight: 900;
  font-size: 54px;
  line-height: 110%;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--color-light);
}

h2 {
  padding: 0;
  margin: auto;
  font-weight: 900;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--color-light);
  max-width: 70%;
  text-align: center;
  position: relative;
}

/* brilho “passando” no título ao hover da seção */
section:hover h2::after{
  animation: shineSweep calc(1.55s * (1 + (1 - var(--speed)))) ease-in-out;
}
h2::after{
  content:"";
  position:absolute;
  top:-22%;
  left:-50%;
  width: 40%;
  height: 150%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.10) 40%,
    rgba(255,255,255,.26) 50%,
    rgba(255,255,255,.10) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg) translateX(-160%);
  opacity: 0;
  pointer-events:none;
}

@media only screen and (max-width:768px) {
  h2 { max-width: 100%; }
}

h3 {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -.02em;
  color: var(--color-light);
}

h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.86);
}

h5 {
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.video-title {
  font-style: normal;
  font-weight: 800;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.92);
}

.font-white { color: var(--color-light); }
.font-black { color: var(--color-dark); }

.medium { font-weight: 400; }
.semibold { font-weight: 600; }

.upper {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.78);
}

ul { padding: 0; }
li { list-style: none; }

.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

.-mobile { display: none; }
.-hide-mobile { display: block; }
.-show { display: block !important; }

/* =========================================================
   CONTAINER
========================================================= */
.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 80px;
}

/* =========================================================
   NAV (mesma estrutura + glow + responsivo logo)
========================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 450ms;
  padding: 0 80px;

  /* novo */
  background: rgba(5,12,33,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62,132,188,.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}

.menu-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1750px;
  margin: 24px auto;
  transition: all 450ms;
}

.menu-wrapper .logo {
  height: 50px;
  display: flex;
  align-items: center;
}

/* ajuste: não “encolher” imagem — e não depender de margin-top negativo */
.menu-wrapper .logo img{
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-top: 0;
  filter: drop-shadow(0 0 14px rgba(62,132,188,.22));
  animation: glowPulse calc(2.8s * (1 + (1 - var(--speed)))) ease-in-out infinite;
}

nav.scrolled {
  background-color: rgba(5,12,33,.92);
  transition: all 450ms;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .22);
}

nav.scrolled .menu-wrapper {
  margin: 15px auto;
  transition: all 450ms;
}

nav.scrolled .menu-wrapper .logo img{
  margin-top: 0;
  height: 52px; /* em vez de 70 + margin-left */
  margin-left: 0;
}

nav.scrolled svg path,
nav.scrolled svg rect {
  fill: var(--color-light);
}

nav.scrolled li a {
  color: var(--color-light);
}

.menu {
  display: flex;
  align-items: center;
}

.menu li {
  margin: 0 0 0 30px;
  list-style: none;
}

.menu li a {
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  padding: 10px 10px;
  border-radius: 10px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.menu li a:hover{
  background: rgba(62,132,188,.14);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

/* =========================================================
   BOTÕES (shine/flash)
========================================================= */
.button {
  padding: 12px 24px;
  border-radius: 10px;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--color-light);
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, background .16s ease;
}

/* brilho passando */
.button:after{
  content:"";
  position:absolute;
  inset:-40% -70%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.06) 40%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.06) 60%, 
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
  pointer-events:none;
}

.button:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: saturate(1.06);
}

.button:hover:after{
  animation: shineSweep calc(1.25s * (1 + (1 - var(--speed)))) ease-in-out;
}

.button.big {
  padding: 24px 32px;
  font-size: 16px;
}

section .button { margin: 50px auto; }

.button.black {
  background: rgba(255,255,255,.10);
  display: flex;
  width: fit-content;
  gap: 10px;
  padding: 20px;
  margin: auto;
  border: 1px solid rgba(115,195,255,.22);
  border-radius: 14px;
}

.button.black:hover {
  background: rgba(62,132,188,.18);
  color: var(--color-light);
  box-shadow: var(--glow-strong);
}

.call-to-action{
  display: flex;
  justify-self: center;
  gap: 20px;
}

/* =========================================================
   SEÇÃO SOBRE
========================================================= */
#sobre .container {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
}

#sobre h2 { color: var(--color-light); }

/* “tag” do strong com neon */
#sobre h2 strong{
  color: white;
  padding: 10px 14px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}
#sobre h2 strong:after{
  content:"";
  position:absolute;
  inset:-40% -70%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.06) 40%,
    rgba(255,255,255,.26) 50%,
    rgba(255,255,255,.06) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
}
#sobre:hover h2 strong:after{
  animation: shineSweep calc(1.35s * (1 + (1 - var(--speed)))) ease-in-out;
}

/* =========================================================
   PRÊMIOS (mantém estrutura + cards com glow + responsivo img)
========================================================= */
#premios {
  padding-top: 160px;
  padding-bottom: 200px;

  /* novo fundo */
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(115,195,255,.18) 0%, rgba(115,195,255,0) 70%),
    radial-gradient(900px 520px at 80% 20%, rgba(62,132,188,.18) 0%, rgba(62,132,188,0) 70%),
    linear-gradient(to bottom, rgba(5,12,33,.88) 0%, rgba(5,12,33,.98) 100%);

  border-radius: 0 0 400px 400px;
  text-align: center;
  border-bottom: 1px solid rgba(62,132,188,.18);
}

#premios p,
#premios h2,
#premios strong{
  color: white;
}

#premios h4 {
  margin: 32px auto;
  max-width: 800px;
}

#premios h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -.02em;
}

#premios .three-columns {
  margin-top: 80px;
  margin-bottom: 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px 48px;
  grid-template-areas: ". . ." ". . .";
}

#premios .three-columns .columns {
  padding: 48px 40px 40px;
  border-radius: 30px;

  /* novo card */
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(115,195,255,.28);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* brilho no card */
#premios .three-columns .columns:after{
  content:"";
  position:absolute;
  inset:-45% -80%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.05) 40%,
    rgba(255,255,255,.20) 50%,
    rgba(255,255,255,.05) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
  pointer-events:none;
}

#premios .three-columns .columns:hover{
  transform: translateY(-4px);
  border-color: rgba(115,195,255,.48);
  box-shadow: var(--shadow);
}
#premios .three-columns .columns:hover:after{
  animation: shineSweep calc(1.55s * (1 + (1 - var(--speed)))) ease-in-out;
}

#premios .three-columns .columns .upper {
  margin: 10px 0;
  color: rgba(255,255,255,.80);
}

#premios .three-columns .columns h5 {
  margin: 0 0 20px;
  font-size: 36px;
  color: #9AD8FF;
  text-shadow: 0 0 16px rgba(62,132,188,.18);
}

#premios .three-columns .columns p {
  margin: 0 0 40px;
  color: rgba(255,255,255,.78);
  min-height: 50px;
}

/* evita imagem “pequena”: sempre ocupar área e manter proporção */
#premios .three-columns .columns img {
  width: 100%;
  height: auto;
  max-width: 420px;
  margin: 0 auto;
  object-fit: contain;
  display:block;
}

#premios .align {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#premios .align img {
  width: 460px;
  margin-bottom: -240px;
  max-width: 92vw;
  height: auto;
}

#premios .align img.trophy {
  animation-name: floating;
  animation-duration: calc(3s * (1 + (1 - var(--speed))));
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  filter: drop-shadow(0 0 18px rgba(62,132,188,.22));
}

#premios .align img.shadow {
  transform: translateY(200px);
  animation-name: sizing;
  animation-duration: calc(3s * (1 + (1 - var(--speed))));
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: .55;
}

#premios h3 { margin: 32px 0; }

/* =========================================================
   COMO JOGAR
========================================================= */
#como-doar { margin-top: 340px; }

#como-doar .two-columns {
  margin-top: 80px;
  margin-bottom: 120px;
  width: 100%;
  display: flex;
  gap: 20px;
}

#como-doar .two-columns .column {
  padding: 0;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;

  /* novo */
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

/* brilho passando no bloco */
#como-doar .two-columns .column:after{
  content:"";
  position:absolute;
  inset:-45% -80%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.05) 40%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.05) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
  pointer-events:none;
}
#como-doar .two-columns .column:hover:after{
  animation: shineSweep calc(1.55s * (1 + (1 - var(--speed)))) ease-in-out;
}

#como-doar .two-columns figure,
#como-doar .two-columns div{
  width: 45%;
}

#como-doar .two-columns .column h3,
#como-doar .two-columns .column p{
  text-align: left;
}

#como-doar .two-columns img {
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}

/* responsivo mantendo sua estrutura */
@media only screen and (max-width:920px) {
  #como-doar .two-columns .column { flex-wrap: wrap; }
  #como-doar .two-columns figure,
  #como-doar .two-columns div{ width: 100%; }
  #como-doar .two-columns .column h3,
  #como-doar .two-columns .column p{ text-align: center; }
}

/* borda neon no placeholder/vídeo */
#como-doar .two-columns video,
#como-doar .two-columns img {
  background:
    linear-gradient(90deg, rgba(115,195,255,.18) 0%, rgba(62,132,188,.18) 100%) padding-box,
    linear-gradient(90deg, rgba(115,195,255,.26) 0%, rgba(62,132,188,.26) 100%) border-box;
  border-radius: 30px;
  border: 8px solid transparent;
  box-sizing: border-box;
}

#como-doar .video-title {
  margin: 32px 0 8px;
  padding: 0 24px;
}

#como-doar p {
  padding: 0;
  margin: 15px auto;
}

/* =========================================================
   COMO RESGATAR
========================================================= */
#como-resgatar { margin-top: 140px; }

#como-resgatar .top-content h2{
  color: white;
  display: flex;
  text-align: left;
  font-size: 30px;
  margin: 30px 0;
}

#como-resgatar span{
  display: block;
  background: rgba(115,195,255,.22);
  width: fit-content;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(115,195,255,.30);
  box-shadow: var(--glow);
}

#como-resgatar img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  display:block;
}

#como-resgatar h4 {
  max-width: 720px;
  text-align: center;
  margin: 40px auto;
}

#como-resgatar .upper-column {
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #9AD8FF;
}

#como-resgatar .two-columns {
  margin-top: 100px;
  margin-bottom: 120px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 24px 64px;
  grid-template-areas: ". . ." ". . .";
}

#como-resgatar .two-columns .column {
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  padding: 56px 48px;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

/* brilho passando nos dois cards */
#como-resgatar .two-columns .column:after{
  content:"";
  position:absolute;
  inset:-45% -80%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.05) 40%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.05) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity: 0;
  pointer-events:none;
}
#como-resgatar .two-columns .column:hover:after{
  animation: shineSweep calc(1.6s * (1 + (1 - var(--speed)))) ease-in-out;
}

#como-resgatar .two-columns .column h5 {
  margin: 20px 0;
  max-width: 380px;
  color: #9AD8FF;
}

#como-resgatar .two-columns .column video {
  margin-top: 20px;
}

#como-resgatar .two-columns .column p {
  text-align: left;
  color: rgba(255,255,255,.80);
}

#como-resgatar p a {
  color: var(--color-light);
  font-weight: 600;
  text-decoration: underline;
}

#como-resgatar .two-columns .column:first-child {
  background:
    radial-gradient(209.01% 388.29% at 15.35% 14.34%, rgba(62,132,188,.80) 9.66%, rgba(5,12,33,.98) 100%);
  border-color: rgba(115,195,255,.22);
}

#como-resgatar .two-columns .column:last-child {
  background:
    linear-gradient(96.41deg, rgba(31,65,105,.92) 14.52%, rgba(5,12,33,.98) 101.08%);
  border-color: rgba(62,132,188,.22);
}

#como-resgatar .two-columns .column .top-content { position: relative; }

#como-resgatar .two-columns .column:first-child .top-content:after {
  content: '';
  position: absolute;
  right: 0;
  top: -90px;
  width: 124px;
  height: 124px;
  background-image: url(img/seguro.png);
  background-position: center;
  background-size: cover;
  display: none;
}

#como-resgatar .two-columns .column:last-child .top-content:after {
  content: '';
  position: absolute;
  right: 0;
  top: -90px;
  width: 124px;
  height: 124px;
  background-image: url(img/dinheiro.png);
  background-position: center;
  background-size: cover;
  display: none;
}

#como-resgatar .two-columns .column:last-child .upper-column {
  color: #73C3FF;
}

#como-resgatar .two-columns .column video { width: 100%; }

/* =========================================================
   FOOTER
========================================================= */
footer {
  padding-top: 50px;
  margin-top: 50px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(62,132,188,.14);
}

footer .container { text-align: center; }

footer h3 {
  margin: 72px 0 40px;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.92);
}

footer h3 span { font-weight: 800; }

footer .signature {
  margin-top: 120px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 40px 0;
  color: var(--color-light);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  background: rgba(5,12,33,.90);
  text-align: center;
  max-width: 100%;
  box-shadow: 0 -18px 48px rgba(0,0,0,.22);
}

footer .signature .copyright{ padding: 10px; }

footer .signature a {
  color: var(--color-light);
  font-weight: 600;
  font-size: 14px;
}

/* =========================================================
   RESPONSIVO (mantém sua estrutura, mas corrige pontos)
========================================================= */
@media only screen and (max-width:1280px) {
  nav { padding: 0 40px; }
  .container { padding: 0 40px; }

  #premios .three-columns { margin-bottom: 60px; }

  #como-doar .two-columns { grid-template-areas: initial; }

  #como-resgatar .two-columns {
    grid-template-areas: inherit;
    gap: 24px 40px;
  }
}

@media only screen and (max-width:968px) {
  nav { padding: 0 20px; }
  .menu-wrapper { margin: 24px auto; }

  .menu li { margin: 0 0 0 16px; }

  #premios .three-columns { gap: 24px 16px; }

  #premios .three-columns .columns { padding: 48px 20px 40px; }

  /* você tinha 500px aqui e quebrava bastante; deixei mais seguro */
  #premios { padding-top: 220px; }

  #como-resgatar .two-columns { margin-top: 80px; gap: 24px; }
  #como-resgatar .two-columns .column { padding: 56px 32px; }

  #sobre .container { padding-top: 100px; }
}

@media only screen and (max-width:992px) {
  h2 { font-size: 34px; }
  h3 { font-size: 20px; }

  h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -.02em;
  }

  h5 { font-size: 24px; }
  .video-title { font-size: 18px; }
  .upper { font-size: 14px; }
  p { font-size: 16px; }

  .container { padding: 0 16px; }

  nav .menu { display: none; }

  #sobre h4 { text-align: left; }

  .video-wrapper {
    width: 100%;
    max-width: 1280px;
    padding: 10px;
    background: linear-gradient(90deg, rgba(62,132,188,.18) 0%, rgba(115,195,255,.22) 100%);
    border-radius: 24px;
    box-sizing: border-box;
    border: 1px solid rgba(115,195,255,.20);
  }

  .video-wrapper img { border-radius: 10px; }

  #premios {
    padding-top: 80px;
  }

  #premios h4 {
    margin: 20px 0;
    padding: 0 20px;
    font-size: 16px;
  }

  #premios .three-columns { margin-top: 40px; }

  #premios .align img {
    width: 320px;
    margin-bottom: -240px;
  }

  #premios .three-columns {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 24px 48px;
    grid-template-areas: initial;
  }

  #premios .three-columns .columns { padding: 32px 20px 40px; }

  #premios h3 {
    font-size: 26px;
    line-height: 120%;
  }

  #como-doar .two-columns { margin-top: 40px; }

  #como-doar .two-columns {
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    grid-template-areas: initial;
  }

  #como-doar .video-title { padding: 0 16px; }

  #como-doar p {
    padding: 0 24px 24px;
    max-width: 480px;
    margin: 15px auto;
  }

  #como-resgatar { margin-top: 0; }

  #como-resgatar h4 {
    font-size: 16px;
    margin: 20px auto 10px;
    text-align: left;
    padding-right: 40px;
  }

  #como-resgatar .two-columns {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: initial;
  }

  #como-resgatar .two-columns .column { padding: 48px 16px 24px; }

  #como-resgatar .two-columns .column:last-child { margin-top: 20px; }

  footer .logo-footer { width: 160px; }

  footer h3 {
    margin: 72px 6px 40px;
    font-size: 24px;
    line-height: 120%;
  }

  footer .signature {
    margin-top: 40px;
    flex-direction: column;
  }

  footer .signature a { margin-top: 20px; }
}

/* =========================================================
   FORMULÁRIO (mantém + ajusta para tema escuro)
========================================================= */
#formulario {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin-top: 200px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(115,195,255,.24);
  margin: 200px 20px 20px;
  place-self: center;
  color: var(--color-light);
}

#formulario h1 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
}

#formulario p.desc {
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-align: left;
  color: rgba(255,255,255,.80);
}

#formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#formulario label {
  font-weight: bold;
  font-size: 0.9rem;
  color: rgba(255,255,255,.86);
}

#formulario input,
#formulario select,
#formulario textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(115,195,255,.28);
  font-size: 1rem;
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 10px;
  height: 60px;
  background: rgba(5,12,33,.55);
  color: #fff;
}

#formulario textarea{
  height: 120px;
  resize: vertical;
}

#formulario input:focus,
#formulario select:focus,
#formulario textarea:focus {
  outline: none;
  border-color: rgba(115,195,255,.55);
  box-shadow: 0 0 0 3px rgba(115,195,255, 0.18);
}

#formulario .botoes {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

#formulario button[type="submit"] {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: var(--color-light);
  height: 50px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow:hidden;
}
#formulario button[type="submit"]:after{
  content:"";
  position:absolute;
  inset:-40% -70%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.06) 40%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.06) 60%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-160%) skewX(-18deg);
  opacity:0;
}
#formulario button[type="submit"]:hover:after{
  animation: shineSweep calc(1.2s * (1 + (1 - var(--speed)))) ease-in-out;
}

#formulario .checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
}

#formulario .checkbox input {
  width: 18px;
  height: 18px;
}

/* =========================================================
   Ajustes extras seus (mantém intenção)
========================================================= */
.three-columns h5 { color: #9AD8FF; }
.three-columns .upper,
.three-columns .font-white{
  color: rgba(255,255,255,.82);
}

/* =========================================================
   MOBILE EXTRA (do seu CSS) + correções logo/nav
========================================================= */
@media only screen and (max-width:600px) {
  .menu-wrapper .logo img{
    margin: 0;
    max-height: 42px;
  }
  nav.scrolled .logo img{
    margin: 0;
    max-height: 42px;
  }
  .call-to-action{
    display: flex;
    flex-wrap: wrap;
  }
  .button.black{
    width: 100%;
    justify-content: center;
  }
  .button {
    font-size: 14px;
  }
}
@media only screen and (max-width:500px) {
 .menu-wrapper .logo img{
    margin: 0;
    max-height: 32px;
  }
  nav.scrolled .logo img{
    margin: 0;
    max-height: 32px;
  }
   .button {
    padding: 12px 12px;
    font-size: 12px;
  }
}
@media only screen and (max-width:400px) {
  .menu-wrapper .logo img{
    margin: 0;
    height: 24px;
  }
  nav.scrolled .logo img{
    margin: 0;
    height: 24px;
  }
  nav .button{
    padding: 12px 12px;
    font-size: 10px;
  }
}

/* =========================================================
   BANNER / OWL (mesma estrutura + glow + dots neon)
========================================================= */
.banner-slider{
  padding: 98px 10px 0;
  box-sizing: border-box;

  /* novo fundo no topo */
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(115,195,255,.20) 0%, rgba(115,195,255,0) 65%),
    linear-gradient(to bottom, rgba(5,12,33,.92) 0%, rgba(5,12,33,.92) 55%, rgba(255,255,255,1) 100%);
  position: relative;
}

/* frame animado em volta do banner */
.banner-slider:before{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  top: 98px;
  bottom: 0;
  border-radius: 20px;
  pointer-events:none;
  padding: 1px;
  background: linear-gradient(90deg,
    rgba(62,132,188,.16),
    rgba(255,255,255,.12),
    rgba(115,195,255,.22),
    rgba(31,65,105,.18),
    rgba(62,132,188,.16)
  );
  background-size: 200% 200%;
  animation: borderFlow calc(4.2s * (1 + (1 - var(--speed)))) linear infinite;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: .95;
}

.banner-slider .owl-item{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.banner-slider .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dots */
.owl-dots {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  bottom: -30px;
  justify-self: center;
  display: flex;
  gap: 10px;
  left: 0;
  right: 0;
  justify-content: center;
}

.owl-dots .owl-dot { display: inline-block; }

.owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(180,189,194,.55);
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Quando ativo vira retângulo neon */
.owl-dots .owl-dot.active span {
  width: 25px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border: none;
  box-shadow: var(--glow);
}

/* =========================================================
   SELEÇÃO / FOCO
========================================================= */
::selection{
  background: rgba(115,195,255,.25);
  color: #fff;
}

:focus-visible{
  outline: 2px solid rgba(115,195,255,.55);
  outline-offset: 3px;
  border-radius: 10px;
}
