/* ==========================================================================
   HERO / BANNER PRINCIPAL (DESENHO FIEL AO WORDPRESS)
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: #0a2540; /* Fundo Azul Marinho solícito */
  padding: 80px 0 160px;
  overflow: hidden;
  color: #ffffff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Coluna da Esquerda: Imagem + Elemento Decorativo */
.hero-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 30px;
}

/* Container do Elemento Decorativo Atrás do Homem */
.hero-decorative-backdrop {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  height: 410px;
  z-index: 1;
  pointer-events: none;
}

/* Arco Principal em Tom Cinza Claro (#e5e7eb) com Gradiente Suave e Sombra de Profundidade */
.hero-arch-main {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 55%, #d1d5db 100%);
  border-radius: 155px 155px 0 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28), 0 8px 18px rgba(10, 37, 64, 0.2);
}

/* 4 Anéis Concêntricos Finos em Cinza Mais Claro */
.hero-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1.5px solid rgba(243, 244, 246, 0.55);
  border-bottom: none;
  border-radius: 500px 500px 0 0;
}

.hero-ring.ring-1 {
  width: 335px;
  height: 422px;
  border-color: rgba(243, 244, 246, 0.6);
}

.hero-ring.ring-2 {
  width: 360px;
  height: 434px;
  border-color: rgba(243, 244, 246, 0.42);
}

.hero-ring.ring-3 {
  width: 385px;
  height: 446px;
  border-color: rgba(243, 244, 246, 0.28);
}

.hero-ring.ring-4 {
  width: 410px;
  height: 458px;
  border-color: rgba(243, 244, 246, 0.16);
}

/* Formas Geométricas Pequenas (8-16px) Flutuantes */
.hero-geo {
  position: absolute;
  background: #f3f4f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0.88;
  animation: floatGeo 4s ease-in-out infinite alternate;
}

.hero-geo.shape-circle-1 {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 15px;
  left: -22px;
  background: #e5e7eb;
}

.hero-geo.shape-square-1 {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  top: 55px;
  right: -26px;
  transform: rotate(15deg);
  background: #ffffff;
  animation-delay: 0.8s;
}

.hero-geo.shape-circle-2 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 175px;
  left: -35px;
  background: #d1d5db;
  animation-delay: 1.5s;
}

.hero-geo.shape-square-2 {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  top: 235px;
  right: -38px;
  transform: rotate(40deg);
  background: #e5e7eb;
  animation-delay: 2.2s;
}

.hero-geo.shape-circle-3 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 315px;
  left: -18px;
  background: #ffffff;
  animation-delay: 1s;
}

@keyframes floatGeo {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(12deg); }
}

/* Homem Sobreposto com z-index: 2 */
.hero-image-wrapper img {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
}

/* Coluna da Direita: Textos e Botão */
.hero-content-col {
  flex: 1;
  max-width: 540px;
}

.hero-title {
  font-family: var(--font-poppins, 'Poppins', sans-serif);
  font-size: 3.1rem; /* ~50px */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-family: var(--font-mulish, 'Mulish', sans-serif);
  font-size: 0.95rem; /* 15px */
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 490px;
}

/* Botão Branco Matricule-se */
.btn-matricule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #082846;
  font-family: var(--font-poppins, 'Poppins', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-matricule:hover {
  background-color: #ff6b35;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Divisor Curvo SVG Invertido (Transição suave para o branco) */
.hero-shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.hero-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 95px;
}

.hero-shape-divider .shape-fill {
  fill: #ffffff; /* Cor de fundo da seção seguinte */
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 140px;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    gap: 40px;
  }
  
  .hero-content-col {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-decorative-backdrop {
    width: 270px;
    height: 360px;
  }

  .hero-arch-main {
    border-radius: 135px 135px 0 0;
  }

  .hero-ring.ring-1 { width: 290px; height: 370px; }
  .hero-ring.ring-2 { width: 310px; height: 380px; }
  .hero-ring.ring-3 { width: 330px; height: 390px; }
  .hero-ring.ring-4 { width: 350px; height: 400px; }

  .hero-image-wrapper img {
    max-width: 370px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 45px 0 115px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 5px;
  }

  .btn-matricule {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .hero-decorative-backdrop {
    width: 230px;
    height: 310px;
  }

  .hero-arch-main {
    border-radius: 115px 115px 0 0;
  }

  .hero-ring.ring-1 { width: 248px; height: 320px; }
  .hero-ring.ring-2 { width: 266px; height: 328px; }
  .hero-ring.ring-3 { width: 284px; height: 336px; }
  .hero-ring.ring-4 { width: 302px; height: 344px; }

  .hero-image-wrapper img {
    max-width: 290px;
  }

  .hero-geo.shape-circle-1 { left: -10px; top: 10px; }
  .hero-geo.shape-square-1 { right: -12px; top: 40px; }
  .hero-geo.shape-circle-2 { left: -15px; top: 140px; }
  .hero-geo.shape-square-2 { right: -18px; top: 190px; }
  .hero-geo.shape-circle-3 { left: -8px; top: 250px; }
}
