/* ============================================================
   ED SHEERAN — LOOP TOUR BRASIL
   Concurso Cultural Loop Fãs
   ============================================================ */

:root {
  --pink: #e8008a;
  --pink-soft: #fd65a8;
  --pink-light: #fff0f7;
  --pink-dark: #b5006a;
  --orange: #f7723b;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --font-head: "Special Elite", cursive;
  --font-body: "Poppins", sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-pink: 0 8px 40px rgba(232, 0, 138, 0.3);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(232, 0, 138, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline-pink:hover {
  background: var(--pink);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 0, 138, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 24px;
  background: rgba(10, 10, 10, 0.97);
}

.header-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.site-header.scrolled .header-logo {
  height: 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.header-nav a:hover {
  color: var(--pink-soft);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .header-nav .nav-text {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  z-index: 8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 140px;
}

/* Brush stroke: hero → prize */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 50px;
  background: url(../img/divider-1.svg) no-repeat center / 100% 114%;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/banner-hero.webp");
  background-size: cover;
  background-position: center top;
  filter: brightness(0.4) saturate(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(232, 0, 138, 0.15) 40%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 0, 138, 0.55);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(232, 0, 138, 0);
  }
}

.hero-pretitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--pink-soft);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-shadow: 0 4px 40px rgba(232, 0, 138, 0.35);
}

.hero-title-pink {
  color: var(--pink);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--pink-soft);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero-scroll-hint i {
  color: var(--pink-soft);
  font-size: 1.1rem;
}

@keyframes bounce-down {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Cassete SVG decorativo hero */
.hero-cassete {
  position: absolute;
  right: -30px;
  bottom: 80px;
  width: 200px;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-cassete {
    right: 48px;
    width: 320px;
    opacity: 0.15;
  }
}

/* ============================================================
   PRIZE SECTION
   ============================================================ */

.prize-section {
  background: var(--pink);
  padding: 90px 24px 140px;
  position: relative;
  z-index: 7;
  overflow: visible;
}

/* Brush stroke: prize → steps */
.prize-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 50px;
  background: url("../img/divider-2.svg") no-repeat center / 100% 100%;
  pointer-events: none;
}

.prize-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 860px) {
  .prize-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.prize-text {
  color: var(--dark);
}

.prize-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.prize-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.prize-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.prize-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.prize-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--dark);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.prize-img-wrap {
  position: relative;
}

.prize-img-wrap img {
  border-radius: var(--radius);
  box-shadow: -10px 10px 0px var(--dark);
  width: 100%;
  object-fit: cover;
  max-height: 440px;
}

.prize-spinning-badge {
  position: absolute;
  top: -28px;
  right: -12px;
  width: 108px;
  height: 108px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*animation: spin-slow 14s linear infinite;*/
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  padding: 14px;
  z-index: 2;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.prize-spinning-badge span {
  color: var(--pink);
  font-family: var(--font-head);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */

.steps-section {
  background: var(--dark-2);
  padding: 100px 24px 140px;
  position: relative;
  z-index: 6;
  overflow: visible;
}

/* Brush stroke: steps → audio */
.steps-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 70px;
  background: url("../img/divider-3.svg") no-repeat center / 100% 100%;
  pointer-events: none;
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 60%,
      rgba(232, 0, 138, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(247, 114, 59, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-title-pink {
  color: var(--pink);
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop: linha horizontal */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 180px;
  position: relative;
}

.step-number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--pink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--dark-3);
  border: 2px solid rgba(232, 0, 138, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
  position: relative;
}

.step-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 0, 138, 0.18);
  animation: rotate-dash 10s linear infinite;
}

@keyframes rotate-dash {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.step-item:hover .step-icon-wrap {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
  box-shadow: var(--shadow-pink);
}

.step-icon-wrap i {
  font-size: 1.4rem;
  color: var(--pink);
  transition: var(--transition);
}

.step-item:hover .step-icon-wrap i {
  color: var(--white);
}

.step-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.step-desc strong {
  color: var(--pink-soft);
  font-weight: 600;
}

/* Setas entre steps — desktop */
.step-arrow {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 46px;
  opacity: 0.8;
}

.step-arrow svg {
  overflow: visible;
}

.step-arrow-mobile {
  display: none;
}

/* Mobile: coluna vertical */
@media (max-width: 860px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-item {
    max-width: 320px;
    width: 100%;
  }

  .step-arrow-desktop {
    display: none;
  }

  /* Mobile: divisor rosa no lugar da seta */
  .step-arrow-mobile {
    position: relative;
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 6px auto;
    height: 22px;
  }

  .step-arrow-mobile svg {
    display: none;
  }

  /* Linha gradiente rosa */
  .step-arrow-mobile::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--pink) 22%,
      var(--pink) 78%,
      transparent 100%
    );
  }

  /* Diamante central */
  .step-arrow-mobile::after {
    content: "◆";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--pink);
    font-size: 9px;
    background: var(--dark-2);
    padding: 0 10px;
    z-index: 1;
    letter-spacing: 6px;
    text-indent: 6px;
  }
}

