/* Variáveis */
:root {
  --primary-color: #00bfff;
  --primary-dark: #0099cc;
  --secondary-color: #25D366;
  --secondary-dark: #1ebe5d;
  --dark-bg: #0a0f1a;
  --header-bg: #0d1628;
  --card-bg: #101b30;
  --text-light: #ffffff;
  --text-muted: #cccccc;
}

/* Estilos Globais */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--header-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, var(--dark-bg), var(--header-bg));
  position: relative;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Botões */
.cta-button {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Seções Genéricas */
section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Seção Mentoria */
.mentoria ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.mentoria ul li {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 0;
  color: var(--text-muted);
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
  padding-left: 2.5rem;
}

.mentoria ul li:hover {
  transform: translateY(-5px);
}

.mentoria ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 1rem;
  font-weight: bold;
}

/* Seção Contato - Versão Atualizada */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-btn {
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  border: none;
  font-size: 1rem;
}

.contact-btn i {
  font-size: 1.2rem;
}

.contact-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(30deg);
  transition: all 0.5s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover::after {
  left: 100%;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.telegram-btn {
  background-color: #0088cc;
  color: white;
}

.instagram-btn {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

/* Depoimentos */
.swiper {
  width: 100%;
  padding: 2rem 0;
  max-width: 800px;
}

.swiper-slide {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 99;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Seção Mentor */
.mentor-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.mentor-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.mentor-approvals-title {
  margin-top: 2rem;
}

.mentor-approvals-list {
  text-align: left;
  color: var(--text-muted);
  padding-left: 0;
  max-width: 600px;
  margin: 1rem auto;
}

.mentor-approvals-list li {
  margin-bottom: 0.5rem;
}

.trophy-gold {
  color: gold;
  text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.trophy-silver {
  color: silver;
  text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.trophy-bronze {
  color: #cd7f32; /* bronze */
  text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

/* Mantenha o espaçamento dos ícones */
.mentor-approvals-list i {
  margin-right: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.mentor-approvals-list i:hover {
  transform: scale(1.2);
}

.mentor-bio {
  margin-top: 1.5rem;
}






/* Estatísticas */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--header-bg);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

.copyright {
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .mentor-profile {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-btn {
    width: 100%;
    max-width: 280px;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  .hero {
    padding: 4rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
}
