/* Configuração básica para uma página profissional */
html {
  position: relative;
  min-height: 100%;
  font-size: 16px;
  overflow-x: hidden; /* Previne scrollbar horizontal */
  scroll-behavior: smooth; /* Para rolagens suaves em ancoragens */
}

body {
  margin-bottom: 60px; /* Espaço para o footer */
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden; /* Previne scrollbar horizontal */
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Garante altura mínima para posicionar o footer */
}

/* Conteúdo da página deve expandir para empurrar o footer para baixo */
.page-content {
  flex: 1 0 auto;
}

/* Footer deve ficar no final da página */
.footer {
  flex-shrink: 0;
  background-color: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  width: 100%;
  border-top: 1px solid rgba(42, 87, 154, 0.3);
  text-align: center;
}

.footer p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer p:hover {
  opacity: 1;
}

/* Corrigindo o problema da scrollbar - apenas um controle principal */
html, body {
  overflow-y: auto;
}

/* Estilização da scrollbar para ficar discreta e combinar com o tema */
::-webkit-scrollbar {
  width: 8px;
  background-color: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6600 #0d0d0d;
}

/* Garantia de que elementos não causem scrollbar horizontal */
* {
  box-sizing: border-box;
  max-width: 100%;
}

/* Resolver problemas de scrollbars em elementos internos */
section, 
.container-fluid, 
.row, 
div {
  overflow: visible !important;
  max-width: 100%;
}

/* Para IFrames e elementos de mídia */
iframe, video, embed, object {
  max-width: 100%;
}

/* Melhorias profissionais para links e interação */
a {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

button, .btn {
  transition: all 0.3s ease;
}

/* Melhorar as transições */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Garantir que todas as imagens se ajustem corretamente */
img {
  max-width: 100%;
  height: auto;
}

/* Estilos para a página de vendas */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
  text-align: center;
}

/* Adicionar efeito de foco nos CTAs */
.cta-button {
  background: linear-gradient(45deg, #2A579A, #3498db);
  color: white;
  font-weight: 600;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(42, 87, 154, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(42, 87, 154, 0.6);
  color: white;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #3498db, #2980b9);
  transition: width 0.35s ease;
  z-index: -1;
}

.cta-button:hover::after {
  width: 100%;
}

/* Adicionar animação de pulsação ao botão */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 87, 154, 0.8);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(42, 87, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 87, 154, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.accent-text {
  color: #2A579A;
  font-weight: 800;
}

.header-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.header-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2A579A, #3498db);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: #2A579A;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.highlight-box {
  background-color: rgba(42, 87, 154, 0.1);
  border-left: 4px solid #2A579A;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(42, 87, 154, 0.15);
}

.highlight-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Seção CTA Final com mais espaço para o footer */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0 120px; /* Aumentando padding inferior */
  text-align: center;
  margin-bottom: 0; /* Removendo margem e deixando o padding fazer o trabalho */
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2A579A, #3498db, #2A579A);
}

/* Botão CTA com mais espaço */
.cta-section .cta-button {
  margin-bottom: 40px; /* Mais espaço abaixo do botão */
  font-size: 1.2rem;
  padding: 15px 40px;
}

/* Selo de garantia melhorado */
.guarantee-badge {
  margin: 40px auto;
  padding: 25px;
  max-width: 280px;
  position: relative;
  text-align: center;
  background-color: rgba(0, 150, 136, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 150, 136, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.guarantee-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.guarantee-badge img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 150, 136, 0.5);
  transition: transform 0.3s ease;
}

.guarantee-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00968880, #4CAF5080);
  border-radius: 15px 15px 0 0;
}

/* Estilização avançada dos ícones SVG */
.tech-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  width: 100%;
}

/* Container para ícones de tecnologia em linha */
.tech-icons-container {
  margin-top: 60px; /* Aumentando o espaçamento vertical */
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Item individual para cada tecnologia */
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
}

/* Nome da tecnologia */
.tech-name {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Regra base para os ícones SVG */
.tech-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(61%) saturate(811%) hue-rotate(189deg) brightness(93%) contrast(89%);
  transition: all 0.3s ease;
}

