:root {
  --bg: #0a0910;
  --bg-alt: #0e0d14;
  --ink: #f4f1f6;
  --muted: #9a93a6;
  --muted-2: #6f6a7c;
  --pink: #ff3d9a;
  --pink-deep: #e6157a;
  --maroon: #7a0a40;
  --line: rgba(255,255,255,.08);
  --serif: 'Cinzel', serif;
  --sans: 'Sora', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#net {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
}

.nav, main, .footer {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,9,16,.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-mark { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: .95rem;
}

.nav-links a { color: var(--muted); transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  color: var(--ink) !important;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 110px;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 600px;
  background: radial-gradient(closest-side, rgba(255,61,154,.16), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-logo {
  height: clamp(120px, 16vw, 240px);
  width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(10,9,16,.85)) drop-shadow(0 0 60px rgba(10,9,16,.6));
}

.eyebrow {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--pink);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto 24px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-sub em { color: var(--ink); font-style: normal; font-weight: 600; }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(255,61,154,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(255,61,154,.7); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); }

.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* Sections */
.section { padding: 96px 0; }
.section-alt {
  background: rgba(14,13,20,.55);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* Mission/Vision cards */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: rgba(14,13,20,.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}

.tag {
  display: inline-block;
  font-family: var(--serif);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--pink);
  margin-bottom: 18px;
}

.card-text { font-size: 1.08rem; color: var(--ink); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.step-num {
  font-family: var(--serif);
  color: var(--pink);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p { color: var(--muted); font-size: .98rem; }

/* Social */
.redes-wrap { text-align: center; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.social-card {
  background: rgba(14,13,20,.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform .2s ease, border-color .2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,61,154,.5);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  margin-bottom: 10px;
}
.social-icon svg { width: 22px; height: 22px; }

.social-name { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; }
.social-handle { color: var(--muted); font-size: .9rem; }

/* CTA section */
.section-cta { text-align: center; }
.cta-wrap .btn { margin-top: 8px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-mark { height: 26px; opacity: .8; }

.footer-links { display: flex; gap: 24px; color: var(--muted); font-size: .9rem; }
.footer-links a:hover { color: var(--ink); }

.footer-copy { color: var(--muted-2); font-size: .82rem; }

/* Responsive */
@media (max-width: 860px) {
  .grid-2, .steps, .social-grid { grid-template-columns: 1fr; }
  .br-desktop { display: none; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 64px 0; }
}
