/* ============================================ */
/* PÁGINA SOBRE NÓS - ESTILOS ESPECÍFICOS     */
/* ============================================ */

/* Hero Section */
.hero-sobre {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 123, 255, 0.3);
}

.hero-title i {
  color: #ff7b00;
  margin-right: 15px;
  text-shadow: 0 0 30px rgba(255, 123, 0, 0.8);
}

.hero-subtitle {
  color: #00d4ff;
  font-size: 1.4em;
  font-weight: 500;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.hero-description {
  color: #b0b6c3;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-astronaut {
  width: 100%;
  height: auto;
  max-width: 400px;
  animation: float 6s ease-in-out infinite;
}

/* Menu ativo */
nav a.active {
  color: #ff7b00 !important;
  text-shadow: 0 0 10px rgba(255, 123, 0, 0.5);
}

/* Container Padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.section-header p {
  color: #b0b6c3;
  font-size: 1.2em;
}

/* Missão, Visão e Valores */
.mission-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0f1c 100%);
  padding: 80px 0;
  position: relative;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.mission-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #ff7b00);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 123, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mission-item:hover::before {
  opacity: 1;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #ff7b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2em;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
}

.mission-item h3 {
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-item p {
  color: #b0b6c3;
  line-height: 1.6;
  font-size: 1em;
}

/* História - Timeline */
.history-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 80px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #007bff, #ff7b00);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, #007bff, #ff7b00);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2em;
  box-shadow: 0 5px 20px rgba(255, 123, 0, 0.3);
  position: relative;
  z-index: 2;
  min-width: 100px;
  text-align: center;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  margin: 0 30px;
  flex: 1;
  backdrop-filter: blur(10px);
}

.timeline-content h3 {
  color: #ff7b00;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content p {
  color: #b0b6c3;
  line-height: 1.6;
}

/* Estatísticas */
.stats-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0f1c 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 123, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
}

.stat-icon {
  background: linear-gradient(135deg, #007bff, #ff7b00);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5em;
  color: white;
}

.stat-number {
  color: #ff7b00;
  font-size: 3em;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
  display: inline-block;
}

.stat-suffix {
  color: #ff7b00;
  font-size: 2em;
  font-weight: 700;
  display: inline-block;
}

.stat-label {
  color: #b0b6c3;
  font-size: 1em;
  font-weight: 500;
  margin-top: 10px;
}

/* Equipe */
.team-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 123, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.member-photo {
  margin-bottom: 20px;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #007bff, #ff7b00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 3em;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
}

.team-member h3 {
  color: #ffffff;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
}

.member-role {
  color: #ff7b00;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 15px;
}

.member-description {
  color: #b0b6c3;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Certificações */
.certifications-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0f1c 100%);
  padding: 80px 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 123, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.1);
}

.cert-icon {
  background: linear-gradient(135deg, #007bff, #ff7b00);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8em;
  color: white;
}

.cert-item h3 {
  color: #ffffff;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
}

.cert-item p {
  color: #b0b6c3;
  font-size: 0.95em;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0a0f1c 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.cta-content p {
  color: #b0b6c3;
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7b00, #ffaa44);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 123, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-secondary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

/* Animações */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5em;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }

  .timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
  }

  .timeline-content {
    margin: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2em;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2em;
  }
}