    /* ========= Reset básico ========= */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      background: #0d1833; /* fundo geral escuro */
      color: #fff;
      font-family: "Schibsted Grotesk", Helvetica, Arial, sans-serif;
      line-height: 1.5;
    }

    /* ========= Layout global ========= */
    #container {
      max-width: 1920px;
      margin: 0 auto;
    }

    /* ========= Section 1 (Hero) ========= */
    #section1 {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      isolation: isolate; /* garante overlay correto */
      background:
        /* Overlay gradiente escuro/azulado (usa seus tons) */
        linear-gradient(
          to bottom,
          rgba(39, 170, 225, 1) 18%,
          rgba(39, 170, 225, 1) 53%,
          rgba(40, 56, 111, 1) 85%,
          rgba(40, 56, 111, 1) 96%
        );
    }

    /* Imagem de fundo (palco shark) */
    #section1::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("https://www.yt.ia.br/sharktankschool/img/palco_shark.jpg") center / cover no-repeat;
      z-index: -2;
      filter: brightness(0.6) saturate(0.9); /* escurece levemente para contraste do texto */
    }

    /* Camada extra para misturar imagem com gradiente */
    #section1::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10, 18, 40, 0.3) 0%,
        rgba(10, 18, 40, 0.6) 60%,
        rgba(10, 18, 40, 0.85) 100%
      );
      z-index: -1;
      mix-blend-mode: multiply;
    }

    /* ========= Header (logo + CTA) ========= */
    .hero-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: clamp(16px, 2vw, 32px) clamp(16px, 4vw, 48px);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #fff;
    }

    .logo img {
      height: clamp(100px, 4vw, 44px);
      width: auto;
      display: block;
      border-radius: 0px; /* sutil para um look premium */
    }

    .cta-top {
      display: inline-flex;
      align-items: center;
      padding: 10px 18px;
      border-radius: 999px;
      background: #27AAE1; /* azul vivo */
      color: #FFFFFF;
      font-weight: 800;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 6px 18px rgba(39,170,225,0.25);
      white-space: nowrap;
    }

    .cta-top:hover {
      background: #2bb9f6;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(39,170,225,0.35);
    }

    /* ========= Conteúdo central ========= */
    .hero-content {
      display: grid;
      align-content: end; /* empurra o texto para a metade inferior */
      padding: 0 clamp(16px, 4vw, 48px) clamp(28px, 6vw, 80px);
      gap: clamp(16px, 2.4vw, 28px);
    }

    .hero-title {
      max-width: 1200px;
      font-size: clamp(28px, 5vw, 56px);
      line-height: 1.1;
      margin: 0;
      text-wrap: balance;
      text-shadow: 0 2px 20px rgba(0,0,0,0.35);
    }

    .hero-subtitle {
      text-align: justify;
      max-width: 900px;
      font-size: clamp(16px, 2.2vw, 22px);
      color: rgba(255,255,255,0.9);
      margin: 0;
      text-wrap: pretty;
    }

    /* ========= Botões inferiores (MBA / Cursos presenciais) ========= */
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: 0.3px;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      will-change: transform;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-outline {
      border: 2px solid #fff;
      color: #fff;
      background: transparent;
      box-shadow: 0 4px 14px rgba(255,255,255,0.08);
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.06);
      box-shadow: 0 8px 20px rgba(255,255,255,0.12);
    }

    .btn-primary {
      background: #28386F; /* azul escuro */
      color: #fff;
      border: 2px solid rgba(255,255,255,0.12);
      box-shadow: 0 6px 18px rgba(40,56,111,0.35);
    }
    .btn-primary:hover {
      background: #2a4aa0;
      box-shadow: 0 10px 26px rgba(40,56,111,0.45);
      border-color: rgba(255,255,255,0.2);
    }

    /* ========= Responsividade extra ========= */
    @media (max-width: 768px) {
      .hero-header { padding: 16px 16px; }
      .hero-content { padding: 0 16px 32px; }
      .hero-actions { gap: 10px; }
      .btn { width: 100%; } /* botões empilham no mobile */
      .cta-top { padding: 10px 14px; }
    }

    /* ===== Section 2 ===== */
