:root {
      --bg: #020617;
      --bg-soft: #0f172a;
      --primary: #22c55e;
      --primary-soft: rgba(34, 197, 94, 0.14);
      --accent: #01BBFD;
      --text: #e2e8f0;
      --text-muted: #94a3b8;
      --danger: #f97316;
      --container: min(1120px, 92vw);
      --radius: 14px;
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: radial-gradient(circle at top, #0f172a 0%, #020617 55%, #020617 100%);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* =================== HERO =================== */
    /* Ajustes da logo do evento */
    .logo-placeholder {
    margin-bottom: 1rem;
    }

    .logo-led {
    display: block;
    max-width: 130px; /* <-- ajuste o tamanho aqui */
    height: auto;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    }

.hero {
  min-height: 100vh;
  background-image: url("background.webp") ; /* ← sua imagem com Bruno + fundo */
  background-size: cover;
  background-position: center right; /* ajusta posição do Bruno */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

    .hero .container {
      width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 3.4rem;
      z-index: 2;
      padding: 4rem 0 2rem;
    }



    .hero-title {
      font-size: clamp(1.6rem, 2.8vw, 2.3rem);
      font-weight: 700;
      line-height: 1.02;
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    .hero-title span {
      color: var(--accent);
    }

.hero-subtitle {
  font-size: 0.95rem;             /* ↓ levemente menor (opcional) */
  color: var(--text-muted);
  max-width: 35rem;
  line-height: 1.4;               /* ↓ reduz o espaçamento entre linhas */
  margin-bottom: 0.8rem;          /* ↓ reduz o espaço abaixo da frase */
}

    .badge-date {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(34, 197, 94, 0.14);
      border: 1px solid rgba(34, 197, 94, 0.4);
      padding: 0.3rem 0.75rem 0.25rem;
      border-radius: 999px;
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 1.2rem;
    }

.form-card {
  background: transparent;
  border: none;
  padding: 0.8rem 0 0; /* ↓ menos espaço acima */
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* ↓ menor espaço entre os elementos */
  max-width: 400px; /* opcional: deixa o form um pouco mais estreito */
}

.form-card h3 {
  font-size: 0.75rem; /* ↓ menor título */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 0.4rem; /* ↓ reduz espaço abaixo do título */
}

input {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 4px;
  padding: 0.55rem 0.9rem; /* ↓ reduz altura dos campos */
  color: var(--text);
  font-size: 0.72rem; /* ↓ menor texto dentro das caixas */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  outline: none;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

input::placeholder {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.72rem; /* ↓ texto placeholder menor */
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.15);
}

.btn-primary {
  margin-top: 0.6rem; /* ↓ menor espaço entre o último input e o botão */
  width: 100%;
  background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem; /* ↓ altura do botão */
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem; /* ↓ tamanho do texto do botão */
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}


    /* =================== SEÇÕES GERAIS =================== */
    section {
      padding: 5rem 0;
    }

    .section-container {
      width: var(--container);
      margin: 0 auto;
    }

    .section-title {
      font-size: 2.1rem;
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 50rem;
      margin-bottom: 2.5rem;
    }

    .two-cols {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 3rem;
      align-items: center;
    }

    .image-placeholder {
      background: linear-gradient(140deg, rgba(15, 23, 42, 0.6) 0%, rgba(56, 189, 248, 0.1) 90%), radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(2, 6, 23, 0) 60%);
      border: 1px dashed rgba(148, 163, 184, 0.42);
      border-radius: 1.2rem;
      height: 573px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0.5rem;
      color: rgba(226, 232, 240, 0.6);
      font-size: 0.92rem;
    }

    .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* preenche a área mantendo proporção */
  border-radius: inherit; /* usa o mesmo raio da div */
  display: block;
}


/* =================== MAPA DA JORNADA =================== */
.map-section {
  background: radial-gradient(circle at center, rgba(11, 94, 212, 0.12) 0%, #020617 72%);
  padding: 4.5rem 0 4rem;
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.map-text {
  text-align: left;
}

.map-text .section-title {
  margin-bottom: 0.8rem;
}

.map-text .section-subtitle {
  margin-bottom: 0;
}

.map-image {
  max-width: 100%;
  margin: 0;
}

.map-image img {
  width: 100%;
  height: auto;
  display: block;
}

    /* =================== SOBRE O EVENTO =================== */
    .about {
      background: radial-gradient(circle at top, rgba(34, 197, 94, 0.05) 0%, #020617 75%);
    }

    .highlight {
      background: rgba(56, 189, 248, 0.1);
      border: 1px solid rgba(56, 189, 248, 0.35);
      border-radius: 0.6rem;
      padding: 0.6rem 0.8rem 0.4rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.3rem;
      display: inline-block;
    }

    .bullet-box {
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(148, 163, 184, 0.08);
      border-radius: 1rem;
      padding: 1.1rem 1.1rem 1rem;
      margin-top: 1.25rem;
    }

    .bullet {
      display: flex;
      gap: 0.6rem;
      margin-bottom: 0.55rem;
    }

    .bullet-icon {
      width: 25px;
      height: 25px;
      background: rgba(34, 197, 94, 0.18);
      border: 1px solid rgba(34, 197, 94, 0.4);
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: 0.7rem;
    }


    /* =================== IDEALIZADOR =================== */
    .founder {
      background: radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.05) 0%, #0f172a 35%, #020617 85%);
    }

    .founder-card {
      background: rgba(2, 6, 23, 0.4);
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 1.3rem;
      padding: 2rem;
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 2.2rem;
      align-items: center;
    }

    .founder-photo {
      border-radius: 1rem;
      min-height: 310px;
      display: grid;
      place-items: center;
      color: rgba(240, 226, 226, 0.55);
      text-align: center;
    }

    .founder-name {
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 0.15rem;
    }

    .founder-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;      /* a imagem preenche sem distorcer */
      border-radius: inherit; /* mantém o mesmo raio da moldura */
      display: block;
    }


    /* =================== CTA FINAL =================== */
    .final-cta {
      background: radial-gradient(circle at center, rgba(34, 197, 94, 0.04) 0%, #020617 80%);
      text-align: center;
      padding-bottom: 5rem;
    }

    .final-cta h2 {
      font-size: 2rem;
      margin-bottom: 0.6rem;
    }

    .final-cta p {
      color: var(--text-muted);
      max-width: 38rem;
      margin: 0 auto 1.6rem;
    }

    .footer-note {
      font-size: 0.7rem;
      color: rgba(148, 163, 184, 0.38);
    }

    .final-cta .footer-note {
      margin-top: 0.5rem; /* adiciona espaço abaixo do botão */
    }

    /* =================== ANIMAÇÃO SCROLL =================== */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

    /* =================== RESPONSIVO =================== */
    @media (max-width: 1000px) {
      .hero .container {
        grid-template-columns: 1fr;
      }
      .hero-right {
        order: -1;
        margin-bottom: 1.5rem;
      }
      .two-cols,
      .opportunity-grid,
      .founder-card {
        grid-template-columns: 1fr;
      }
      .hero {
        padding-top: 5rem;
      }

      .image-placeholder {
        height: auto;          /* deixa crescer conforme o conteúdo */
        min-height: 320px;     /* garante que não fique baixinho demais */
      } 

      .image-placeholder img {
        height: auto;
      }

      .hero {
        background-image: url("background-mb.webp"); /* coloca a versão enxuta aqui */
        background-position: center top;                /* centraliza o conteúdo */
        background-size: cover;
      }

    }

    @media (max-width: 640px) {
      
  /* --- HERO AJUSTES --- */

  .logo-led {
    max-width: 120px;   /* antes era 130px */
    margin-bottom: 0.2rem; /* um pouco menos de espaço abaixo */
    margin-top: 4rem; /* 🔹 adiciona espaço acima da logo */
  }

    /* mantém o título */
    .hero-title {
      font-size: 1.3rem;
      line-height: 1.15;
      margin-bottom: 0.6rem; /* menos espaço abaixo do título */
    }

    /* subtítulo menor e com menos espaço */
    .hero-subtitle {
      font-size: 0.85rem;
      line-height: 1.3;
      margin-bottom: 0.6rem;
    }

    /* "Se inscreva abaixo..." menor */
    .form-card h3 {
      font-size: 0.85rem;
      margin-bottom: 0.3rem;
    }

    /* reduz espaçamento entre campos do form */
    .form-card {
      gap: 0.45rem;
      padding: 0.8rem 0 1rem;
    }

    /* inputs menores */
    input {
      padding: 0.45rem 0.8rem;
      font-size: 0.7rem;
    }

    /* botão menor e mais justo */
    .btn-primary {
      padding: 0.9rem 1.2rem;   /* ↑ aumenta a altura */
      font-size: 0.78rem;       /* ↑ texto levemente maior */
      border-radius: 999px;     /* mantém o formato pill mais bonito */
    }

    /* oculta selo "Evento 100% Online" */
    .badge-date {
      display: none;
    }


      section {
        padding: 2.3rem 0;
      }
      .section-title {
        font-size: 1.6rem;
      }

      .image-placeholder {
        min-height: 240px;
      }

    .final-cta .footer-note {
      margin-top: 1rem; /* adiciona espaço abaixo do botão */
    }

.map-section {
  padding: 2.8rem 0 2.5rem;
}


.map-image {
  border-radius: 1rem;
}

.map-content {
  display: block;
  text-align: center;
}

.map-text {
  text-align: center;
  margin-bottom: 0rem;
}

.map-image {
  margin: 0 auto;
}

.map-text {
  order: 1;
}

.map-image {
  order: 2;
}

.map-content {
  display: flex;
  flex-direction: column;
}

.map-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.map-text .section-subtitle {
  margin: 0;
}

}

    