/* FUNDO GALÁCTICO */
.galactic-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: #000;
}

/* Desativa elementos animados pesados */
#stars-container,
.comet,
.rocket {
  display: none;
}
/* Nebulosa */
.nebuloza {
  position: absolute;
  top: 50%;
  left: 20%;

  width: auto; /* controla o tamanho real */
  max-width: 40vw; /* responsivo */
  height: auto;

  transform: translate(-50%, -50%);
  opacity: 0.55;
  filter: blur(6px);
  z-index: 1;
}

.nebuloza-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ESTRELAS */
.star {
  position: absolute;
  background: #ffffff;
  border-radius: 100%;
  animation: twinkle 3s infinite alternate;
  opacity: 30;
}

.star.small {
  width: 2px;
  height: 2px;
}
.star.medium {
  width: 3px;
  height: 3px;
}
.star.large {
  width: 4px;
  height: 4px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes twinkle {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

/* PLANETAS */
.lua {
  position: absolute;
  top: 18%;
  right: 12%;

  width: 260px;
  height: 260px;

  z-index: 2;
  opacity: 0.65;

  animation: float 30s ease-in-out infinite;
}

.lua-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}

/* GALÁXIA */
.galaxy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  animation: spin 60s linear infinite;
}

.galaxy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.35),
    transparent 70%
  );
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* FOGUETE */

.rocket {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 150px;
  height: 80px;
  transform: translateX(-50%);
  animation: rocketFly 18s linear infinite;
}

.rocket-body {
  width: 40px;
  height: 60px;
  background: linear-gradient(to bottom, #005ca8, #005284);
  border-radius: 20px 20px 6px 6px;
  box-shadow: 0 0 20px rgba(27, 205, 185, 0.6);
  position: relative;
}

.rocket-window {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #005284;
}

.rocket-wing {
  position: absolute;
  bottom: 10px;
  width: 14px;
  height: 22px;
  background: #1bcdb9;
}

.rocket-wing.left {
  left: -14px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.rocket-wing.right {
  right: -14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.rocket-flame {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 28px;
  background: linear-gradient(
    to bottom,
    rgba(27, 205, 185, 0.9),
    rgba(13, 170, 151, 0.6),
    transparent
  );
  border-radius: 50%;
  filter: blur(2px);
  animation: flame 0.2s infinite alternate;
}

@keyframes flame {
  from {
    transform: translateX(-50%) scaleY(1);
  }
  to {
    transform: translateX(-50%) scaleY(1.2);
  }
}

@keyframes rocketFly {
  0% {
    bottom: -25%;
  }
  100% {
    bottom: 120%;
  }
}

/* CONTEÚDO EXEMPLO */
.content {
  position: relative;
  z-index: 2;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Adicione esta section no INÍCIO do seu arquivo CSS original */

/* TEMA ORIGINAL (padrão) */
:root,
body.theme-original {
  --primary: #111f44;
  --secondary: #cfcdc7;
  --accent: #0180ff;
  --text: #cfcdc7;
  --text-light: #a8a6a0;
  --border: #2a3a5a;
  --bg-dark: #0a0a0a;
}

/* TEMA AZUL CORPORATIVO - Inspirado na imagem */
body.theme-corporate-blue {
  --primary: #005ca8;
  --secondary: #1bcdb9;
  --accent: #1bcdb9;
  --text: #ffffff;
  --text-light: #e0f2f7;
  --border: #0a6ba8;
  --bg-dark: #005284;
}

body.theme-corporate-blue .animated-bg {
  background: linear-gradient(180deg, #004a6e 0%, #005ca8 50%, #006dbb 100%);
}

body.theme-corporate-blue .bg-layer {
  background: transparent;
}

body.theme-corporate-blue .cube-3d:nth-child(1) .cube-face {
  border-color: #1bcdb9;
  background: rgba(27, 205, 185, 0.15);
}

body.theme-corporate-blue .cube-3d:nth-child(2) .cube-face {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

body.theme-corporate-blue .cube-3d:nth-child(3) .cube-face {
  border-color: #1bcdb9;
  background: rgba(27, 205, 185, 0.1);
}

body.theme-corporate-blue .wave-line {
  background: linear-gradient(90deg, transparent, #1bcdb9, transparent);
}

body.theme-corporate-blue .glow-orb:nth-child(7) {
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.4) 0%,
    transparent 70%
  );
}

body.theme-corporate-blue .glow-orb:nth-child(8) {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
}

body.theme-corporate-blue .glow-orb:nth-child(9) {
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.25) 0%,
    transparent 70%
  );
}

body.theme-corporate-blue header {
  background: rgba(0, 74, 110, 0.95);
  border-bottom: 1px solid #1bcdb9;
}

body.theme-corporate-blue .hero {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 132, 0.6),
    rgba(27, 205, 185, 0.3)
  );
}

body.theme-corporate-blue .hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #1bcdb9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-corporate-blue section {
  background: rgba(0, 74, 110, 0.3);
}

