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

:root {
  --yellow: #f4e401;
  --dark: #0a0a0a;
  --dark-card: #141414;
  --dark-section: #0d0d0d;
  --dark-card-img: #1d1d1d;
  --border: rgba(255,255,255,0.15);
  --white: #FFFFFF;
  --cream: #f0ede6;
  --gray: #9a9a9a;
  --gray-light: #868686;
  --font: 'Roboto Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

/* ========== UTILITIES ========== */
.container {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.56px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  padding: 25px 40px;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font);
  letter-spacing: -0.36px;
}

.btn-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}

.text-center {
  text-align: center;
}

/* ========== TOP BANNER ========== */
.top-banner {
  background-color: var(--yellow);
  color: #000;
  text-align: center;
  padding: 18px 16px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-vector {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-45%);
  width: 580px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-alan {
  position: absolute;
  right: 100px;
  top: -153px;
  width: 662px;
  height: auto;
  filter: drop-shadow(386px 596px 199px rgba(0,0,0,0.01)) drop-shadow(247px 382px 182px rgba(0,0,0,0.07)) drop-shadow(139px 215px 153px rgba(0,0,0,0.23));
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 548px;
  margin-left: 418px;
  padding-top: 180px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-logo img {
  width: 32px;
  height: 32px;
}

.hero-logo span {
  font-size: 20px;
  color: var(--white);
}

.hero h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
  letter-spacing: -0.72px;
}

.hero h1 .underline-bold {
  font-weight: 600;
  text-decoration: underline;
}

.hero-text {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.hero-text strong {
  color: var(--white);
  font-weight: 700;
}

.hero-subtext {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  letter-spacing: -0.32px;
  line-height: 1.5;
}

.hero-subtext .highlight {
  color: var(--yellow);
  font-weight: 700;
}

.hero-badge {
  position: absolute;
  left: 954px;
  bottom: 84px;
  z-index: 5;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(29px);
  padding: 10px 20px;
  box-shadow: 0 7px 47px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge img {
  width: 22px;
  height: 22px;
}

.hero-badge span {
  font-size: 14px;
}

.hero-badge strong {
  font-weight: 700;
}

/* ========== COMO PARTICIPAR ========== */
.section-steps {
  background: var(--dark-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  border-radius: 10px;
}

.steps-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.step-card {
  background: var(--dark-card);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 30px 50px;
  flex: 1;
  max-width: 330px;
}

.step-card-image {
  width: 259px;
  height: 259px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-card-img);
  margin: 0 auto 30px;
}

.step-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: -0.36px;
  min-height: 157px;
}

.step-card-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 30px;
}

.step-card .note {
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
  line-height: 1.5;
}

/* ========== 7 PERGUNTAS ========== */
.questions-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.56px;
  max-width: 344px;
  margin-left: auto;
  margin-right: auto;
}

.questions-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.question-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.question-number {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  flex-shrink: 0;
  letter-spacing: -0.45px;
}

.question-text {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.4px;
}

.question-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 10px 0;
}

/* ========== POR QUE EXISTE ========== */
.why-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1084px;
  margin: 0 auto;
}

.why-content {
  flex: 1;
  max-width: 487px;
}

.why-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: -0.56px;
}

.why-content p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.5;
  letter-spacing: -0.32px;
}

.why-content .bold-text {
  font-weight: 600;
}

.why-content .yellow-text {
  color: var(--yellow);
  font-weight: 600;
}