#section2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* Imagem de fundo */
  background: url("https://www.yt.ia.br/sharktankschool/img/sharktankschool.jpg") center / cover no-repeat;
  isolation: isolate;
}

/* Overlay de profundidade e coerência com a paleta azul escura */
#section2::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 18, 40, 0.15) 0%,
      rgba(10, 18, 40, 0.45) 45%,
      rgba(10, 18, 40, 0.7) 100%
    );
  z-index: -1;
}

/* Conteúdo começa da metade da imagem para baixo */
#section2 .s2-inner {
  position: relative;
  padding: 0 clamp(16px, 4vw, 48px) clamp(28px, 6vw, 80px);
  min-height: 100vh;
  display: grid;
  align-content: start;
  padding-top: 50vh; /* começa a partir de 50% da altura */
  gap: clamp(16px, 2.4vw, 28px);
}

/* Grid: título à esquerda, subtítulo à direita */
#section2 .s2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
}

/* Título (esquerda) */
#section2 .s2-title {
  margin: 0;
  font-size: clamp(24px, 4.2vw, 44px);
  line-height: 1.1;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  font-family: "Schibsted Grotesk-ExtraBold", Helvetica, Arial, sans-serif;
}

/* Subtítulo (direita) */
#section2 .s2-subtitle {
  text-align: justify;
  margin: 0;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

/* CTA abaixo dos textos */
#section2 .s2-action {
  margin-top: clamp(8px, 2vw, 20px);
}

#section2 .s2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: #ffffff;               /* fundo branco */
  color: #28386F;                    /* texto azul escuro */
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#section2 .s2-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  background: #f2f6ff;
  color: #1f6fb5; /* leve variação de azul no hover */
}

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
  #section2 .s2-grid {
    grid-template-columns: 1fr;
  }
  /* Dá um respiro extra quando empilha */
  #section2 .s2-title,
  #section2 .s2-subtitle {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  #section2 .s2-inner {
    padding: 0 16px 32px;
    padding-top: 52vh; /* levemente mais espaço no mobile */
  }
  #section2 .s2-button {
    width: 100%;
  }
}

/* ===== Section 3 ===== */
#section3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0d1833; /* fundo escuro consistente */
  background: url("https://www.yt.ia.br/sharktankschool/img/fundocarolpaiffer.png") center / cover no-repeat;
  color: #fff;
}

#section3 .s3-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

#section3 .s3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}

/* Texto */
#section3 .s3-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

#section3 .s3-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.2;
  text-wrap: balance;
}

#section3 .s3-subtitle {
  text-align: justify;
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
  max-width: 700px;
}

/* Botão */
#section3 .s3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: #ffffff;
  color: #28386F;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#section3 .s3-button:hover {
  transform: translateY(-1px);
  background: #f2f6ff;
  color: #1f6fb5;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

/* Imagem */
#section3 .s3-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#section3 .s3-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
  #section3 .s3-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #section3 .s3-text {
    align-items: center;
    text-align: center;
  }

  #section3 .s3-subtitle {
    max-width: 100%;
  }

  #section3 .s3-button {
    width: auto;
    margin-top: 16px;
  }

  #section3 .s3-image {
    order: -1; /* imagem acima do texto no mobile */
  }
}

/* ===== Section 4 ===== */
#section4 {
  position: relative;
  background: #0d1833; /* fundo escuro consistente com a identidade */
  color: #fff;
}

#section4 .s4-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

#section4 .s4-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* imagem levemente maior à esquerda */
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}

/* ===== Coluna Esquerda ===== */
#section4 .s4-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  min-height: 420px;
}

#section4 .s4-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