/* Efeito hover padrão */
.tech-icon:hover {
  filter: brightness(0) saturate(100%) invert(29%) sepia(61%) saturate(811%) hue-rotate(189deg) brightness(120%) contrast(95%);
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(42, 87, 154, 0.25);
}

/* Corrigindo ícones que possam ter problemas com o filtro */
.tech-icon-aspnet, .tech-icon-azure, .tech-icon-sql {
  filter: brightness(0) saturate(100%) invert(29%) sepia(61%) saturate(811%) hue-rotate(189deg) brightness(93%) contrast(89%);
}

/* Título da seção de tecnologias */
.tech-title {
  margin-top: 50px; /* Adicionando espaço entre o bloco anterior e este título */
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

/* Tooltip para os ícones */
.tech-icon {
  position: relative;
}

.tech-icon:hover::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2A579A;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

.position-relative {
  max-width: 100%;
}

.audience-container {
  margin-right: 20px; /* Adicionando espaço para alinhar com a imagem */
}

.audience-item {
  display: flex;
  align-items: flex-start; /* Alinhamento melhorado */
  margin-bottom: 25px; /* Mais espaço entre itens */
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.audience-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.audience-icon {
  background-color: rgba(42, 87, 154, 0.1);
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.audience-text {
  flex: 1;
}

.requirements-box {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
}

/* Garantir que textos longos quebrem corretamente */
p, h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Elementos do formulário específicos */
.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 20px 0;
  display: inline-block;
  background: linear-gradient(45deg, #2A579A, #3498db);
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-tag small {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.instructor-section {
  padding: 80px 0;
  background-color: #19191f;
}

.instructor-photo {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  transition: transform 0.5s ease;
}

.instructor-photo:hover {
  transform: scale(1.02);
}

/* Estilos para Seção "Para quem é essa formação" - Melhorando alinhamento */
.audience-section {
  padding: 100px 0;
  background-color: #19191f;
  position: relative;
  overflow: hidden;
}

.audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2A579A, #3498db, #2A579A);
}

.audience-section .section-title {
  position: relative;
  margin-bottom: 15px;
}

.audience-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2A579A, #3498db);
  border-radius: 3px;
}

.audience-section .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(25, 25, 31, 0.5);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(42, 87, 154, 0.1);
}

/* Container principal da seção com flex para melhor alinhamento */
.audience-section .row.align-items-center {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Melhorando o container de texto */
.audience-section .audience-container {
  padding: 30px;
  background-color: rgba(21, 21, 25, 0.5);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(42, 87, 154, 0.2);
  height: 100%;
}

/* Itens da lista com melhor alinhamento e espaçamento */
.audience-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: rgba(42, 87, 154, 0.08);
  border-left: 3px solid rgba(42, 87, 154, 0.4);
}

.audience-item:hover {
  background-color: rgba(42, 87, 154, 0.15);
  transform: translateX(8px);
  border-left: 3px solid rgba(42, 87, 154, 0.9);
}

.audience-item:last-child {
  margin-bottom: 0;
}

/* Ícones na seção com melhor alinhamento */
.audience-icon {
  background-color: rgba(42, 87, 154, 0.15);
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(42, 87, 154, 0.2);
  transition: all 0.3s ease;
}

.audience-item:hover .audience-icon {
  transform: scale(1.1);
  background-color: rgba(42, 87, 154, 0.25);
}

/* Títulos mais profissionais */
.audience-text h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.audience-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Caixa de requisitos mais destacada */
.requirements-box {
  background-color: rgba(42, 87, 154, 0.1) !important;
  border: 1px solid rgba(42, 87, 154, 0.2) !important;
  border-radius: 10px;
  padding: 25px !important;
  margin-top: 35px !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.requirements-box h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.requirements-box h4 i {
  color: #4CAF50;
  font-size: 1.4rem;
  margin-right: 10px;
}

.requirements-box p {
  margin-bottom: 10px;
  padding-left: 5px;
  border-left: 2px solid rgba(42, 87, 154, 0.3);
  padding-left: 15px;
}

/* Melhorando o container da imagem */
.audience-section .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-height: 500px;
  height: 100%;
  margin: 0 auto;
  max-width: 90%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.audience-section .image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Corrigindo a imagem esticada dos estudantes */
.audience-section .image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
  max-height: 500px;
}

/* Efeito de overlay na imagem */
.audience-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(42, 87, 154, 0.6), transparent);
  pointer-events: none;
  border-radius: 12px;
}