.why-image {
  flex: 1;
  max-width: 443px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.why-image .glow {
  position: absolute;
  width: 519px;
  height: 519px;
  mix-blend-mode: plus-lighter;
}

.why-image .symbol {
  position: relative;
  z-index: 1;
  width: 548px;
  max-width: 100%;
}

/* ========== PREMIACOES ========== */
.prizes-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prize-card {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.prize-icon {
  width: 183px;
  height: 183px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prize-icon img {
  width: 135px;
  height: 135px;
  object-fit: contain;
}

.prize-info {
  flex: 1;
  max-width: 619px;
}

.prize-place {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -0.56px;
}

.prize-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 30px;
}

.prize-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.prize-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
}

.prize-items li img {
  width: 16px;
  height: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.prizes-note {
  text-align: center;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
  max-width: 455px;
  margin: 40px auto;
}

/* ========== CRONOGRAMA ========== */
.timeline-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.timeline-date {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.4px;
  text-align: center;
  height: 34px;
  display: flex;
  align-items: center;
}

.timeline-dot-img {
  width: 62px;
  height: 62px;
}

.timeline-label {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  letter-spacing: -0.32px;
  max-width: 169px;
  line-height: 1.4;
}

.timeline-label.wide {
  max-width: 243px;
}

.timeline-info {
  background: var(--dark-card);
  border-radius: 10px;
  max-width: 726px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  overflow: hidden;
}

.timeline-info-bar {
  width: 3px;
  height: 100%;
  background: #d9d9d9;
  flex-shrink: 0;
}

.timeline-info p {
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
  line-height: 1.4;
}

/* ========== QUEM PODE PARTICIPAR ========== */
.participants-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 868px;
  margin: 0 auto 40px;
}

.participant-card {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 216px;
}

.participant-card img {
  width: 52px;
  height: 52px;
}

.participant-card p {
  font-size: 18px;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.36px;
  line-height: 1.4;
  max-width: 216px;
}

.participants-note {
  text-align: center;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
  max-width: 718px;
  margin: 0 auto 20px;
  font-weight: 600;
  line-height: 1.5;
}

.participants-divider {
  width: 921px;
  max-width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px auto;
}

.participants-warning {
  text-align: center;
  font-size: 16px;
  color: var(--gray);
  letter-spacing: -0.32px;
  max-width: 709px;
  margin: 20px auto 40px;
  line-height: 1.5;
}

/* ========== FAQ ========== */
.faq-label {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.faq-title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.faq-title span {
  color: var(--white);
}

.faq-list {
  max-width: 906px;
  margin: 0 auto;
}

.faq-item-active {
  background: var(--dark-card);
  border-radius: 10px;
  margin-bottom: 0;
}

.faq-item-active .faq-question {
  background: var(--dark-card);
  border: none;
  border-radius: 10px;
  padding: 20px 40px;
  height: 70px;
}

.faq-item-active .faq-question span {
  font-weight: 700;
  color: var(--cream);
}

.faq-item-active .faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  padding: 20px 40px;
  height: 70px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: all 0.3s ease;
}

.faq-question:hover {
  border-color: rgba(255,255,255,0.4);
}

.faq-question span {
  flex: 1;
}

.faq-arrow {
  width: 16px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--dark-card);
  border-color: transparent;
  border-radius: 10px 10px 0 0;
}

.faq-item.active .faq-question span {
  font-weight: 700;
  color: var(--cream);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 40px 20px;
  background: var(--dark-card);
  border-radius: 0 0 10px 10px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-section);
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-copy {
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--white);
  transition: color 0.3s;
  line-height: 1.3;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-separator {
  width: 1px;
  height: 24px;
  background: var(--white);
  transform: rotate(0);
}

/* ========== REGULAMENTO PAGE ========== */
.reg-steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.reg-step {
  text-align: center;
}

.reg-step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-step-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.reg-step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.reg-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.reg-intro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.reg-intro p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.reg-item {
  display: grid;
  grid-template-columns: 619px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1084px;
  margin: 0 auto;
}

.reg-item-text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--white);
}

.reg-item-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.reg-item-text ul {
  list-style: none;
  margin-top: 8px;
}