/* Badges sobre a imagem */
#section4 .s4-badges {
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none; /* não interfere em cliques da imagem */
}

#section4 .s4-badge {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(12px, 1.6vw, 14px);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* “Vidro” translúcido */
#section4 .s4-badge-glass {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.10)
  );
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* “MBA” sólido azul escuro */
#section4 .s4-badge-solid {
  background: #28386F; /* azul escuro da paleta */
  color: #ffffff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 10px 26px rgba(40,56,111,0.45);
}

#section4 .s4-badge:hover {
  transform: translateY(-1px);
}

/* ===== Coluna Direita ===== */
#section4 .s4-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

#section4 .s4-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(16px, 2.6vw, 28px);
}

#section4 .s4-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
}

#section4 .s4-icon {
  color: #27AAE1; /* azul mais vivo para o ícone */
  display: inline-flex;
  line-height: 0;
  margin-top: 2px;
}

#section4 .s4-text {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  padding-left: 20px;
  color: rgba(255,255,255,0.92);
}

/* ===== Responsividade ===== */
@media (max-width: 1100px) {
  #section4 .s4-grid {
    grid-template-columns: 1fr;
  }

  #section4 .s4-right {
    justify-content: flex-start;
    margin-top: 12px;
  }

  #section4 .s4-media {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  #section4 .s4-inner {
    padding: 28px 16px 48px;
  }

  #section4 .s4-badges {
    left: 12px;
    bottom: 12px;
  }
}

/* ===== Section 5 (Formulário) ===== */
#section5 {
  background: #27AAE1; /* azul mais claro */
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
  text-align: center;
  color: #fff;
}

#section5 .s5-inner {
  max-width: 600px;
  margin: 0 auto;
}

#section5 .s5-title {
  margin-bottom: 24px;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #0d1833;
}

#section5 .s5-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#section5 .s5-form input {
  padding: 14px 16px;
  border-radius: 999px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #fff;
  color: #0d1833;
}

#section5 .s5-form input::placeholder {
  color: rgba(0,0,0,0.45);
}

#section5 .s5-form button {
  padding: 14px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: #0d1833;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

#section5 .s5-form button:hover {
  background: #1f3e8a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

#section5 .s5-success {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}


/* ===== Section 6 ===== */
#section6 {
  background: radial-gradient(1200px 600px at 10% -20%, rgba(64,183,239,0.25), rgba(13,24,51,0) 60%),
              radial-gradient(1200px 600px at 100% 120%, rgba(40,56,111,0.35), rgba(13,24,51,0) 60%),
              #0d1833;
  color: #fff;
}

#section6 .s6-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px);
}

#section6 .s6-title {
  margin: 0 0 clamp(28px, 4vw, 48px);
  text-align: center;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
}

/* Grid de cards */
#section6 .s6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

/* Card */
#section6 .s6-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(8,16,36,0.9) 0%, rgba(21,35,75,0.9) 100%);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Ícone circular “flutuando” no topo */
#section6 .s6-icon {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0d1833;
  background: #003a55;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35), inset 0 2px 6px rgba(255,255,255,0.5);
  border: 3px solid #0d1833; /* “anel” separando do card */
  z-index: 2;
}

/* Imagem */
#section6 .s6-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

#section6 .s6-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.98);
}

/* Corpo do card */
#section6 .s6-body {
  padding: 18px clamp(14px, 2vw, 22px) 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Badge NOVO */
#section6 .s6-badge {
  align-self: flex-start;
  background: #27AAE1;
  color: #0a1228;
  border-radius: 999px;
  font-weight: 900;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 2px solid rgba(255,255,255,0.7);
}

/* Título e data */
#section6 .s6-heading {
  margin: 4px 0 0;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.2;
  color: #73d0ff;
}

#section6 .s6-date {
  margin: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

/* Descrição */
#section6 .s6-desc {
  text-align: justify;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.55;
}