/* Responsividade */
@media (max-width: 992px) {
  .audience-section .row.align-items-center {
    flex-direction: column;
  }
  
  .audience-section .audience-container {
    margin-top: 40px;
  }
  
  .audience-section .image-container {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .audience-section .col-lg-6.order-lg-2 {
    order: 1;
  }
  
  .audience-section .col-lg-6.order-lg-1 {
    order: 2;
  }
}

/* Animações gerais */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Métodos de pagamento melhorados */
.payment-methods {
  margin-top: 30px;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

.payment-methods img {
  margin: 0 10px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.payment-methods img:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Reduzir padding em telas pequenas */
@media (max-width: 768px) {
  .section {
    padding: 40px 10px;
  }
  
  .container-fluid {
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .header-title {
    font-size: 2.5rem;
  }
  
  .header-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

/* Melhorias para a acessibilidade em foco */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid #ff6600;
  outline-offset: 2px;
}

/* Otimizações para dispositivos móveis */
@media (max-width: 576px) {
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
}

/* Classes essenciais do arquivo original */
.bullet-list {
  list-style-type: none;
  padding-left: 0;
}

.bullet-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.bullet-list li i {
  color: #2A579A;
  position: absolute;
  left: 0;
  top: 5px;
}

/* Estilos melhorados para a seção de depoimentos */
.testimonial-card {
  background-color: rgba(21, 21, 25, 0.6);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(42, 87, 154, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(42, 87, 154, 0.5);
}

.testimonial-img-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid rgba(42, 87, 154, 0.5);
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.05);
}

.testimonial-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-img-container img {
  transform: scale(1.1);
}

.testimonial-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  position: relative;
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2.5rem;
  line-height: 0;
  position: absolute;
  color: rgba(42, 87, 154, 0.5);
}

.testimonial-text::before {
  top: 15px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -5px;
  right: -10px;
}

.testimonial-author-container {
  border-top: 1px solid rgba(42, 87, 154, 0.3);
  padding-top: 15px;
  width: 100%;
}

.testimonial-author {
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-img-container {
    width: 80px;
    height: 80px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* Estilos para a seção "O que você vai aprender" */
.learning-topics-container {
  background-color: rgba(21, 21, 25, 0.6);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(42, 87, 154, 0.2);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.learning-topics-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(42, 87, 154, 0.4);
  transform: translateY(-5px);
}

.learning-topics-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.learning-topics-list li {
  margin-bottom: 15px;
  padding: 10px 15px;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  background-color: rgba(42, 87, 154, 0.08);
  transition: all 0.3s ease;
  border-left: 3px solid rgba(42, 87, 154, 0.3);
}

.learning-topics-list li:hover {
  background-color: rgba(42, 87, 154, 0.15);
  transform: translateX(8px);
  border-left-color: rgba(42, 87, 154, 0.8);
}

.learning-topics-list li i {
  color: #2A579A;
  margin-top: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .learning-topics-container {
    padding: 20px;
  }
  
  .learning-topics-list li {
    padding: 8px 12px;
    margin-bottom: 10px;
  }
}

/* Estilos para a seção "Para quem é essa formação?" com cards */
.audience-card {
  background-color: rgba(21, 21, 25, 0.8);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(42, 87, 154, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.audience-card:hover {
  transform: translateY(-10px);
  border-color: rgba(42, 87, 154, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.audience-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(42, 87, 154, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid rgba(42, 87, 154, 0.3);
}

.audience-card:hover .audience-icon-container {
  transform: scale(1.1);
  background-color: rgba(42, 87, 154, 0.2);
  border-color: rgba(42, 87, 154, 0.7);
}

.audience-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}

.audience-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2A579A, #3498db);
  border-radius: 3px;
}

.audience-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.requirements-card {
  background-color: rgba(0, 150, 136, 0.05);
  border-color: rgba(0, 150, 136, 0.3);
}

.requirements-card:hover {
  border-color: rgba(0, 150, 136, 0.7);
}

.requirements-card .audience-icon-container {
  background-color: rgba(0, 150, 136, 0.1);
  border-color: rgba(0, 150, 136, 0.3);
}

.requirements-card:hover .audience-icon-container {
  background-color: rgba(0, 150, 136, 0.2);
  border-color: rgba(0, 150, 136, 0.7);
}

.requirements-card .audience-card-title::after {
  background: linear-gradient(90deg, #009688, #4CAF50);
}

.requirements-list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  margin: 0;
}

.requirements-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.requirements-list li i {
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .audience-card {
    padding: 20px;
  }
  
  .audience-icon-container {
    width: 60px;
    height: 60px;
  }
  
  .audience-card-title {
    font-size: 1.2rem;
  }
}

/* Melhorando o container da imagem na seção de público */
.audience-section .position-relative {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Corrigindo a imagem esticada dos estudantes */
.audience-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
  max-height: 450px;
}

.audience-section img:hover {
  transform: scale(1.03);
}

/* Adicionando efeito de overlay na imagem para combinar com o tema */
.audience-section .position-relative::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(42, 87, 154, 0.3), transparent);
  pointer-events: none;
}

/* Melhorando o alinhamento dos itens de texto */
.audience-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: rgba(42, 87, 154, 0.05);
  border-left: 3px solid rgba(42, 87, 154, 0.3);
}

.audience-item:hover {
  background-color: rgba(42, 87, 154, 0.1);
  transform: translateX(5px);
  border-left: 3px solid rgba(42, 87, 154, 0.8);
}

/* Estilos para o accordion de FAQ */
.accordion-button:not(.collapsed) {
  background-color: rgba(42, 87, 154, 0.1) !important;
  color: white !important;
}

.accordion-button:focus {
  border-color: #2A579A;
  box-shadow: 0 0 0 0.25rem rgba(42, 87, 154, 0.25);
}

/* Melhorias para o Acordeão do FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(to right, rgba(42, 87, 154, 0.2), rgba(42, 87, 154, 0.05)) !important;
  color: white !important;
  border-bottom: 1px solid rgba(42, 87, 154, 0.3);
}

.faq-accordion .accordion-button::after {
  background-size: 20px;
  transition: all 0.3s ease;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:hover::after {
  opacity: 1;
}

.faq-accordion .accordion-body {
  padding: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Removendo borda do último item */
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

/* Melhorando o texto do preço anual */
.price-tag small {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  margin-left: 5px;
}

/* Responsividade geral */
@media (max-width: 992px) {
  .header-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .tech-icons-container {
    gap: 15px;
  }
  
  .tech-icon {
    width: 40px;
    height: 40px;
  }
  
  .faq-accordion .accordion-button {
    padding: 15px;
    font-size: 1rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 15px;
    font-size: 0.95rem;
  }
}

/* Estilos para os cards de recursos do curso */
.course-features {
  margin-top: 50px;
}

.course-feature-card {
  background-color: rgba(21, 21, 25, 0.7);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(42, 87, 154, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.course-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2A579A, #3498db);
  transition: height 0.3s ease;
}

.course-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(42, 87, 154, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.course-feature-card:hover::before {
  height: 6px;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(42, 87, 154, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  border: 2px solid rgba(42, 87, 154, 0.3);
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.course-feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  background-color: rgba(42, 87, 154, 0.2);
  border-color: rgba(42, 87, 154, 0.7);
}

.course-feature-card:hover .feature-icon-wrapper i {
  transform: scale(1.1);
}

.feature-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.feature-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(42, 87, 154, 0.2);
}

.bg-primary-subtle {
  background-color: rgba(42, 87, 154, 0.15);
}

.text-primary-emphasis {
  color: rgba(255, 255, 255, 0.9);
}

.badge.rounded-pill {
  padding: 8px 15px;
  font-weight: 500;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .course-feature-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .feature-card-title {
    font-size: 1.4rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-wrapper i {
    font-size: 1.8rem;
  }
}