/* seção geral */
.hero {
  position: relative;
  padding: 5rem 0rem;
  background: linear-gradient(to bottom right, #eff6ff, #e0e7ff); /* blue-50 → indigo-100 */
  overflow: hidden;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

.content h1 {
  font-size: 3rem;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .content h1 { font-size: 3.75rem; }
}

.subtitle {
  font-size: 1.25rem;
  color: #4b5563; /* gray-600 */
  margin-top: 1rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.search-box {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 0.5rem;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af; /* gray-400 */
}

.search-box input {
  width: 100%;
  padding: 1.5rem 1rem 1.5rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background-color: #2563eb; /* blue-600 */
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
}

.stats {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.stat { text-align: center; }

.stat-number {
  font-size: 1.875rem;
  color: #2563eb; /* blue-600 */
}

.stat-label {
  color: #4b5563; /* gray-600 */
}

.divider { border-left: 1px solid #d1d5db; padding-left: 1rem; }

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 31.25rem; /* 500px */
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(2rem);
}

.shape.yellow {
  width: 8rem;
  height: 8rem;
  background: #facc15; /* yellow-400 */
  bottom: -1.5rem;
  left: -1.5rem;
}

.shape.blue {
  width: 10rem;
  height: 10rem;
  background: #60a5fa; /* blue-400 */
  top: -1.5rem;
  right: -1.5rem;
}