/* SEÇÃO GERAL */
.section {
  padding: 80px 24px;
}

/* LAYOUT GRID */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: stretch;
}

/* BLOCO PRINCIPAL */
.hero-text {
  background: var(--beige);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--blue-deep, #2b3b52);
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(30, 35, 45, 0.9);
  margin-bottom: 24px;
}

/* META INFORMAÇÕES */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.pill {
  background: var(--accent-2);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-deep);
}

/* BOTÕES */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--brown, rgb(116, 79, 45));
  color: var(--beige, #fdfaf4);
}

.btn-primary:hover {
  background: #8b6034;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
}

.btn-ghost:hover {
  background: var(--accent);
  transform: translateY(-2px);
  color: white;
}

/* ASIDE */
aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

aside .cardHeader {
  background: var(--beige-2);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

aside .cardHeader:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

aside h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--blue-deep, #2b3b52);
}

aside .muted {
  color: rgba(40, 40, 40, 0.75);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text, aside {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-text {
    padding: 24px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
  }
}
