:root {
  --green-dark: #1a4a2e;
  --green-mid: #245c38;
  --green-accent: #2d7a4f;
  --teal: #1ab5a0;
  --teal-light: #3ecfba;
  --navy: #1a2e4a;
  --navy-light: #2a4a7a;
  --cream: #f0ece4;
  --cream-light: #f7f4ef;
  --sand: #e8e2d8;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-soft: #6a6a6a;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 74, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-circle {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.nav-logo-text {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--teal-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--teal-light); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-forest {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,74,46,0) 0%,
    rgba(26,74,46,0.7) 40%,
    rgba(26,74,46,0.95) 80%
  ),
  radial-gradient(ellipse at 70% 20%, rgba(45,122,79,0.4) 0%, transparent 60%);
  z-index: 1;
}

/* Wavy river decorations */
.wave-left {
  position: absolute;
  left: -20px; top: 10%; bottom: 0;
  width: 80px;
  z-index: 2;
  opacity: 0.8;
}

.wave-right {
  position: absolute;
  right: -10px; top: 20%; bottom: 0;
  width: 60px;
  z-index: 2;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--teal);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1rem;
}

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

.hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.hero-meta-icon {
  width: 36px; height: 36px;
  background: rgba(26,181,160,0.15);
  border: 1px solid rgba(26,181,160,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 2px solid var(--teal);
}

.btn-primary:hover {
  background: transparent;
  color: var(--teal);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}

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

/* Countdown */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.countdown-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

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

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.countdown-unit-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

.theme-card {
  background: linear-gradient(135deg, rgba(26,181,160,0.1) 0%, rgba(26,46,74,0.3) 100%);
  border: 1px solid rgba(26,181,160,0.2);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  padding: 1.5rem;
}

.theme-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.theme-card-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── SECTION COMMONS ── */
section {
  padding: 6rem 2.5rem;
}

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

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* ── ABOUT ── */
#about {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  background: var(--green-dark);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45,122,79,0.3) 0%,
    rgba(26,74,46,0.8) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.forest-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stat-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-stat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
}

.about-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--sand);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}

.highlight-icon { font-size: 1rem; margin-top: 0.1rem; }

.highlight-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── DESTAQUE DO EDITAL ── */
#edital-destaque {
  background: var(--teal);
  padding: 4.5rem 2.5rem;
  text-align: center;
}

.edital-destaque-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.edital-destaque-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.edital-destaque-desc {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  transition: all 0.25s ease;
}

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

/* ── CHAMADA DE TRABALHOS (SUBMISSÃO) ── */
#submissao {
  background: var(--white);
}

.edital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.edital-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand);
}

.edital-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.edital-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.edital-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
  top: 4px;
}

.edital-highlight {
  background: var(--cream-light);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
  border-left: 4px solid var(--teal);
}

.edital-highlight h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.edital-highlight p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

/* ── INSCRIÇÕES ── */
#inscricoes {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

#inscricoes::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,181,160,0.1) 0%, transparent 70%);
}

#inscricoes .section-title { color: var(--white); }
#inscricoes .section-desc { color: rgba(255,255,255,0.65); }

.inscricoes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.inscricoes-info {
  padding-top: 1rem;
}

.inscricoes-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 40px; height: 40px;
  background: rgba(26,181,160,0.15);
  border: 1px solid rgba(26,181,160,0.25);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.benefit-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.form-subtitle {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-select { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 0.5rem;
}

.btn-form:hover { background: var(--green-accent); }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
}

/* Cotas Inscrição */
.cotas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.cota-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}

.cota-card:hover, .cota-card.featured {
  border-color: var(--teal);
  background: rgba(26,181,160,0.08);
}

.cota-card.featured { position: relative; }

.cota-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}

.cota-name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.cota-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.cota-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* ── PATROCÍNIO ── */
#patrocinio {
  background: var(--cream-light);
}

.patrocinio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.patrocinio-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pat-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 6px;
  transition: all 0.25s;
}

.pat-benefit:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(26,181,160,0.1);
}

.pat-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-accent) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.pat-benefit h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.pat-benefit p {
  font-size: 0.78rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.cotas-patrocinio {
  background: var(--green-dark);
  border-radius: 8px;
  padding: 3rem;
  color: var(--white);
}

.cotas-pat-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cotas-pat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cotas-pat-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.cotas-pat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cota-pat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.cota-pat-card.highlight {
  background: rgba(26,181,160,0.1);
  border-color: rgba(26,181,160,0.4);
}

.cota-pat-tier {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.cota-pat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cota-pat-features {
  list-style: none;
  margin-top: 1.25rem;
  text-align: left;
}

.cota-pat-features li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cota-pat-features li::before {
  content: '✓';
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.cota-pat-cta {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.cota-pat-cta:hover,
.cota-pat-card.highlight .cota-pat-cta {
  background: var(--teal);
  border-color: var(--teal);
}

.pat-contact {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pat-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.pat-contact a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: #0f2a1a;
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.developer-credit {
  display: flex;
  align-items: center;
}

.developer-credit a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.developer-credit a:hover { color: rgba(255,255,255,0.7); }

.developer-credit img {
  height: 20px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
  border-radius: 3px;
}

.developer-credit a:hover img { opacity: 0.8; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }

.live-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  display: inline-block;
}

/* ── RESPONSIVE COMPLETO ── */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2rem; }
  .hero-right { display: none; }
  .hero-title { font-size: 3.5rem; }
  
  .about-grid, .inscricoes-layout, .patrocinio-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { aspect-ratio: 16/9; }
  
  .edital-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  
  section { padding: 4rem 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  
  .cotas-pat-grid { grid-template-columns: 1fr; }
  .patrocinio-benefits-grid { grid-template-columns: 1fr; }
  .cotas-patrocinio { padding: 2rem 1.5rem; }
  
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .developer-credit { justify-content: center; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.8rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  
  .about-stat-overlay { grid-template-columns: 1fr; gap: 0.5rem; }
  .cotas-grid { grid-template-columns: 1fr; }
  
  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  
  #edital-destaque { padding: 3rem 1.5rem; }
  .edital-destaque-title { font-size: 1.8rem; }
  .btn-outline-white { width: 100%; }
}