/* ============================================================
   AUDIO SECTION
   ============================================================ */

.audio-section {
  background: var(--white);
  padding: 100px 24px 140px;
  position: relative;
  z-index: 5;
  overflow: visible;
}

/* Brush stroke: audio → form */
.audio-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 70px;
  background: url("../img/divider-4.svg") no-repeat center / 100% 100%;
  pointer-events: none;
}

.audio-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 768px) {
  .audio-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.audio-text .section-eyebrow {
  color: var(--pink);
}

.audio-text .section-eyebrow::before,
.audio-text .section-eyebrow::after {
  background: var(--pink);
}

.audio-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.audio-song {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.audio-song-link {
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.audio-song-link:hover {
  border-color: var(--pink);
  background: #1a0010;
}

.audio-song-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--pink-soft);
  flex-shrink: 0;
}

.audio-song-icon {
  width: 46px;
  height: 46px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  /*animation: rotate-record 5s linear infinite;*/
}

@keyframes rotate-record {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.song-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.song-artist {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.audio-desc {
  font-size: 0.92rem;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}

.audio-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .audio-qr-wrap {
    display: none;
  }
}

.qr-frame {
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 8px 48px rgba(232, 0, 138, 0.18),
    0 2px 16px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--pink-light);
  max-width: 210px;
  width: 100%;
}

.qr-frame img {
  width: 100%;
  border-radius: 10px;
}

.qr-caption {
  font-size: 0.82rem;
  color: rgba(10, 10, 10, 0.55);
  max-width: 200px;
  line-height: 1.5;
}

.audio-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(10, 10, 10, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 100%;
  max-width: 260px;
}

.audio-or::before,
.audio-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 10, 10, 0.15);
}

/* ============================================================
   HASHTAG COPY BLOCK
   ============================================================ */

.hashtag-copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(232, 0, 138, 0.07);
  border: 1px solid rgba(232, 0, 138, 0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 560px;
  width: 100%;
  margin: 24px auto 0;
}

.hashtag-copy-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.hashtag-copy-preview {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

.btn-copy-hashtags {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy-hashtags:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-copy-hashtags.copied {
  background: #1a7a3a;
  border-color: #1a7a3a;
  color: var(--white);
}

.copy-tags-only {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.copy-tags-only:hover {
  color: rgba(255, 255, 255, 0.7);
}

.copy-tags-only.copied {
  color: #4caf7d;
  text-decoration: none;
}

/* ============================================================
   FORM SECTION
   ============================================================ */

.form-section {
  background: var(--dark);
  padding: 100px 24px 140px;
  position: relative;
  z-index: 4;
  overflow: visible;
}

/* Brush stroke: form → faq */
.form-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 50px;
  background: url("../img/divider-5.svg") no-repeat center / 100% 100%;
  pointer-events: none;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 10%,
      rgba(232, 0, 138, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(247, 114, 59, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.form-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--dark-3);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(232, 0, 138, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(232, 0, 138, 0.05);
}

@media (max-width: 600px) {
  .form-card {
    padding: 32px 20px;
  }
}

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

.form-header .section-eyebrow {
  justify-content: center;
}

.form-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-label i {
  color: var(--pink);
  width: 14px;
  text-align: center;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
  border-color: var(--pink);
  background: rgba(232, 0, 138, 0.05);
  box-shadow: 0 0 0 3px rgba(232, 0, 138, 0.12);
}

.form-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.field-hint-error {
  display: block;
  font-size: 0.78rem;
  color: #ff8a8a;
  margin-top: 6px;
}

/* Tutorial de link */
.link-tutorial-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--pink-soft);
  cursor: pointer;
  margin-top: 10px;
  padding: 4px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
  font-weight: 500;
}

.link-tutorial-toggle:hover {
  color: var(--pink);
}

.link-tutorial-toggle .toggle-icon {
  transition: transform 0.3s ease;
  font-size: 0.72rem;
}

.link-tutorial-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

.link-tutorial-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.link-tutorial-body.open {
  max-height: 300px;
}

.link-tutorial-content {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 10px;
}

.link-tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tutorial-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.tutorial-step-num {
  width: 22px;
  height: 22px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Submit */
.form-submit {
  margin-top: 32px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
}

.form-legal {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.65;
}

.form-error-msg {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #ff8a8a;
  line-height: 1.5;
}

.form-error-msg.visible {
  display: flex;
}

.form-error-msg i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   THANK YOU SECTION
   ============================================================ */

.thankyou-section {
  display: none;
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thankyou-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(232, 0, 138, 0.13) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.thankyou-section.visible {
  display: block;
}

.thankyou-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thankyou-check {
  width: 88px;
  height: 88px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2rem;
  color: var(--white);
  animation:
    pop-in 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
    pulse-ring 2.2s ease-in-out 0.55s infinite;
}

@keyframes pop-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(232, 0, 138, 0.5),
      var(--shadow-pink);
  }
  50% {
    box-shadow:
      0 0 0 22px rgba(232, 0, 138, 0),
      var(--shadow-pink);
  }
}

.thankyou-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.thankyou-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 44px;
  line-height: 1.6;
}

.participation-number-wrap {
  background: var(--dark-3);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-pink);
}

