/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    background: #0b0614;
    color: #e5e7eb;
    padding: 40px 20px;
  }
  
  /* HERO */
  .hero {
    text-align: center;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 56px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 20px;
    opacity: 0.9;
  }
  
  .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #6200ff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
    box-shadow: #6200ff;
  }
  
  /* SECTIONS */
  .section {
    max-width: 1000px;
    margin: 80px auto;
    text-align: center;
  }
  
  .section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .section p {
    font-size: 18px;
    opacity: 0.9;
  }
  
  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .card {
    background: #1e293b;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    margin-top: 100px;
    font-size: 14px;
    opacity: 0.6;
  }
  
  /* ANIMAÇÕES */
  .fade {
    opacity: 0;
    transform: translateY(40px);
  }
  
  .fade.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;
  }
  
  /* RESPONSIVO */
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 40px;
    }
  
    .section h2 {
      font-size: 28px;
    }
  }
  /* PALETA */
:root {
    --bg: #05050a;
    --neon: #8b5cf6;
    --neon-soft: rgba(139, 92, 246, 0.35);
    --card-bg: #0b0b14;
  }
  

  
  /* TITULOS */
  h1, h2, h3 {
    color: #fff;
  }
  
  .section h2 {
    color: var(--neon);
  }
  
  /* SLIDER */
  .slider-wrapper {
  position: relative;
  overflow: hidden;
  }
  
  .slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite;
  }
  
  .slider:hover {
    animation-play-state: paused;
  }
  .slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(10, 5, 20, 1),
    rgba(10, 5, 20, 0)
  );
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(10, 5, 20, 1),
    rgba(10, 5, 20, 0)
  );
}
  /* CARD */
  .project-card {
    min-width: 260px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 25px var(--neon-soft);
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--neon);
  }
  
  .project-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
  }
  
  .project-card h3 {
    color: var(--neon);
    margin-bottom: 8px;
  }
  
  .project-card p {
    font-size: 14px;
    opacity: 0.85;
  }
  
  /* ANIMAÇÃO */
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  .video-grid {
      display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
  }
  @media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
  /* CAIXA */
  .video-box {
    max-width: 260px;
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transition: box-shadow 0.3s ease;
  }
  
  .video-box:hover {
    box-shadow: 0 0 45px rgba(139, 92, 246, 0.45);
  }
  
  /* VIDEO */
  .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.25);
    transition: transform 0.6s ease;
  }
  
  /* HOVER */
  .video-box:hover video {
    transform: scale(1);
  }
  .card {
    position: relative;
    background: rgba(20, 20, 30, 0.9);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    transition: 
      transform 0.35s ease,
      box-shadow 0.35s ease;
    overflow: hidden;
  }
  
  /* brilho atrás */
  .card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(
      circle at top,
      rgba(140, 80, 255, 0.45),
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
  }
  
  /* HOVER */
  .card:hover {
    transform: scale(1.06);
    box-shadow:
      0 0 25px rgba(140, 80, 255, 0.6),
      0 0 60px rgba(140, 80, 255, 0.3);
  }
  
  .card:hover::before {
    opacity: 1;
  }

  h2, h3 {
    text-shadow:
      0 0 10px rgba(140, 80, 255, 0.4);
  }
  .reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(6px);
    transition:
      opacity 0.8s ease,
      transform 0.8s ease,
      filter 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .fade-in {
    animation: fadeUp 1s ease forwards;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto;
  }
  
  .video-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-card:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.678);
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  


  
  #chat-bot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #7f00ff;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(127,0,255,.6);
  z-index: 9999;
}
#chat-bot-button {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
#chat-bot-button:hover {
  transform: scale(1.08);
  background: #9a2bff; /* roxo mais vivo */
  box-shadow: 
    0 0 25px rgba(154,43,255,0.8),
    0 0 45px rgba(154,43,255,0.6);
}