body.theme-corporate-blue .feature-card,
body.theme-corporate-blue .pricing-card,
body.theme-corporate-blue .testimonial-card,
body.theme-corporate-blue .faq-item,
body.theme-corporate-blue .project-card {
  background: rgba(0, 92, 168, 0.4);
  border-color: #0a6ba8;
}

body.theme-corporate-blue .feature-card:hover,
body.theme-corporate-blue .pricing-card:hover,
body.theme-corporate-blue .project-card:hover {
  border-color: #1bcdb9;
  box-shadow: 0 15px 35px rgba(27, 205, 185, 0.3);
}

body.theme-corporate-blue .cta-btn {
  background: #1bcdb9;
  box-shadow: 0 0 20px rgba(27, 205, 185, 0.4);
}

body.theme-corporate-blue .cta-btn:hover {
  box-shadow: 0 0 30px rgba(27, 205, 185, 0.6);
}

body.theme-corporate-blue .bhag-banner {
  background: linear-gradient(135deg, #005284, #1bcdb9);
}

body.theme-corporate-blue footer {
  background: rgba(0, 58, 87, 0.95);
  border-top: 1px solid #1bcdb9;
}

/* TEMA TURQUESA CORPORATIVO - Inspirado na imagem */
body.theme-corporate-teal {
  --primary: #0daa97;
  --secondary: #005ca8;
  --accent: #1bcdb9;
  --text: #ffffff;
  --text-light: #e0f7f4;
  --border: #0bc4af;
  --bg-dark: #0a8575;
}

body.theme-corporate-teal .animated-bg {
  background: linear-gradient(180deg, #087768 0%, #0daa97 50%, #0fc5b0 100%);
}

body.theme-corporate-teal .bg-layer {
  background: transparent;
}

body.theme-corporate-teal .cube-3d:nth-child(1) .cube-face {
  border-color: #1bcdb9;
  background: rgba(27, 205, 185, 0.2);
}

body.theme-corporate-teal .cube-3d:nth-child(2) .cube-face {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body.theme-corporate-teal .cube-3d:nth-child(3) .cube-face {
  border-color: #005ca8;
  background: rgba(0, 92, 168, 0.15);
}

body.theme-corporate-teal .wave-line {
  background: linear-gradient(90deg, transparent, #1bcdb9, transparent);
}

body.theme-corporate-teal .glow-orb:nth-child(7) {
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.5) 0%,
    transparent 70%
  );
}

body.theme-corporate-teal .glow-orb:nth-child(8) {
  background: radial-gradient(
    circle,
    rgba(0, 92, 168, 0.3) 0%,
    transparent 70%
  );
}

body.theme-corporate-teal .glow-orb:nth-child(9) {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
}

body.theme-corporate-teal header {
  background: rgba(8, 119, 104, 0.95);
  border-bottom: 1px solid #1bcdb9;
}

body.theme-corporate-teal .hero {
  background: linear-gradient(
    135deg,
    rgba(13, 170, 151, 0.6),
    rgba(27, 205, 185, 0.4)
  );
}

body.theme-corporate-teal .hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #1bcdb9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-corporate-teal section {
  background: rgba(8, 119, 104, 0.3);
}

body.theme-corporate-teal .feature-card,
body.theme-corporate-teal .pricing-card,
body.theme-corporate-teal .testimonial-card,
body.theme-corporate-teal .faq-item,
body.theme-corporate-teal .project-card {
  background: rgba(13, 170, 151, 0.4);
  border-color: #0bc4af;
}

body.theme-corporate-teal .feature-card:hover,
body.theme-corporate-teal .pricing-card:hover,
body.theme-corporate-teal .project-card:hover {
  border-color: #1bcdb9;
  box-shadow: 0 15px 35px rgba(27, 205, 185, 0.4);
}

body.theme-corporate-teal .cta-btn {
  background: #1bcdb9;
  box-shadow: 0 0 20px rgba(27, 205, 185, 0.4);
}

body.theme-corporate-teal .cta-btn:hover {
  box-shadow: 0 0 30px rgba(27, 205, 185, 0.6);
}

body.theme-corporate-teal .bhag-banner {
  background: linear-gradient(135deg, #0daa97, #005ca8);
}

body.theme-corporate-teal footer {
  background: rgba(6, 88, 78, 0.95);
  border-top: 1px solid #1bcdb9;
}

/* TEMA DARK PROFISSIONAL */
body.theme-dark-pro {
  --primary: #005284;
  --secondary: #0daa97;
  --accent: #1bcdb9;
  --text: #ffffff;
  --text-light: #b0b0b0;
  --border: #005ca8;
  --bg-dark: #000000;
}

body.theme-dark-pro .animated-bg {
  background: #000000;
}

body.theme-dark-pro .cube-3d:nth-child(1) .cube-face {
  border-color: #005284;
  background: rgba(0, 82, 132, 0.15);
}

body.theme-dark-pro .cube-3d:nth-child(2) .cube-face {
  border-color: #1bcdb9;
  background: rgba(27, 205, 185, 0.15);
}

body.theme-dark-pro .wave-line {
  background: linear-gradient(90deg, transparent, #1bcdb9, transparent);
}

body.theme-dark-pro .glow-orb:nth-child(7) {
  background: radial-gradient(
    circle,
    rgba(0, 82, 132, 0.4) 0%,
    transparent 70%
  );
}

body.theme-dark-pro .glow-orb:nth-child(8) {
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.3) 0%,
    transparent 70%
  );
}

body.theme-dark-pro header {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #005ca8;
}

body.theme-dark-pro .hero {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 132, 0.3),
    rgba(27, 205, 185, 0.2)
  );
}

