/* Variáveis de Cor */
:root {
  --azul-escuro: #2c3e50;
  --azul-claro: #88b3ed;
  --vermelho: #446be2;
  --branco: #ffffff;
  --cinza-claro: #f8f9fa;
  --texto: #333333;
}

/* Reset e Estilos Globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--azul-escuro);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--vermelho);
  color: var(--branco);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scroll {
  background: var(--branco);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 5px;
}

.logo img {
  height: auto;
  width: 150px;
  filter: drop-shadow(4px 6px 4px rgb(255, 255, 255));
}

/* Menu Hamburguer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--azul-escuro);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--azul-escuro);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Menu Aberto */
.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Navegação */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-scroll nav a {
  color: var(--azul-escuro);
}

nav a:hover {
  color: var(--vermelho);
}

.nav-cta {
  background: var(--vermelho);
  color: var(--branco);
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: #d9d7df;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Seção Motivos */
.motivos {
  background: #f8f9fa;
}

.motivos h2 {
  text-align: center;
  margin-bottom: 60px;
}

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.motivo-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.motivo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.motivo-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #e7d8d9e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3c5be7;
  transition: transform 0.5s;
}

.motivo-card:hover .motivo-icon {
  transform: rotateY(360deg);
}

.motivo-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.motivo-card p {
  color: #555;
  line-height: 1.6;
}

.motivo-card {
  border-top: 4px solid #e7d8d9e8;
}

/* Seção Sobre */
.sobre {
  display: flex;
  align-items: center;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sobre-img img {
  max-width: 400px;
  height: auto;
  display: block;
}

.sobre-texto h2 {
  text-align: left;
  margin-bottom: 20px;
}

.sobre-texto p {
  margin-bottom: 20px;
}

/* Seção Métricas */
.metricas {
  background: var(--azul-escuro);
  color: var(--branco);
  text-align: center;
}

.metricas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metrica-numero {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vermelho);
}

/* Estilos para a seção de vídeo + texto */
.video-texto {
  padding: 80px 0;
  background: #f8f9fa;
}

.video-texto-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.video-col,
.texto-col {
  flex: 1;
  min-width: 300px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.texto-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.video-texto blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  border-left: 4px solid #446be2;
  padding-left: 25px;
  margin: 0;
  font-style: italic;
}

/* Estilos do Glide */
.glide {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  display: flex;
  margin: 0;
  padding: 20px 0;
  list-style: none;
}

.glide__slide {
  flex-shrink: 0;
  padding: 0 10px;
  width: 100%;
}

.insta-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.insta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e1306c;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
}

/* Navegação */
.glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e1306c;
}

.glide__arrow--left {
  left: -20px;
}

.glide__arrow--right {
  right: -20px;
}

/* Bullets */
.glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.glide__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glide__bullet:hover,
.glide__bullet--active {
  background: #e1306c;
}

/* CTA */
.cta {
  background: var(--azul-claro);
  color: var(--branco);
  text-align: center;
}

.cta h2 {
  color: var(--branco);
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 80px 0 30px;
}

footer img {
  filter: drop-shadow(2px 1px 2px rgb(255, 255, 255));
  height: auto;
  border-radius: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--branco);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--branco);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--vermelho);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--vermelho);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
  .sobre-content {
    grid-template-columns: 1fr;
  }

  .sobre-texto h2 {
    text-align: center;
  }

  .motivos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--branco);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    color: var(--azul-escuro);
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .motivos-grid {
    grid-template-columns: 1fr;
  }

  /* Tipografia fluída */
  html {
    font-size: 14px;
  }
}

/* Tipografia responsiva */
@media (min-width: 768px) {
  html {
    font-size: calc(14px + (16 - 14) * (100vw - 768px) / (1920 - 768));
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}
.creditos {
  text-align: center;
  padding: 15px;
  background-color: #f5f5f5; /* Cor de fundo (opcional) */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

.spacefast-btn {
  color: #0066cc; /* Cor do link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.spacefast-btn:hover {
  color: #004499; /* Cor ao passar o mouse */
  text-decoration: underline;
}
.mapa-container {
  max-width: 100%;

  padding: 0px 0;
  background-color: #f9f9f9; /* Cor de fundo (opcional) */
}

.mapa-titulo {
  text-align: center;
  font-family: "Arial", sans-serif;
  color: #333;
}
