:root {
  --rosa-escuro: #C43883;
  --azul-escuro: #2A32B7;
  --cinza-escuro: #222562;
  --branco: #FFFFFF;
}

body {
  font-family: "Inter", sans-serif;
}

p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.5;
  margin: 0;
}

header a{
  text-decoration: none;
  color: #FFF;
}

header a:hover{
  color: #1a237e;
}

.hero {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--branco);
  height: 681px;
  position: relative;
  z-index: 1;
}

.alinhado-com-card {
  padding-left: 20px;
}

.hero-content {
  position: absolute;
  top: 500px;
  width: 100%;
  color: #fff;
}

.floating-cards {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: -70px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.floating-cards p, h4 {
  color: #1a237e;
}

.icon-card {
  width: 160px;
  height: 160px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

/* Ícone de play com fundo levemente escuro */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* fundo escuro translúcido */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.custom-play-button {
  width: 80px;
  pointer-events: none; /* garante que o clique vá para o overlay */
}

.circle-decor {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.carousel-item img {
  border-radius: 10px;
}

footer {
  font-size: 16px;
}

.btn-custom {
  background-color: var(--azul-escuro);
  color: white;
  background-color: #2A32B7;
  padding: 20px 250px;
  border-radius: 20px;
}

.btn-custom:hover {
  background-color: #FFF;
  color: #2A32B7;
  border: #2A32B7 solid 2px;
}

.circle-decor {
  width: 193px;
  height: 202px;
  border-radius: 50%;
  background-image: url('../assets/img/indicador-qualidade.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.circle-decor {
  /* ... código anterior ... */
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.parallax-bg > * {
  position: relative;
  z-index: 1;
}

.salary-steps .step {
  margin-bottom: 10px; /* Espaço entre cada degrau */
}

.salary-steps .salary-value {
  color: #1a237e;
  font-weight: bold;
  margin-bottom: 4px;
}

.salary-steps hr {
  border-top: 2px solid #1a237e;
  width: 100px;
  margin: 0 0 6px 0;
}

.step-senior {
  margin-left: 250px;
}

.step-pleno {
  margin-left: 150px;
}

.step-junior {
  margin-left: 50px;
}

hr {
  border: none;
  height: 4px; /* grossura */
  background-color: #2A32B7; /* cor */
  width: 100%; /* ou menos, ex: 50% */
}

.btn-curriculo{
  background-color: #C43883;
  color: #FFF;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 20px;
}

.btn-curriculo:hover{
  color: #C43883;
  background-color: #FFF;
  border: #C43883 1px solid;
}

/* ===== Carrossel - Imagem ===== */
.estrutura-carousel .carousel-img {
  height: 475px;         /* Altura da imagem do carrossel - ajuste como quiser (ex: 250px, 400px) */
  object-fit: cover;     /* Garante que a imagem preencha o espaço sem deformar */
  border-radius: 20px;   /* Arredonda as bordas da imagem (opcional) */
  width: 100%;           /* Garante que a imagem ocupe toda a largura disponível */
}

/* ===== Carrossel - Indicadores (bolinhas) ===== */
.estrutura-carousel .carousel-indicators {
  position: static;      /* Deixa os indicadores abaixo da imagem, não fixos no fundo */
  margin-top: 12px;      /* Espaço entre a imagem e as bolinhas - ajuste aqui (ex: 20px) */
  gap: 2px;              /* Espaçamento entre uma bolinha e outra */
  display: flex;         /* Garante que os botões fiquem lado a lado */
  justify-content: center; /* Centraliza as bolinhas horizontalmente */
}

/* ===== Carrossel - Estilo das bolinhas (não ativas) ===== */
.estrutura-carousel .carousel-indicators [data-bs-target] {
  width: 10px;           /* Largura da bolinha */
  height: 10px;          /* Altura da bolinha */
  border-radius: 50%;    /* Formato circular */
  background-color: #ccc;/* Cor da bolinha quando não está ativa */
  opacity: 0.7;          /* Transparência leve */
  border: none;          /* Remove a borda padrão do Bootstrap */
}

/* ===== Carrossel - Bolinha ativa ===== */
.estrutura-carousel .carousel-indicators .active {
  background-color: #222562; /* Cor da bolinha ativa (pode trocar para outra cor) */
  opacity: 1;             /* Totalmente visível */
}

.contato{
  background-color: #C43883;
}

.btn-zap-zap {
    border: 0px;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: #25d366;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-zap-zap:hover{
  background-color: #FFF;
  color: #25d366;
  border: #25d366 solid 2px;
}

.social-icons a {
  background-color: #FFF;
  color: #21215f;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a:hover{
  color: #C43883;
  background: #21215f;
}

/* ========== AJUSTES RESPONSIVOS MELHORADOS ========== */
@media (max-width: 768px) {
  /* Ajuste para o Hero/Banner - compensa o header fixo */
  h2 {
    font-size: 30px !important;
  }
  .hero {
    height: auto;
    padding: 180px 20px 60px 20px; /* topo maior para não ficar sob o header fixo */
    text-align: center;
  }

  .hero-content {
    position: static;
    padding: 0;
    max-width: 100%;
    text-align: center;
  }

  /* Floating Cards */
  .floating-cards {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
  }

  .icon-card {
    width: 100px;
    height: 100px;
  }

  /* Botões */
  .btn-custom {
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
  }

  .btn-curriculo {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
  }

  /* Perspectiva salarial degraus */
  .salary-steps {
    text-align: center;
  }

  .salary-steps .step {
    margin-bottom: 25px;
  }

  .step-senior,
  .step-pleno,
  .step-junior {
    margin-left: 0;
  }

  .salary-steps hr {
    margin: 8px auto;
    width: 80%;
  }

  /* Estrutura */
  .estrutura-section .col-lg-6 {
    margin-bottom: 30px;
  }

  .estrutura-carousel .carousel-img {
    height: 250px;
  }

  /* Vídeo */
  .video-wrapper {
    max-width: 100%;
  }

  .custom-play-button {
    width: 60px;
  }

  /* Header - logo em cima, menu abaixo */
  header .container {
    flex-direction: column !important; /* empilha verticalmente */
    align-items: center !important;    /* centraliza horizontal */
  }

  header img {
    margin-bottom: 15px; /* espaço entre logo e menu */
    height: 24px; /* diminui a logo */
    width: auto;
  }

  header nav {
    width: 100%; /* ocupa toda largura */
    text-align: center; /* centraliza links */
  }

  header nav a {
    display: inline-block; /* para funcionar o margin */
    margin: 0 8px; /* diminui espaçamento entre links */
    padding: 6px 0; /* diminui espaçamento vertical */
    font-size: 10px; /* diminui o tamanho da fonte */
  }

  /* Ajuste bolinhas carrossel para celular - CORRIGIDO PARA BOLINHAS REDONDAS */
  .estrutura-carousel .carousel-indicators {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    height: auto !important;
  }

  .estrutura-carousel .carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #bbb !important;
    opacity: 0.9 !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .estrutura-carousel .carousel-indicators .active {
    background-color: #1a237e !important;
    opacity: 1 !important;
  }

  /* Ajuste hr para efeito escada no mobile */
  .salary-steps {
    text-align: left;
  }

  .salary-steps .step {
    margin-bottom: 20px;
  }

  .step-junior hr {
    width: 60px;
    margin-left: 20px;
  }

  .step-pleno hr {
    width: 100px;
    margin-left: 40px;
  }

  .step-senior hr {
    width: 140px;
    margin-left: 60px;
  }
}

/* Menor que 576px */
@media (max-width: 576px) {
  /* Footer logo */
  footer img {
    width: 100%;
    max-width: 200px;
  }

  /* WhatsApp Form */
  #whatsappForm .btn {
    width: 100%;
    font-size: 16px;
  }

  /* Ajuste padding geral nas sections */
  section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1400px) {
  .hero-content {
    top: 520px;
  }
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll; /* desativa parallax no mobile */
  }
}

@media (max-width: 768px) {
  .icon-card h4.fw-bold {
    font-size: 18px !important;
    line-height: 1.2;
  }

  /* Parágrafos dentro dos cards */
  .icon-card > p {
    font-size: 10px;
    line-height: 1.4;
    margin: 4px 0;
  }
}

/* Telas intermediárias de 1155px a 1399px */
@media (min-width: 1155px) and (max-width: 1399.98px) {

  /* Floating cards - espaçamento e tamanho */
  .floating-cards {
    flex-wrap: wrap;
    gap: 50px;
    margin-top: -30px;
    margin-bottom: 50px;
    justify-content: center;
  }

  .icon-card {
    width: 130px;
    height: 130px;
  }

  .icon-card h4.fw-bold {
    font-size: 18px !important;
  }

  .icon-card > p {
    font-size: 12px;
    margin: 6px 0;
  }

  /* Hero content - altura e espaçamento */
  .hero-content {
    top: 450px;
    padding: 0 40px;
    text-align: center;
  }

  .hero {
    height: 650px;
  }

  /* Parallax spacing */
  .parallax-bg {
    padding: 80px 40px;
  }

  /* Estrutura (carousel) */
  .estrutura-carousel .carousel-img {
    height: 380px;
  }

  .estrutura-section .col-lg-6 {
    margin-bottom: 20px;
  }

  /* Degraus (perspectiva salarial) */
  .step-senior {
    margin-left: 180px;
  }

  .step-pleno {
    margin-left: 110px;
  }

  .step-junior {
    margin-left: 30px;
  }

  /* Ajuste de espaço entre seções */
  section {
    margin-bottom: 60px;
  }

  /* Botões */
  .btn-custom {
    padding: 18px 100px;
    font-size: 18px;
  }

  .btn-curriculo {
    font-size: 18px;
    padding: 12px 30px;
  }

  /* Menu - leve ajuste se necessário */
  header nav a {
    font-size: 14px;
    margin: 0 12px;
  }
}

@media (max-width: 991.98px) {
  .titulo-curso {

    text-shadow: 1px 1px 5px #1a237e;
    /* color: white; ou transparente se quiser só o contorno */
  }
}

  @media (max-width: 768px) {
    [data-aos] {
      opacity: 1 !important;
      transform: none !important;
    }
  }