body.theme-dark-pro .hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #1bcdb9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-dark-pro section {
  background: rgba(0, 0, 0, 0.5);
}

body.theme-dark-pro .feature-card,
body.theme-dark-pro .pricing-card,
body.theme-dark-pro .testimonial-card,
body.theme-dark-pro .faq-item,
body.theme-dark-pro .project-card {
  background: rgba(0, 82, 132, 0.3);
  border-color: #005ca8;
}

body.theme-dark-pro .feature-card:hover,
body.theme-dark-pro .pricing-card:hover,
body.theme-dark-pro .project-card:hover {
  border-color: #1bcdb9;
  box-shadow: 0 15px 35px rgba(27, 205, 185, 0.3);
}

body.theme-dark-pro .cta-btn {
  background: #1bcdb9;
  box-shadow: 0 0 20px rgba(27, 205, 185, 0.3);
}

body.theme-dark-pro .bhag-banner {
  background: linear-gradient(135deg, #005284, #0daa97);
}

body.theme-dark-pro footer {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid #005ca8;
}

/* TEMA GRADIENTE MODERNO */
body.theme-gradient-modern {
  --primary: #005284;
  --secondary: #1bcdb9;
  --accent: #0daa97;
  --text: #003d5c;
  --text-light: #c4edff;
  --border: #1bcdb9;
  --bg-dark: #e8f4f8;
}

body.theme-gradient-modern .animated-bg {
  background: linear-gradient(
    180deg,
    #e8f4f8 0%,
    #cfe9f3 30%,
    #b8e0ee 60%,
    #a8dae9 100%
  );
}

body.theme-gradient-modern .cube-3d:nth-child(1) .cube-face {
  border-color: #005284;
  background: rgba(0, 82, 132, 0.1);
}

body.theme-gradient-modern .cube-3d:nth-child(2) .cube-face {
  border-color: #0daa97;
  background: rgba(13, 170, 151, 0.1);
}

body.theme-gradient-modern .cube-3d:nth-child(3) .cube-face {
  border-color: #1bcdb9;
  background: rgba(27, 205, 185, 0.1);
}

body.theme-gradient-modern .wave-line {
  background: linear-gradient(90deg, transparent, #0daa97, transparent);
}

body.theme-gradient-modern .glow-orb:nth-child(7) {
  background: radial-gradient(
    circle,
    rgba(0, 82, 132, 0.2) 0%,
    transparent 70%
  );
}

body.theme-gradient-modern .glow-orb:nth-child(8) {
  background: radial-gradient(
    circle,
    rgba(27, 205, 185, 0.2) 0%,
    transparent 70%
  );
}

body.theme-gradient-modern header {
  background: rgba(232, 244, 248, 0.95);
  border-bottom: 1px solid #cff1ed;
}

body.theme-gradient-modern .hero {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 132, 0.1),
    rgba(27, 205, 185, 0.15)
  );
}