/* Chat */
#chat-bot {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-height: 520px;
  background: #111;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 25px rgba(127,0,255,.4);
  z-index: 9999;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Header */
.chat-header {
  background: #7f00ff;
  color: #fff;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

/* Body */
.chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mensagens */
.msg {
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  max-width: 85%;
}

.bot {
  background: #222;
  color: #fff;
  align-self: flex-start;
}

.user {
  background: #7f00ff;
  color: #fff;
  align-self: flex-end;
}

/* Opções */
.chat-options {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid #222;
}

.chat-option {
  background: transparent;
  border: 1px solid #7f00ff;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  font-size: 13px;
}

.chat-option:hover {
  background: #7f00ff;
}

/* Mobile */
@media (max-width: 480px) {
  #chat-bot {
    width: 95%;
    right: 2.5%;
    bottom: 80px;
  }
}
.framer-overlay,
[data-framer-component] {
  pointer-events: none;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: #000;
  transition: transform 0.4s ease;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* Hover: cresce o card + zoom suave no vídeo */
.video-card:hover {
  transform: scale(1.2);
  z-index: 2;
}

.video-card:hover video {
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.icon-75 {
  width: 85px;
  height: 85px;
  object-fit: contain;
}
.video-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto;
  }
  
  .video-card1 {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .video-card1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-card1:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 0 50px rgb(20, 173, 0);
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .video-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto;
  }
  
  .video-card2 {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .video-card2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .video-card2:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 0 50px rgb(255, 166, 0);
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  body {
  margin: 0;
  min-height: 100vh;
  background: #0b0614; /* seu bg atual */
  position: relative;
  overflow-x: hidden;
}

/* imagem por cima com opacidade */
body::before {

  content: "";
  position: fixed;
  inset: 0;
  background-image: url("imagens/eu.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.03; /* ajuste aqui até ficar do seu gosto */
  z-index: 0;
  pointer-events: none; /* não bloqueia clique */
 
}


/* garante que o conteúdo fique acima */
main, section, header, footer, div {
  position: relative;
  z-index: 1;
}
.menu-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 999;
}

/* Botão */
.menu-button {
  width: 48px;
  height: 48px;
  background: #7f00ff;
  color: #fff;
  font-size: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Menu oculto */
.side-menu {
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
  border-radius: 8px;
  padding: 60px 20px 20px;
  width: 200px;
  backdrop-filter: blur(10px);
  background: rgba(17,17,17,0.9);
  transform: translateX(-110%);
  transition: transform 0.3s ease;
}

/* Links */
.side-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
  
}

.side-menu a:hover {
  color: #9b4dff;
  
}

/* Hover ativa o menu */
.menu-container:hover .side-menu {
  transform: translateX(0);
  
}
.menu-container:hover {
  box-shadow:
    0 0 15px rgba(130, 5, 255, 0.6),
    0 0 40px rgba(127, 0, 255, 0.9);
}

.rocket-left {
  position: absolute;
  left: 112px;          /* faixa esquerda */
  bottom: 90px;
  pointer-events: none;
  z-index: 1;
}

.rocket-left img {
  width: 120px;     /* ajuste fino aqui */
  opacity: 1;
  transform-origin: center;
  animation:
    rocketFloat 8s ease-in-out infinite,
    rocketShake 0.35s ease-in-out infinite,
    rocketGlow 3s ease-in-out infinite;
}

/* Flutuação suave (vida) */
@keyframes rocketFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

/* Tremor sutil (energia) */
@keyframes rocketShake {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(1px, -1px); }
  50%  { transform: translate(-1px, 1px); }
  75%  { transform: translate(1px, 1px); }
  100% { transform: translate(0, 0); }
}

/* Glow pulsante (motor ativo) */
@keyframes rocketGlow {
  0%,100% {
    filter: drop-shadow(0 0 18px rgba(92, 0, 92, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 34px rgba(190,0,255,0.75));
  }
}
.destination-card {
  position: absolute;
 left: 3%;
  transform: translateX(-90%);
  bottom: 40%;
  width: 280px;
  padding: 26px;
  background: rgba(20, 10, 35, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(140,0,255,0.45);
  box-shadow: 0 0 35px rgba(140,0,255,0.35);
  z-index: 2;
  animation: destinationFloat 7s ease-in-out infinite;
}

@keyframes destinationFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}
.destination-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c084ff;
}

.destination-card h3 {
  margin: 10px 0 18px;
  font-size: 22px;
}

.destination-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.destination-card li {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.destination-card strong {
  color: #d86bff;
}
.destination-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7f00ff, #b300ff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.destination-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(160,0,255,0.8);
}
@media (max-width: 768px) {
  .destination-card {
    display: none;
  }
}
.destination-card::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 50%;
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(140,0,255,0.6));
}
.contact-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #9f5bff;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 0 30px rgba(127, 0, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(127, 0, 255, 0.35);
}