.participation-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 14px;
}

.participation-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.8rem);
  color: var(--pink);
  letter-spacing: 0.1em;
  user-select: all;
}

.participation-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.copy-success {
  display: none;
  font-size: 0.82rem;
  color: var(--pink-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  background: var(--pink-light);
  padding: 100px 24px 140px;
  position: relative;
  z-index: 3;
  overflow: visible;
}

/* Brush stroke: faq → footer */
.faq-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 70px;
  background: url("../img/divider-6.svg") no-repeat center / 100% 100%;
  pointer-events: none;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-header .section-eyebrow {
  color: var(--pink);
}

.faq-section .section-header .section-eyebrow::before,
.faq-section .section-header .section-eyebrow::after {
  background: var(--pink);
}

.faq-section .section-title {
  color: var(--dark);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(232, 0, 138, 0.12);
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--pink);
  box-shadow: 0 4px 24px rgba(232, 0, 138, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  line-height: 1.4;
}

.faq-question i {
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.68);
  line-height: 1.75;
  border-top: 1px solid rgba(232, 0, 138, 0.1);
  padding-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: url("../img/bg-rosa.png") bottom / cover no-repeat;
  background-color: var(--pink);
  border-top: none;
  padding: 64px 24px 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer-logo {
  height: 54px;
  width: auto;
  filter: brightness(0);
  opacity: 0.85;
}

.footer-dates {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #1a0a10;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #1a0a10;
  transition: var(--transition);
  font-weight: 600;
}

.footer-social a:hover {
  color: #000000;
}

.footer-social a i {
  font-size: 1.1rem;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18);
}

.footer-legal {
  font-size: 0.75rem;
  color: #ffffff;
  line-height: 1.65;
  max-width: 460px;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 16px;
  border-radius: 8px;
}

/* ============================================================
   TERMS CHECKBOX
   ============================================================ */

.terms-check {
  margin-bottom: 20px;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.terms-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.terms-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(232, 0, 138, 0.4);
  border-radius: 6px;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
}

.terms-check-box i {
  font-size: 0.7rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.terms-label input[type="checkbox"]:checked + .terms-check-box {
  background: var(--pink);
  border-color: var(--pink);
}

.terms-label input[type="checkbox"]:checked + .terms-check-box i {
  opacity: 1;
  transform: scale(1);
}

.terms-label:hover .terms-check-box {
  border-color: var(--pink);
}

.terms-check-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.terms-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--pink-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.terms-link:hover {
  color: var(--pink);
}

.terms-error {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 8px;
  margin-left: 34px;
}

/* ============================================================
   MODAL — TERMOS
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark-2);
  border: 1px solid rgba(232, 0, 138, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(232, 0, 138, 0.1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.modal-title i {
  color: var(--pink);
  font-size: 1.1rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 1rem;
}

.modal-close-btn:hover {
  background: rgba(232, 0, 138, 0.15);
  color: var(--white);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  scroll-behavior: smooth;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(232, 0, 138, 0.4);
  border-radius: 3px;
}

.modal-updated {
  font-size: 0.78rem;
  color: var(--pink-soft);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.modal-body h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--pink-soft);
  margin: 24px 0 8px;
  letter-spacing: 0.03em;
}

.modal-body h4:first-of-type {
  margin-top: 0;
}

.modal-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 10px;
}

.modal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.modal-body ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 4px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.modal-btn-decline {
  padding: 11px 24px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.modal-btn-decline:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.modal-btn-accept {
  padding: 11px 28px;
  font-size: 0.875rem;
}

@media (max-width: 480px) {
  .modal-header {
    padding: 18px 20px;
  }
  .modal-body {
    padding: 20px;
  }
  .modal-footer {
    padding: 16px 20px;
    flex-direction: column-reverse;
  }
  .modal-btn-decline,
  .modal-btn-accept {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FADE-IN ON SCROLL
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 {
  transition-delay: 0.1s;
}
.fade-delay-2 {
  transition-delay: 0.2s;
}
.fade-delay-3 {
  transition-delay: 0.3s;
}
.fade-delay-4 {
  transition-delay: 0.4s;
}
.fade-delay-5 {
  transition-delay: 0.5s;
}