body.theme-gradient-modern .hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #86b4f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.theme-gradient-modern section {
  background: rgba(255, 255, 255, 0.6);
}

body.theme-gradient-modern .feature-card,
body.theme-gradient-modern .pricing-card,
body.theme-gradient-modern .testimonial-card,
body.theme-gradient-modern .faq-item,
body.theme-gradient-modern .project-card {
  background: linear-gradient(
    135deg,
    rgba(0, 82, 132, 0.05),
    rgba(27, 205, 185, 0.08)
  );
  border-color: #1bcdb9;
}

body.theme-gradient-modern .feature-card:hover,
body.theme-gradient-modern .pricing-card:hover,
body.theme-gradient-modern .project-card:hover {
  border-color: #0daa97;
  box-shadow: 0 15px 35px rgba(13, 170, 151, 0.3);
}

body.theme-gradient-modern .cta-btn {
  background: #0daa97;
  box-shadow: 0 0 20px rgba(13, 170, 151, 0.3);
}

body.theme-gradient-modern .bhag-banner {
  background: linear-gradient(135deg, #005284, #1bcdb9);
}

body.theme-gradient-modern footer {
  background: rgba(207, 233, 243, 0.95);
  border-top: 1px solid #1bcdb9;
}

/* Seletor de Temas - Barra Fixa */
.theme-selector-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  z-index: 10000;
  border-bottom: 2px solid #333;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.theme-selector-bar h3 {
  color: #fff;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  font-weight: 600;
}

.theme-option-btn {
  padding: 0.5rem 1rem;
  border: 2px solid;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
  color: #fff;
}

.theme-option-btn.active {
  transform: scale(1.05);
  box-shadow: 0 0 15px currentColor;
}

.theme-option-btn:hover {
  transform: translateY(-2px);
}

.theme-option-btn.original {
  border-color: #0180ff;
  color: #0180ff;
}

.theme-option-btn.corporate-blue {
  border-color: #005ca8;
  color: #005ca8;
}

.theme-option-btn.corporate-teal {
  border-color: #1bcdb9;
  color: #1bcdb9;
}

.theme-option-btn.dark-pro {
  border-color: #0daa97;
  color: #0daa97;
}

.theme-option-btn.gradient-modern {
  border-color: #005284;
  color: #005284;
}


body.with-theme-selector .hero {
  margin-top: 140px;
}

@media (max-width: 768px) {
  .theme-selector-bar {
    padding: 0.6rem 1rem;
  }

  .theme-option-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
  }

  .theme-selector-bar h3 {
    font-size: 0.75rem;
  }
}

/* ===== AGORA COLE TODO O SEU CSS ORIGINAL ABAIXO DESTA LINHA ===== */
/* Seu CSS original começa aqui... */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #111f44;
  --secondary: #cfcdc7;
  --accent: #0180ff;
  --text: #cfcdc7;
  --text-light: #a8a6a0;
  --border: #2a3a5a;
  --bg-dark: #0a0a0a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  background: var(--bg-dark);
}

