/* ============================================
   HOME — SECCIONES DEBAJO DEL HERO
   (clientes, credibilidad, proyectos destacados)
   ============================================ */

.home-section-label {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.home-section-title {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

/* --- CLIENTES --- */
.home-clientes {
  padding: 4.5rem 3rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-clientes .home-section-label {
  margin-bottom: 2.5rem;
}

.home-clientes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}

.home-cliente-logo img {
  max-width: 110px;
  max-height: 40px;
  width: auto;
  height: auto;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: 0.55;
  transition: var(--transition);
}

.home-cliente-logo:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

/* --- CREDIBILIDAD --- */
.home-credibilidad {
  padding: 4.5rem 3rem;
  background: var(--gray-800);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-credibilidad-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.home-stat-numero {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--orange);
}

.home-stat-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* --- PROYECTOS DESTACADOS --- */
.home-proyectos {
  padding: 6rem 3rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-proyectos-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.home-proyectos-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.home-proyecto-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--gray-800);
}

.home-proyecto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-proyecto-card:hover img {
  transform: scale(1.06);
}

.home-proyecto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.home-proyecto-categoria {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.home-proyecto-titulo {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  white-space: pre-line;
}

.home-proyectos-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.home-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem;
}

.home-loading-pulse {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: home-spin 1s linear infinite;
}

@keyframes home-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-loading span {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .home-clientes,
  .home-credibilidad,
  .home-proyectos {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .home-credibilidad-grid {
    gap: 2.5rem;
  }
}