/* Botão CTA */
#section6 .s6-cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 12px 18px;
  background: #28386F;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#section6 .s6-cta:hover {
  transform: translateY(-2px);
  background: #2a4aa0;
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

/* ===== Responsividade ===== */
@media (max-width: 1100px) {
  #section6 .s6-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  #section6 .s6-grid { grid-template-columns: 1fr; }
  #section6 .s6-icon { top: -20px; width: 52px; height: 52px; }
}


/* ===== Section 7 ===== */
#section7 {
  background: #0d1833; /* fundo escuro do site */
  color: #fff;
}

#section7 .s7-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

/* Grade principal: 6 colunas */
#section7 .s7-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.6vw, 16px);
}

/* Cartões base (vidro/azulado) */
#section7 .s7-card {
  background: linear-gradient(180deg, rgba(64,183,239,0.22), rgba(40,56,111,0.28));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  overflow: hidden;
}

/* Título grande */
#section7 .s7-titlecard {
  display: flex;
  align-items: center;
  padding: clamp(16px, 2vw, 22px);
}
#section7 .s7-title {
  margin: 0;
  font-size: clamp(22px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}
#section7 .s7-title span { opacity: 0.9; }

/* Ícone solto (linha 1 col 1) */
#section7 .s7-iconcard {
  display: grid;
  place-items: center;
  color: #ccecff;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

/* Cartões de informação (ícone + textos) */
#section7 .s7-infocard { padding: 14px; }
#section7 .s7-info {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
}
#section7 .s7-info-icon {
  display: grid;
  place-items: center;
  color: #9bdcff;
}
#section7 .s7-info-texts h4 {
  margin: 0 0 4px 0;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 1.3;
}
#section7 .s7-info-texts p {
  margin: 0;
  font-size: clamp(12px, 1.8vw, 14px);
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
}

/* Cartões de imagem */
#section7 .s7-imgcard { padding: 0; }
#section7 .s7-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA full width (linha 6) */
#section7 .s7-cta-wrap {
  background: transparent;
  padding: clamp(8px, 1.4vw, 12px);
}
#section7 .s7-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #ffffff;
  color: #1f3e8a;
  text-decoration: none;
  font-weight: 800;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#section7 .s7-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  background: #f4f7ff;
}

/* ===== Grid spans (mesclas) ===== */

/* Linha 1 */
#section7 .s7-r1c1     { grid-column: 1 / span 1; grid-row: 1; max-height: 82px; }
#section7 .s7-r1c2to6  { grid-column: 2 / span 5; grid-row: 1; min-height: 82px; }

/* Linha 2 */
#section7 .s7-r2c1to2  { grid-column: 1 / span 2; grid-row: 2; min-height: 150px; }
#section7 .s7-r2c3to6  { grid-column: 3 / span 4; grid-row: 2; min-height: 150px; }

/* Linha 3 */
#section7 .s7-r3c1to2  { grid-column: 1 / span 2; grid-row: 3; min-height: 150px; }
#section7 .s7-r3c3to4  { grid-column: 3 / span 2; grid-row: 3; min-height: 150px; }
#section7 .s7-r3c5to6  { grid-column: 5 / span 2; grid-row: 3; min-height: 150px; }

/* Linha 4 */
#section7 .s7-r4c1to4  { grid-column: 1 / span 4; grid-row: 4; min-height: 150px; }
#section7 .s7-r4c5to6  { grid-column: 5 / span 2; grid-row: 4; min-height: 150px; }

/* Linha 5 */
#section7 .s7-r5c1to2  { grid-column: 1 / span 2; grid-row: 5; min-height: 150px; }
#section7 .s7-r5c3to4  { grid-column: 3 / span 2; grid-row: 5; min-height: 150px; }
#section7 .s7-r5c5to6  { grid-column: 5 / span 2; grid-row: 5; min-height: 150px; }

/* Linha 6 */
#section7 .s7-r6c1to6  { grid-column: 1 / span 6; grid-row: 6; }