/* Animated 3D Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
  perspective: 1000px;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Floating 3D Cubes */
.cube-3d {
  position: absolute;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotate3d 20s infinite linear;
}

.cube-3d:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-duration: 15s;
}

.cube-3d:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.cube-3d:nth-child(3) {
  bottom: 15%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: -10s;
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid;
  opacity: 0.15;
  backdrop-filter: blur(2px);
}

.cube-3d:nth-child(1) .cube-face {
  border-color: #111f44;
  background: rgba(17, 31, 68, 0.1);
}
.cube-3d:nth-child(2) .cube-face {
  border-color: #0180ff;
  background: rgba(1, 128, 255, 0.1);
}
.cube-3d:nth-child(3) .cube-face {
  border-color: #cfcdc7;
  background: rgba(207, 205, 199, 0.05);
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(100px);
}
.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(100px);
}
.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(100px);
}
.cube-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(100px);
}
.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(100px);
}
.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(100px);
}

/* Animated Waves */
.wave-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  animation: wave-move 15s ease-in-out infinite;
}

.wave-line:nth-child(4) {
  top: 20%;
  animation-delay: 0s;
}

.wave-line:nth-child(5) {
  top: 50%;
  animation-delay: -5s;
}

.wave-line:nth-child(6) {
  top: 80%;
  animation-delay: -10s;
}

/* Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 20s ease-in-out infinite;
}

.glow-orb:nth-child(7) {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(17, 31, 68, 0.4) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.glow-orb:nth-child(8) {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(1, 128, 255, 0.3) 0%,
    transparent 70%
  );
  bottom: -150px;
  right: -150px;
  animation-delay: -7s;
}
.instagram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
}
.download-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #f5f5f5;
  border-radius: 8px;
  border-color: #087768;
}

.download-item span {
  font-weight: 500;
}

.download-btn {
  background: #007bff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

.download-btn:hover {
  background: #0056b3;
}

.download-item span {
    color:#333
}


.glow-orb:nth-child(9) {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(207, 205, 199, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

/* Grid Lines 3D */
.grid-3d {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(1, 128, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(1, 128, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  transform: rotateX(60deg) translateZ(-200px);
  animation: grid-scroll 20s linear infinite;
}

@keyframes rotate3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}

@keyframes wave-move {
  0%,
  100% {
    transform: translateX(-100%) scaleY(1);
  }
  50% {
    transform: translateX(100%) scaleY(2);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(150px, -100px) scale(1.2);
  }
  66% {
    transform: translate(-150px, 100px) scale(0.8);
  }
}

@keyframes grid-scroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 30px;
  margin-right: 16px;
  vertical-align: middle;
  font-weight: bold;
}

.logo-img {
  height: 30px;
  margin-right: 16px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}
.submit {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(1, 128, 255, 0.3);
}

