/* ==========================================================================
   home.css — Layout específico para /index.html
   ========================================================================== */

.hero--home{
  padding: 52px 0 28px;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero__kicker{
  margin: 0 0 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.hero__title{
  margin: 0 0 12px;
  font-size: clamp(2.0rem, 3.8vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero__subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.05rem;
}

.hero__cta{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__trust{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__mini{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__media{
  display:flex;
  align-items:stretch;
  justify-content:center;
}

.hero__media-frame{
  position: relative;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(10,44,255,0.14);
  box-shadow: 0 40px 120px rgba(11,18,32,0.16);
  background: linear-gradient(180deg, rgba(10,44,255,0.04), rgba(20,184,255,0.02));
}

.hero__media-frame img{
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__badge{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(11,18,32,0.70);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 90px rgba(11,18,32,0.26);
}
.hero__badge-title{
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.01em;
}
.hero__badge-text{
  margin: 2px 0 0;
  opacity: 0.85;
  font-size: 0.92rem;
}

/* About preview tweaks */
.about{
  align-items:start;
}
.about__panel{
  position: sticky;
  top: 92px;
}

/* Services spacing */
[data-services-grid]{
  margin-top: 8px;
}

/* News spacing */
[data-posts-grid]{
  margin-top: 6px;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{
    grid-template-columns: 1fr;
  }
  .hero__media-frame img{
    min-height: 360px;
  }
  .about__panel{
    position: static;
  }
}

@media (max-width: 720px){
  .hero--home{
    padding: 36px 0 18px;
  }
  .hero__mini{
    grid-template-columns: 1fr;
  }
}
