/* ========================================
   SESSION-01: HERO
   ======================================== */

#sec-1 {
  background: linear-gradient(135deg, #F7F9FC 0%, #E8F0FE 100%);
  position: relative;
  margin-top: -70px;
  padding-top: 100px !important;
}

#sec-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 183, 3, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

#sec-1 .container {
  position: relative;
  z-index: 1;
}

#sec-1 img {
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-width: 300px;
  width: 100%;
  height: auto;
}

#sec-1 h1 {
  color: var(--cor-texto-principal);
  font-size: 3.5rem;
}

#sec-1 h2 {
  color: var(--cor-primaria);
  font-weight: 600;
}

#sec-1 .lead {
  color: var(--cor-texto-secundario);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  #sec-1 {
    padding-top: 80px !important;
  }

  #sec-1 img {
    max-width: 200px;
  }

  #sec-1 h1 {
    font-size: 2rem;
  }

  #sec-1 h2 {
    font-size: 1.25rem;
  }

  #sec-1 .lead {
    font-size: 0.95rem;
  }
}