.submit-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(1, 128, 255, 0.3);
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(1, 128, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(1, 128, 255, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 6rem 2rem;
  text-align: center;
  background: rgba(17, 31, 68, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #cfcdc7 0%, #0180ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero video {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(1, 128, 255, 0.3);
  width: min(420px, 90vw);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.trusted {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Sections */
section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(5px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(17, 31, 68, 0.4);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-card .cta-btn {
  align-self: flex-start;
  margin: auto;
  margin-top: 0.5rem;
}

.feature-img {
  flex-shrink: 0;
  border-radius: 12px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(1, 128, 255, 0.2);
  border-color: var(--accent);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  padding-top: 120px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background: rgba(17, 31, 68, 0.4);
  border: 1px solid var(--border);
}

.project-card:hover {
  padding-top: 120px;
  transform: scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(1, 128, 255, 0.3);
}

.project-card .card-content {
  display: flex;
  gap: 20px; /* espaço entre imagem e texto */
  align-items: flex-start;
  flex-wrap: wrap; /* garante que em telas pequenas, o texto vá para baixo da imagem */
}

.project-card .card-img {
  width: 300px; /* ajuste conforme necessário */
  height: auto;
  border-radius: 8px;
}

.project-card .card-text {
  flex: 1; /* ocupa o restante do espaço */
}

.project-img {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Testimonials Carousel */
.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 0;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 400px;
  background: rgba(17, 31, 68, 0.5);
  padding: 2rem;
  border-radius: 16px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--accent);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 16px;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: rgba(17, 31, 68, 0.5);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: border 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(1, 128, 255, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(
    135deg,
    rgba(1, 128, 255, 0.3) 0%,
    rgba(17, 31, 68, 0.6) 100%
  );
  border-color: var(--accent);
  color: white;
}

.plan-name {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price span {
  font-size: 1.2rem;
  font-weight: 400;
}

.plan-description {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .plan-features li {
  border-color: rgba(255, 255, 255, 0.2);
}

.subscribe-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured .subscribe-btn {
  background: white;
  color: var(--primary);
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(1, 128, 255, 0.5);
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(17, 31, 68, 0.5);
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  color: var(--text);
}

.faq-question:hover {
  background: rgba(1, 128, 255, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(1, 128, 255, 0.3) 0%,
    rgba(17, 31, 68, 0.5) 100%
  );
  color: white;
  border-top: 1px solid var(--border);
}

.footer-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.95);
  color: var(--secondary);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.footer-col p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

#projects {
  padding: 4rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.project-media {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.project-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-btn {
  margin-top: auto;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #5a67d8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

#carrocel {
  max-width: 100%;
  width: 100vw;
  margin: 0;
  padding: 4rem 0;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: dreamScroll 200s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.carousel-item {
  flex: 0 0 auto;
  width: 220px;
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-item h3 {
  margin-top: 0.6rem;
  font-size: 1rem;
}

.carousel-item span {
  font-size: 0.85rem;
  opacity: 0.7;
}
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  display: block;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;

  background: linear-gradient(145deg, #000, #444);
  color: #e0e0e0;

  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;

  fill: currentColor;
  flex-shrink: 0;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(230, 230, 230, 0.35);
}

.instagram-btn:active {
  transform: translateY(0);
}

/* ===== BHAG BANNER ===== */
.bhag-banner {
  background: linear-gradient(135deg, #0a1628, #1a2942);
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.bhag-banner .left-section {
  z-index: 1;
}

.bhag-banner .right-section {
  z-index: 1;
}

.bhag-banner .somos {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
}

.bhag-banner .galaticos {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
}

.bhag-banner .subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #8da9c4;
  letter-spacing: 3px;
}

.bhag-banner .info-box {
  background: linear-gradient(135deg, #1e5aa8, #2b7de9);
  border: 2px solid #4a9aff;
  border-radius: 8px;
  padding: 18px 28px;
  max-width: 320px;
}

.bhag-banner .bhag-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.bhag-banner .main-text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

/* ===== INSTAGRAM BUTTON ===== */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #000, #444);
  olor: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.instagram-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes dreamScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pausa ao passar o mouse */
.carousel-track:hover {
  animation-play-state: paused;
}

img {
  max-width: 100%;
  height: auto;
}

.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-img {
  width: 90%;
  max-width: 800px; /* ajuste conforme seu layout */
  height: auto;
  display: block;
}

.title-section {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.separator {
  width: 80px;
  height: 3px;
  background-color: #4a9aff;
  margin: 0 auto 40px;
}

.card-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.card-img {
  width: 300px;
  height: auto;
  border-radius: 8px;
}

.card-text {
  flex: 1;
  color: #fff;
}

.card-text h3 {
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nebuloza {
    width: 260px;
    opacity: 0.35;
    left: 50%;
    top: 60%;
  }

  .galactic-bg {
    background-image: url("image/nebuloza2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .nebuloza-img,
  #stars-container,
  .comet,
  .rocket {
    display: none;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-img {
    width: 100%;
    height: auto;
  }

  .feature-content {
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    display: none;
    border-top: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero video {
    width: 100%;
    max-width: 360px;
  }

  .testimonial-card {
    min-width: 300px;
  }

  .pricing-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.bhag-banner {
  flex-direction: column;
  padding: 20px;
  gap: 24px;
  text-align: center;
}

.bhag-banner .galaticos {
  font-size: 36px;
}

.bhag-banner .info-box {
  max-width: 100%;
}

.instagram-btn {
  justify-content: center;
}
