/* ========================================
   INDEPAR - Home Styles
   ======================================== */

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #1B2A5E 0%, #0F1B3D 60%, #0a1230 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(184, 148, 62, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 2rem;
  position: relative;
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 2.75rem;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero .gold-line {
  margin: 1.5rem auto;
  width: 80px;
}

/* --- Intro --- */
.intro {
  padding: 5rem 0;
}

.intro__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.intro__content h2 {
  margin-bottom: 0.5rem;
}

.intro__content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Services Preview --- */
.services-preview .cards-grid {
  margin-top: 0;
}

/* --- Commitment --- */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}

.commitment-item {
  text-align: center;
  padding: 1.5rem;
}

.commitment-item__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.commitment-item__icon svg {
  width: 100%;
  height: 100%;
}

.commitment-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.commitment-item p {
  font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero { padding: 4rem 0 3.5rem; }
  .hero__logo { width: 120px; height: 120px; }
  .hero h1 { font-size: 2rem; }
  .hero__subtitle { font-size: 1rem; }
  .commitment-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