/* ===== Responsividade ===== */
@media (max-width: 980px) {
  #section7 .s7-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reorganiza as mesclas para 2 colunas */
  #section7 .s7-r1c1     { grid-column: 1 / span 2; }
  #section7 .s7-r1c2to6  { grid-column: 1 / span 2; }

  #section7 .s7-r2c1to2  { grid-column: 1 / span 2; }
  #section7 .s7-r2c3to6  { grid-column: 1 / span 2; }

  #section7 .s7-r3c1to2  { grid-column: 1 / span 2; }
  #section7 .s7-r3c3to4  { grid-column: 1 / span 2; }
  #section7 .s7-r3c5to6  { grid-column: 1 / span 2; }

  #section7 .s7-r4c1to4  { grid-column: 1 / span 2; }
  #section7 .s7-r4c5to6  { grid-column: 1 / span 2; }

  #section7 .s7-r5c1to2  { grid-column: 1 / span 2; }
  #section7 .s7-r5c3to4  { grid-column: 1 / span 2; }
  #section7 .s7-r5c5to6  { grid-column: 1 / span 2; }

  #section7 .s7-r6c1to6  { grid-column: 1 / span 2; }
}
@media (max-width: 560px) {
  #section7 .s7-title { font-size: clamp(22px, 8vw, 34px); }
  #section7 .s7-info { grid-template-columns: 28px 1fr; }
}

/* ===== FIX: sobreposição no mobile (section7) ===== */
@media (max-width: 768px) {
  /* 1) Uma coluna só no mobile */
  #section7 .s7-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 2) Cada card ocupa a linha inteira e zera os grid-row fixos */
  #section7 .s7-grid > .s7-card {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;          /* <-- reseta os grid-row numerados */
    min-height: auto !important;        /* <-- libera a altura */
  }

  /* 3) Imagem não “puxa” altura errada */
  #section7 .s7-imgcard img {
    width: 100%;
    height: auto;                       /* em vez de height: 100% */
    aspect-ratio: 16 / 9;               /* mantém proporção agradável */
    object-fit: cover;
    display: block;
  }

  /* 4) Layout interno dos cards de texto */
  #section7 .s7-info {
    grid-template-columns: 28px 1fr;    /* ícone + texto lado a lado */
  }

  /* 5) Título com respiro no mobile */
  #section7 .s7-titlecard {
    padding: 16px;
  }
}

/* ===== Section 8 ===== */
#section8 {
  background: #27AAE1; /* azul mais claro */
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#section8 .s8-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#section8 .s8-title {
  margin: 0;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6); /* tom mais escuro/translúcido */
}

#section8 .s8-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #0d1833; /* azul escuro */
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

#section8 .s8-button:hover {
  background: #2a4aa0;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  #section8 .s8-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Section 9 ===== */
#section9 {
  background: #0d1833; /* mantém o fundo escuro do site */
  color: #fff;
}

#section9 .s9-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
}

/* Card com vidro/azul e sombra */
#section9 .s9-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(16px, 2vw, 24px);
  background: radial-gradient(120% 120% at 80% 20%, rgba(64,183,239,0.25), rgba(40,56,111,0.25)),
              linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  overflow: hidden;
}

/* Imagem esquerda */
#section9 .s9-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: clamp(10px, 1.5vw, 16px);
}
#section9 .s9-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lado direito */
#section9 .s9-right {
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  justify-content: center;
}

/* Badge/title “COMUNIDADE” */
#section9 .s9-badge-title {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #eaf6ff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 6px 16px rgba(0,0,0,0.25);
}

/* Lista de pontos */
#section9 .s9-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
}
#section9 .s9-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
}
#section9 .s9-icon {
  color: #9bdcff;
  display: inline-flex;
  line-height: 0;
  margin-top: 3px;
}
#section9 .s9-text {
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

