@font-face {
  font-family: 'Oakes Grotesk';
  src: url('/fonts/OakesGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oakes Grotesk';
  src: url('/fonts/OakesGrotesk-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oakes Grotesk';
  src: url('/fonts/OakesGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oakes Grotesk';
  src: url('/fonts/OakesGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Narrow';
  src: url('/fonts/GothamNarrow-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham Narrow';
  src: url('/fonts/GothamNarrow-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KronaOne';
  src: url('/fonts/KronaOne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-peach: #0b0b0b;
  --bg-peach-soft: #141414;
  --bg-dark: #0b0b0b;
  --panel-light: rgba(255, 248, 235, 0.12);
  --panel-strong: rgba(255, 248, 235, 0.18);
  --ink: #f6f1e6;
  --ink-soft: rgba(246, 241, 230, 0.72);
  --line: rgba(246, 241, 230, 0.14);
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.82);
  --contrast: #f1c232;
  --danger: #b5232f;
  --success: #17663f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-dark);
}

body {
  margin: 0;
  font-family: 'Oakes Grotesk', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-dark);
}

h2 {
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  font-weight: 900;
}

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

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

.page-shell {
  min-height: 100vh;
  background: var(--bg-dark);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, opacity .16s ease, background-color .16s ease;
}

.header-link,
.button-primary,
.button-secondary {
  background: var(--contrast);
  color: #111;
}

.header-link:hover,
.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.button-wide {
  width: 100%;
}

.hero {
  padding: 32px 0 6px 18px;
  background: url('/imagens/super-blends-bg.png') top center / cover no-repeat;
}

.hero-wrap {
  display: grid;
  gap: 28px;
}

.hero-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-figure {
  width: min(960px, 100%);
}

.hero-actions-block {
  background: var(--bg-dark);
  padding: 6px 0 26px;
}

.hero-actions-wrap {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.hero-meta {
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  font-family: 'Oakes Grotesk', Arial, sans-serif;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero,
.hero-actions-block,
.section-dark#como-participar,
.section-title,
.hero-meta,
.step-card,
.form-card-header h2,
.form-card-header p {
  user-select: none;
}

.upload-note,
.consent-item span,
.consent-item a,
.faq-toggle,
.faq-panel p {
  user-select: none;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--ink);
  padding: 56px 0;
}

.section-peach {
  background: var(--bg-dark);
  color: var(--ink);
  padding: 56px 0 72px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  font-size: 40px;
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 14px auto 0;
  max-width: 700px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

.steps-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.step-number {
  color: var(--contrast);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  font-weight: 900;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
}

.step-card h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Oakes Grotesk', Arial, sans-serif;
}

.step-card p {
  margin: 8px 0 0;
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.form-layout {
  display: grid;
  justify-items: center;
}

.form-card,
.campaign-state-card {
  width: min(760px, 100%);
  background: transparent;
  padding: 0;
}

.campaign-state-card {
  text-align: center;
  justify-items: center;
}

.form-card-header {
  margin-bottom: 26px;
  text-align: center;
}

#participar .form-card-header h2,
.faq-section .section-title {
  font-family: 'KronaOne', 'Cubano', 'Oakes Grotesk', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}


.form-card-header h2,
.campaign-state-card h2,
.modal-card h2,
.winners-block h2 {
  margin: 0;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 0.96;
  text-transform: uppercase;
}

.form-card-header p,
.campaign-state-card p {
  margin: 14px auto 0;
  max-width: 680px;
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field,
.upload-field {
  display: grid;
  gap: 8px;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-full {
  grid-column: 1 / -1;
}

.field span,
.upload-field > span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  color: rgba(246, 241, 230, 0.86);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 6px 16px 0 16px;
  border: 0;
  background: #f7efe1;
  color: #151515;
  font: inherit;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.12);
}

.field textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  box-shadow: inset 0 0 0 2px rgba(17, 17, 17, 0.45);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  box-shadow: inset 0 0 0 2px rgba(181, 35, 47, 0.45);
  background: #fff0f1;
  animation: field-error-pulse 0.6s ease;
}

.upload-dropzone {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 24px 18px;
  background: transparent;
  border: 0;
  text-align: center;
}

.upload-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-dropzone strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  background: var(--contrast);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  text-transform: uppercase;
}

.upload-dropzone small {
  color: rgba(246, 241, 230, 0.72);
  font-size: 12px;
}

.upload-note {
  text-align: center;
  color: rgba(246, 241, 230, 0.82);
  font-size: 12px;
  line-height: 1.4;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  text-transform: uppercase;
  max-width: min(500px, 90%);
  margin: 0 auto 20px;
}

.upload-field.is-invalid .upload-dropzone strong {
  background: var(--danger);
  animation: field-error-pulse 0.6s ease;
}

.consent-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: min(500px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.consent-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.consent-item input {
  margin-top: 3px;
}

.consent-item span {
  color: rgba(246, 241, 230, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.consent-item a {
  font-weight: 700;
}

.consent-item.is-invalid span {
  color: var(--danger);
  animation: field-error-pulse 0.6s ease;
}

@keyframes field-error-pulse {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

.form-feedback {
  min-height: 24px;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.form-feedback.is-error {
  color: var(--danger);
}

.form-feedback.is-success {
  color: #5bc389;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.form-actions .button {
  min-width: min(320px, 100%);
}

.faq-layout {
  display: grid;
  justify-items: center;
}

.faq-list {
  width: min(860px, 100%);
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: 'Oakes Grotesk', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  transition: transform .18s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0;
}

.faq-panel p {
  margin: 0;
  color: rgba(246, 241, 230, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.is-open .faq-panel {
  padding-bottom: 18px;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 32px 28px;
  background: #151515;
  color: var(--ink);
}

.modal-card p {
  margin: 14px 0 0;
  color: rgba(246, 241, 230, 0.78);
  line-height: 1.6;
}

.modal-card-wide {
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.modal-actions {
  margin-top: 20px;
}

.winners-block {
  display: grid;
  gap: 18px;
}

.winners-block > p {
  margin: 0;
  color: rgba(246, 241, 230, 0.78);
}

.winners-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.winner-group {
  padding: 20px;
  background: rgba(241, 194, 50, 0.08);
  border: 1px solid rgba(241, 194, 50, 0.2);
}

.winner-group h3 {
  margin: 0 0 14px;
  font-family: 'Gotham Narrow', 'Oakes Grotesk', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.winner-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.winner-list li {
  padding-top: 10px;
  border-top: 1px solid rgba(241, 194, 50, 0.2);
}

.winner-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

[hidden] {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-reveal {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.form-reveal.form-reveal-right {
  transform: translateX(22px);
}

.form-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 960px) {
  .hero {
    padding-bottom: 14px;
  }

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

@media (max-width: 680px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-link,
  .button {
    width: 100%;
  }

  .section-dark,
  .section-peach {
    padding: 36px 0 44px;
  }

  .hero {
    padding: 18px 0 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

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