:root {
  --ink: #fff7ff;
  --muted: #ebc8ef;
  --line: rgba(216, 64, 227, 0.24);
  --purple: #d840e3;
  --purple-dark: #32024d;
  --purple-deep: #1d012e;
  --purple-soft: #f7d7fa;
  --gold: #ffd75a;
  --panel: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--purple-dark);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(50, 2, 77, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(150px, 18vw, 220px);
  max-height: 86px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 96px);
  padding: clamp(28px, 6vw, 84px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(29, 1, 46, 0.97), rgba(50, 2, 77, 0.82)),
    radial-gradient(circle at 70% 20%, rgba(216, 64, 227, 0.36), transparent 32%),
    var(--purple-dark);
}

.hero-media {
  grid-row: 1;
  width: min(100%, 980px);
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(100%, 980px);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-content {
  grid-row: 2;
  max-width: 860px;
  text-align: center;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(29, 1, 46, 0.98), rgba(50, 2, 77, 0.85)),
    radial-gradient(circle at 78% 28%, rgba(216, 64, 227, 0.34), transparent 34%),
    var(--purple-dark);
}

.about-content {
  max-width: 760px;
}

.about-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.about-content .button {
  margin-top: 14px;
}

.about-logo {
  display: grid;
  place-items: center;
}

.about-logo img {
  width: min(100%, 520px);
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, 0.36));
}

.regulation-hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(32px, 5vw, 56px);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(29, 1, 46, 0.98), rgba(50, 2, 77, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(216, 64, 227, 0.34), transparent 38%),
    var(--purple-dark);
}

.regulation-hero h1 {
  max-width: 980px;
  margin: 0 auto;
}

.regulation-content {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.regulation-content article {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 30px);
  background: white;
  border: 1px solid rgba(50, 2, 77, 0.14);
  border-radius: 8px;
}

.regulation-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.regulation-content p,
.regulation-content li {
  color: #5d3f68;
  font-size: 1rem;
  line-height: 1.75;
}

.regulation-content p {
  margin: 0 0 12px;
}

.regulation-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.winners-hero {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(29, 1, 46, 0.98), rgba(50, 2, 77, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(216, 64, 227, 0.34), transparent 38%),
    var(--purple-dark);
}

.winners-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.winners-section {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.winner-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(50, 2, 77, 0.14);
  border-radius: 8px;
}

.winner-card-featured {
  border-color: rgba(216, 64, 227, 0.42);
  box-shadow: 0 18px 50px rgba(50, 2, 77, 0.16);
}

.winner-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  color: #8f68a0;
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(216, 64, 227, 0.14), rgba(255, 215, 90, 0.16)),
    #f7eef8;
  border-bottom: 1px solid rgba(50, 2, 77, 0.12);
}

.winner-info {
  padding: 18px;
  text-align: center;
}

.winner-date {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  color: var(--purple-dark);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--purple-soft);
  border-radius: 6px;
}

.winner-card h2 {
  color: var(--purple-dark);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
}

.winner-card p {
  margin: 10px 0 0;
  color: #5d3f68;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.winner-details {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  color: #5d3f68;
  font-size: 0.92rem;
  line-height: 1.35;
  list-style: none;
}

.winner-details li {
  padding: 7px 9px;
  background: #f7eef8;
  border-radius: 6px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-copy,
.section-heading p:not(.eyebrow),
.notice p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button-primary {
  min-width: min(100%, 280px);
  min-height: 62px;
  font-size: 1.15rem;
  letter-spacing: 0;
  box-shadow: 0 16px 42px rgba(216, 64, 227, 0.44);
}

.countdown-panel {
  max-width: 660px;
  margin: 28px auto 0;
  padding: 20px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, rgba(50, 2, 77, 0.96), rgba(216, 64, 227, 0.88));
  border: 1px solid rgba(255, 215, 93, 0.42);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(50, 2, 77, 0.28);
}

.countdown-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.15rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 900;
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff7ff;
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(216, 64, 227, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ef6af6;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button-cta {
  width: 100%;
  max-width: 420px;
  min-height: 60px;
  color: #32024d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 38px rgba(255, 215, 93, 0.32);
}

.button-cta:hover,
.button-cta:focus-visible {
  background: #ffe583;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero-stats strong {
  color: var(--gold);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: #42076b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice h2,
.social-section h2 {
  max-width: 840px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.draw-date {
  display: grid;
  gap: 4px;
  min-width: min(100%, 330px);
  padding: 18px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(216, 64, 227, 0.2);
}

.draw-date strong {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.draw-date span {
  color: var(--ink);
  font-weight: 800;
}

.social-section {
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: #42076b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.social-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.social-actions .button {
  min-width: 180px;
}

.post-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  min-height: 100%;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.post-card:hover,
.post-card:focus-visible {
  border-color: rgba(216, 64, 227, 0.7);
  transform: translateY(-2px);
}

.post-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--purple-dark);
  border-radius: 6px;
}

.post-card span {
  display: block;
  min-height: 46px;
  font-weight: 800;
  line-height: 1.35;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: #32024d;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gold);
  border-radius: 6px;
}

.steps-section,
.trust-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.steps-section .section-heading p {
  color: var(--muted);
}

.trust-section .section-heading p {
  color: var(--purple-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.step-card {
  min-height: 310px;
  padding: 28px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-card img {
  width: min(100%, 300px);
  min-height: 92px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.trust-section {
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.trust-section .eyebrow {
  color: #9e16aa;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

details {
  background: white;
  border: 1px solid rgba(50, 2, 77, 0.14);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #5d3f68;
  line-height: 1.7;
}

.faq-example {
  padding: 0 22px 22px;
  color: #5d3f68;
  line-height: 1.7;
}

.faq-example p {
  padding: 0;
}

.number-example {
  max-width: 420px;
  margin: 14px 0;
  width: 100%;
  border-spacing: 0;
  background: #f7eef8;
  border: 1px solid rgba(50, 2, 77, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.number-example th,
.number-example td {
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: left;
  line-height: 1.25;
  border-bottom: 1px solid rgba(50, 2, 77, 0.1);
}

.number-example td {
  text-align: right;
}

.number-example strong {
  color: #2564dc;
}

.number-result {
  background: rgba(216, 64, 227, 0.1);
}

.number-result th,
.number-result td {
  border-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 28px;
  background: var(--purple-deep);
}

.footer-logo {
  width: 190px;
  max-height: 124px;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-contact h2 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-contact img {
  width: 28px;
}

.footer-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--purple);
  font-weight: 900;
}

.footer-regulatory {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  align-items: start;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.footer-seals {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  align-items: center;
}

.seal-with-caption {
  display: grid;
  gap: 6px;
  align-items: center;
  min-height: 96px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seal-caption {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.footer-seals img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer-seals img[alt="Proibido para menores de 18 anos"] {
  max-height: 82px;
}

.footer-seals .seal-with-caption img {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-regulatory p {
  margin: 0;
  color: rgba(255, 247, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-regulatory a {
  color: var(--purple);
  font-weight: 800;
}

.legal {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 14px;
  color: #ffffff;
  font-weight: 900;
  background: #20b857;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 22px;
    background: var(--purple-deep);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-logo {
    order: -1;
  }

  .hero-media img {
    width: min(100%, 760px);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .winners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice,
  .social-header,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-seals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .countdown-panel {
    padding: 16px;
  }

  .button {
    padding: 0 16px;
  }

  .winners-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}