/* ===== Responsividade ===== */
@media (max-width: 980px) {
  #section9 .s9-card {
    grid-template-columns: 1fr;
  }
  #section9 .s9-badge-title {
    align-self: center;
  }
  #section9 .s9-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  #section9 .s9-media { margin: 12px; }
  #section9 .s9-right { padding: 16px; }
}
/* ===== Section 10 (Final) ===== */
#section10 {
  position: relative;
  min-height: 100vh;
  background: url("https://www.yt.ia.br/sharktankschool/img/fundocarol.png") center / cover no-repeat; /* troque pelo seu arquivo */
  color: #ffffff;
  isolation: isolate;
}

/* overlay suave para leitura */
#section10::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,18,40,0.6) 45%, rgba(10,18,40,0.85) 100%);
  z-index: -1;
}

#section10 .s10-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px) clamp(40px, 8vw, 100px);
  min-height: 100vh;

  /* começa o conteúdo da metade para baixo */
  display: grid;
  align-content: end;
  text-align: center;
  gap: clamp(14px, 2.4vw, 22px);
  padding-top: 50vh;
}

#section10 .s10-subtitle {
  text-align: justify;
  margin: 0;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.6;
  text-wrap: pretty;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

#section10 .s10-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 0;
  padding: 12px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0d1833;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1.5px solid rgba(255,255,255,0.85);
}
#section10 .s10-cta-white:hover {
  transform: translateY(-2px);
  background: #f4f7ff;
  color: #1f3e8a;
}

#section10 .s10-logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  display: block;
  margin: clamp(10px, 2.6vw, 22px) auto 0;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

#section10 .s10-copy {
  display: block;
  margin-top: 4px;
  opacity: 0.9;
  font-size: 12px;
  letter-spacing: 0.2px;
}

#section10 .s10-cta-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: clamp(10px, 2.4vw, 20px) auto 0;
  padding: 12px 26px;
  border-radius: 999px;
  background: #27AAE1;     /* azul mais claro para contraste com fundo escuro */
  color: #0d1833;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1.5px solid rgba(255,255,255,0.75);
}
#section10 .s10-cta-blue:hover {
  transform: translateY(-2px);
  background: #40b7ef;
}

/* Responsividade */
@media (max-width: 768px) {
  #section10 .s10-inner { padding: 0 16px 48px; padding-top: 52vh; }
  #section10 .s10-cta-white, #section10 .s10-cta-blue { width: 100%; }
}

/* ===== Section 11 (Redes Sociais) ===== */
#section11 {
  background: #0d1833; /* mantém a identidade escura */
  color: #fff;
}

#section11 .s11-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 48px);
  text-align: center;
}

#section11 .s11-title {
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-size: clamp(20px, 3.6vw, 34px);
  font-weight: 800;
}

#section11 .s11-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
}

#section11 .s11-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #eaf6ff;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#section11 .s11-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.45);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

#section11 .s11-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

#section11 .s11-handle {
  font-weight: 800;
  font-size: 14px;
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 600px) {
  #section11 .s11-btn { justify-content: center; }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}


  /* Reset básico */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Container da faixa */
  .faixa-marquee {
    width: 100%;
    background: #FFD500;        /* fundo amarelo */
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;          /* usa rem para ser responsivo */
  }

  /* Área que desliza */
  .faixa-marquee__conteudo {
    display: inline-block;
    white-space: nowrap;
    animation: deslizar 12s linear infinite;
  }

  /* Texto */
  .faixa-marquee__texto {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.15em;
    /* Responsivo: mínimo 0.9rem, máximo 2.2rem, varia com a largura */
    font-size: clamp(0.9rem, 4vw, 2.2rem);
    padding-right: 2rem;
  }

  /* Animação marquee */
  @keyframes deslizar {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Ajustes finos para telas muito pequenas */
  @media (max-width: 480px) {
    .faixa-marquee {
      padding: 0.4rem 0;
    }
    .faixa-marquee__texto {
      letter-spacing: 0.1em;
      padding-right: 1.2rem;
    }
  }