.contact-card h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
}

.contact-card span {
   font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}
.contact-card::after{
  
}
.contact-card {
  cursor: pointer;
}
.title-wrapper {
  position: relative;
  display: inline-block;
}

.title-wrapper h3 {
  font-size: 1.8rem;
  color: #fff;
}

/* foguete/lua */
.floating-moon {
  position: absolute;
  right: -40px;   /* distância do texto */
  top: 30%;
  transform: translateY(-50%);
  width: 74px;  /* ajuste conforme quiser */
  pointer-events: none; /* não atrapalha cliques */
  animation: zeroGravity 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(127, 0, 255, 0.6));
}

@keyframes zeroGravity {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-60%) translateX(4px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.floating-astronaut {
  position: absolute;
  right: -40px;        /* distância da borda direita */
  top: 30%;
  transform: translateY(-50%);
  width: 140px;        /* ajuste conforme o visual */
  opacity: 0.25;       /* sensação de profundidade */
  pointer-events: none;
  animation: astronautFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(127, 0, 255, 0.35));
}

/* animação de gravidade zero */
@keyframes astronautFloat {
  0% {
    transform: translateY(-50%) rotate(-2deg);
  }
  50% {
    transform: translateY(-58%) rotate(2deg);
  }
  100% {
    transform: translateY(-50%) rotate(-2deg);
  }
}
/* botão */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 999;
}

/* menu */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #12001f, #090012);
  box-shadow: 0 0 30px rgba(127,0,255,0.4);
  transform: translateX(-100%);
  transition: 0.6s cubic-bezier(.77,0,.18,1);
  z-index: 1000;
  padding-top: 120px;
  
}

/* lista */
.side-menu ul {
  list-style: none;
  padding: 0 40px;
}

.side-menu li {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.6s ease;
}

/* links */
.side-menu a {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 1px;
}

/* linha animada */
.side-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #7f00ff;
  transition: 0.4s;
  
}

.side-menu a:hover::after {
  width: 100%;
}

/* ESTADO ATIVO */
.side-menu.active {
  transform: translateX(0);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* animação em cascata */
.side-menu.active li:nth-child(1) { transition-delay: 0.2s; opacity: 1; transform: translateX(0); }
.side-menu.active li:nth-child(2) { transition-delay: 0.35s; opacity: 1; transform: translateX(0); }
.side-menu.active li:nth-child(3) { transition-delay: 0.5s; opacity: 1; transform: translateX(0); }
.side-menu.active li:nth-child(4) { transition-delay: 0.65s; opacity: 1; transform: translateX(0); }
.planet-bg {
  position: fixed;
  top: 25%;
  right: -300px;
  width: 260px;
  height: 260px;
  z-index: 0;
  pointer-events: none;
  animation: planeta-move 55s linear infinite;
  opacity: 15%;
}

/* imagem normal */
.planet-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* overlay roxo escuro */
.planet-overlay {
  position: absolute;
  inset: 0;
 
  
  pointer-events: none;
}
@keyframes planeta-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-140vw);
  }
}