.reg-item-text ul li {
  font-size: 14px;
  color: var(--gray);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.reg-item-text ul li::before {
  content: "\2022";
  color: var(--yellow);
  position: absolute;
  left: 0;
}

.reg-item-number {
  font-size: 380px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0.9;
}

/* ========== RESPONSIVE ========== */

/* Tablet landscape */
@media (max-width: 1200px) {
  .hero-content {
    margin-left: 80px;
  }

  .hero-alan {
    right: 0;
    width: 500px;
  }

  .hero-badge {
    left: auto;
    right: 80px;
  }

  .reg-item {
    grid-template-columns: 1fr 200px;
  }

  .reg-item-number {
    font-size: 220px;
  }
}

/* Tablet portrait */
@media (max-width: 968px) {
  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-left: 24px;
    margin-right: 24px;
    padding-top: 100px;
    max-width: 100%;
  }

  .hero-alan {
    display: none;
  }

  .hero-badge {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-text,
  .hero-subtext {
    font-size: 14px;
  }

  .container-wide {
    padding: 0 24px;
  }

  .section-steps {
    padding: 60px 24px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .step-card h3 {
    min-height: auto;
  }

  .step-card-image {
    width: 100%;
    height: 200px;
  }

  .questions-box {
    padding: 40px 24px;
  }

  .question-text {
    font-size: 16px;
  }

  .why-grid {
    flex-direction: column;
    text-align: center;
  }

  .why-content {
    max-width: 100%;
  }

  .why-image {
    min-height: 250px;
  }

  .why-image .glow {
    width: 350px;
    height: 350px;
  }

  .prize-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 24px;
  }

  .prize-icon {
    width: 120px;
    height: 120px;
  }

  .prize-icon img {
    width: 90px;
    height: 90px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .timeline-wrapper {
    padding: 0;
  }

  .timeline-info {
    height: auto;
    padding: 16px 20px;
  }

  .participants-grid {
    gap: 12px;
  }

  .participant-card {
    min-width: calc(50% - 12px);
    flex: 1 1 calc(50% - 12px);
    padding: 40px 16px;
  }

  .participant-card p {
    font-size: 15px;
  }

  .faq-question {
    padding: 16px 20px;
    height: auto;
    min-height: 60px;
    font-size: 14px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .reg-item {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
  }

  .reg-item-number {
    font-size: 120px;
    justify-content: flex-start;
    order: -1;
  }

  .reg-item-text h3 {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  .container-wide {
    padding: 0 16px;
  }

  .top-banner {
    font-size: 13px;
    padding: 12px 16px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 18px 24px;
    width: 100%;
    text-align: center;
  }

  /* Hero mobile */
  .hero {
    padding-bottom: 40px;
  }

  .hero-content {
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 80px;
  }

  .hero-logo {
    margin-bottom: 24px;
  }

  .hero-logo span {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .hero-text,
  .hero-subtext {
    font-size: 13px;
  }

  .hero-bg-vector {
    width: 300px;
  }

  /* Steps mobile */
  .section-steps {
    padding: 40px 16px;
  }

  .step-card {
    padding: 20px 20px 30px;
  }

  .step-card-image {
    height: 180px;
    margin-bottom: 20px;
  }

  .step-card h3 {
    font-size: 15px;
    margin-bottom: 16px;
    min-height: auto;
  }

  .step-card-divider {
    margin-bottom: 16px;
  }

  .step-card .note {
    font-size: 13px;
  }

  /* Questions mobile */
  .questions-title {
    font-size: 22px;
    max-width: 100%;
  }

  .questions-box {
    padding: 24px 16px;
    margin-bottom: 24px;
  }

  .question-item {
    align-items: flex-start;
  }

  .question-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .question-text {
    font-size: 14px;
  }

  /* Why section mobile */
  .why-content h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .why-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .why-image {
    min-height: 200px;
  }

  .why-image .glow {
    width: 280px;
    height: 280px;
  }

  .why-image .symbol {
    width: 300px;
  }

  /* Prizes mobile */
  .prize-card {
    padding: 24px 16px;
  }

  .prize-place {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .prize-divider {
    margin-bottom: 16px;
  }

  .prize-items li {
    font-size: 14px;
  }

  .prizes-note {
    font-size: 13px;
    margin: 24px auto;
  }

  /* Timeline mobile */
  .timeline {
    gap: 24px;
  }

  .timeline-date {
    font-size: 16px;
  }

  .timeline-dot-img {
    width: 48px;
    height: 48px;
  }

  .timeline-label {
    font-size: 13px;
  }

  .timeline-info {
    padding: 12px 16px;
    gap: 12px;
  }

  .timeline-info p {
    font-size: 13px;
  }

  /* Participants mobile */
  .participants-grid {
    gap: 10px;
  }

  .participant-card {
    min-width: calc(50% - 10px);
    padding: 30px 12px;
    gap: 12px;
  }

  .participant-card img {
    width: 40px;
    height: 40px;
  }

  .participant-card p {
    font-size: 13px;
  }

  .participants-note {
    font-size: 13px;
  }

  .participants-warning {
    font-size: 13px;
  }

  /* FAQ mobile */
  .faq-label {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .faq-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 14px 16px;
    min-height: 54px;
    font-size: 13px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-item {
    margin-bottom: 8px;
  }

  /* Footer mobile */
  .footer {
    min-height: auto;
    padding: 24px 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .footer-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-separator {
    height: 16px;
  }

  /* Regulamento mobile */
  .reg-item {
    padding: 32px 0;
  }

  .reg-item-number {
    font-size: 80px;
  }

  .reg-item-text h3 {
    font-size: 18px;
  }

  .reg-item-text p {
    font-size: 13px;
  }

  .reg-item-text ul li {
    font-size: 13px;
  }

  .reg-intro h2 {
    font-size: 22px;
  }

  .reg-intro p {
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 20px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 16px 20px;
  }

  .question-text {
    font-size: 13px;
  }

  .participant-card {
    min-width: 100%;
  }

  .reg-item-number {
    font-size: 60px;
  }
}
