/* Base styling */
:root {
  --background: #000000;
  --foreground: #ffffff;
  --primary: #ffffff;
  --primary-foreground: #000000;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.3);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Aileron', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-large {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-btn {
  background-color: white;
  color: black !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 999px !important;
  border: 2px solid black;
  transition: background-color 0.3s;
  margin-top: 350px;

  animation: pulseFade 1.5s infinite ease-in-out;
}


@keyframes pulseFade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}




.hero-btn i {
  margin-left: 0.5rem;
  color: #000 !important;
}



.bg-black {
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.section-header span,
.section-title span {
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* ajuste conforme necessário */
}

@media (max-width: 768px) {
  .navbar-content {
    justify-content: center !important; /* centraliza o conteúdo na navbar */
  }

  .logo {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

.logo span {
  font-size: 1.25rem;
  font-weight: bold;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav .btn {
  color: white;
  transition: color 0.3s;
  border-radius: 8px; /* Ajuste o valor conforme o grau de arredondamento desejado */
  padding: 0.5rem 1rem; /* opcional: melhora o espaçamento interno */
  border: none; /* opcional: remove a borda padrão do botão */
  background-color: transparent; /* mantém o fundo transparente se for o estilo desejado */
  cursor: pointer; /* garante que o cursor de clique apareça */
}




@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  
  .mobile-nav {
    display: none;
  }

  .mobile-nav .logo img {
    align-items: center;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;      /* vertical */
  justify-content: center;  /* horizontal */
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  pointer-events: none;
}

.play-button {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background-color: white;
  border: none;
  color: black;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  animation: pulsePlay 1.5s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@keyframes pulsePlay {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.absolute-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); /* escurece */
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-btn {
  background-color: white;
  color: black !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #eaeaea;
}


/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.card:hover {
  border-color: var(--border-hover);
}

.card h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: rgba(255, 255, 255, 0.7);
}

/* Mentor Section */
.mentor-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mentor-profile {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mentor-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid #FF6B6B; /* opcional para destacar */
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-avatar img.mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* garante que a imagem fique dentro do círculo */
  display: block;
}


.mentor-initials {
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.mentor-profile h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mentor-profile p {
  color: rgba(255, 255, 255, 0.7);
}

.mentor-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mentor-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: black;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.icon-container {
  background-color: white;
  padding: 0.75rem;
  border-radius: var(--radius);
  color: black;
  flex-shrink: 0;
}

.mentor-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.mentor-card p, .mentor-bio {
  color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: black;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  background-color: white;
  width: fit-content;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: black;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing-container {
  max-width: 36rem;
  margin: 0 auto;
}

.pricing-card {
  background-color: black;
  border: 1px solid white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  background-color: black;
  padding: 2.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.7);
}

.price-container {
  text-align: right;
}

.price-container p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
}

.feature-list {
  margin-bottom: 2rem;
  padding: 0 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: white;
  border-radius: 50%;
  padding: 0.25rem;
  flex-shrink: 0;
}

.check-icon i {
  color: black;
  font-size: 0.75rem;
}

.pricing-card .btn {
  width: 90%;
  margin: 2rem auto 2.5rem;
  display: block;
    border-radius: 50px;

}


.pricing-disclaimer {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.pricing-disclaimer p + p {
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background-color: black;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-info {
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (min-width: 640px) {
  .cards-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    width: 50%;
    padding-right: 2rem;
    text-align: left;
    margin-bottom: 0;
  }
  
  .hero-text p,
  .hero-text div {
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-image-container {
    width: 50%;
    margin-top: 0;
  }
  
  .mentor-content {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-content {
    flex-direction: row;
  }
  
  .footer-logo {
    margin-bottom: 0;
  }
  
  .footer-info {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
  
  .section-header h2,
  .section-title {
    font-size: 3rem;
  }
  
  .cards-grid,
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
}



.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
    opacity: 0.5; /* deixa o vídeo mais escuro */

}

.absolute-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* leve escurecimento para contraste */
  z-index: -1;
}

.hero-content.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-btn {
  background-color: white;
  color: black !important;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #eaeaea;
}
.hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 */
  background-color: #000;
  overflow: hidden;
  z-index: 1;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ajustes opcionais para o botão continuar visível sobre o vídeo */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero-btn {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

/* Escurecimento de fundo, se ainda desejar contraste */
.absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Ajuste a opacidade conforme quiser */
  z-index: 1;
}

.hero-section {
  padding: 4rem 1rem;
  background-color: #000; /* cor anterior preservada */
  text-align: center;
  color: white;
}


.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  width: 70%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin-bottom: 0; /* Reduzido de 2rem para 1rem */
    margin-top: 4rem; /* Reduzido de 2rem para 1rem */

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.cta-button {
  margin-top: 1rem; /* Garante que não haja espaço extra acima do botão */
}
.cta-button .hero-btn {
  font-size: 1.0rem;
  padding: 1rem 6rem;
  border-radius: 8px;
  background-color: white;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 0.5rem; /* Pequeno respiro visual */
}

.cta-button .hero-btn:hover {
  background-color: #d80c0c;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .video-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #hero {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #hero .hero-container,
  #hero .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Seções seguintes */
  section.section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #about,
  #mentor {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
/* Remove padding seções específicas */
.section.no-padding {
  padding: 0;
  margin: 0;
}

/* Container da imagem abaixo do hero */
.image-container {
  width: 40%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.navbar-top-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
}

.navbar-top-mobile .logo img {
  max-width: 130px;
  height: auto;
}

.cta-mobile-btn {
  background-color: #d40e0e;
  color: white;
  padding: 12px 48px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap; /* Impede quebra de linha */
}

.cta-mobile-btn:hover {
  background-color: #df0e0e;
}

@media (max-width: 768px) {
  .navbar-top-mobile {
    display: flex;
  }

  .navbar-content {
    display: none;
  }
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-section {
  background-color: #df0e0e;
  color: white;
  padding: 18px 80px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-section:hover {
  background-color: #da0c0c;
  transform: scale(1.05);
}
/* Preço com parcelamento em destaque */
.price-container {
  text-align: right;
  margin-top: 1rem;
}

.price-container .parcelado {
  font-size: 3.10rem;
  font-weight: 900;
  color: #ff0202;
  margin-bottom: 0.10rem;
}

.price-container .avista {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

/* 🔽 Ajuste para telas pequenas (mobile) */
@media (max-width: 768px) {
  .price-container .parcelado {
    font-size: 2.4rem;
  }

  .price-container .avista {
    font-size: 1.4rem;
  }
}


/* Botão inscrever-se no estilo global */
.btn-inscreva {
  background-color: #ff0505;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  width: 90%;
  margin: 2rem auto 0;
  display: block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-inscreva:hover {
  background-color: #f30808;
  transform: scale(1.03);
}
/* Botão do menu no desktop */
.cta-top {
  background-color: #ff6b6b;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-top:hover {
  background-color: #da0909;
  transform: scale(1.05);
}
.desktop-nav .btn.cta-top {
  background-color: #ec0b0b;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.desktop-nav .btn.cta-top:hover {
  background-color: #e90d0d;
  transform: scale(1.05);
}
