/* =======================================
   HOME – overrides SOLO para esta página
   (no toca otras páginas)
   ======================================= */



.page-home main .container {
  max-width: 1100px;  /* o el valor que definamos como estándar */
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}




/* Hero: fondo blanco, corte limpio, compacto */
.page-home .hero{
  background: var(--white);
  padding: 28px 0 32px;
  border-bottom: 1px solid #eee;
  box-shadow: none;
}
.page-home .hero::before,
.page-home .hero::after{
  content: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* Desktop: misma “postura” que en ¿Qué es…? (lectura izquierda) */
@media (min-width: 992px){
  .page-home .hero .hero-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left !important;     /* pisa el center global */
  }
  .page-home .hero .hero-text{
    flex: 1 1 55%;
    max-width: 700px;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .page-home .hero .hero-text > *{ text-align: left !important; }

  /* Tipografías: igual escala que el hero de ¿Qué es…? */
  .page-home .hero .hero-title-desktop{
    font-size: 2.8rem;               /* 2.6–2.8 si querés afinar */
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--blue);
  }
  .page-home .hero .hero-text-desktop{
    font-size: 1.2rem;
    line-height: 1.45;
    margin-bottom: 10px !important;  /* acerca las frases */
  }

  /* CTA más pegado y alineado al texto */
  .page-home .hero .hero-cta-desktop{
    align-self: flex-start;
    margin-top: 14px;
  }

  /* Logo un poco más chico para balance */
  .page-home .hero .hero-image{ flex: 1 1 45%; display:flex; justify-content:center; }
  .page-home .hero .hero-logo-big{ max-width: 360px; }
}

/* Mobile: dejamos tu comportamiento actual, solo compacidad */
@media (max-width: 991.98px){
  .page-home .hero{ padding: 22px 0 26px; }
}

/* Resaltado naranja en el 1er párrafo del hero (desktop) */
@media (min-width: 992px){
  /* Solo el PRIMER <p class="hero-text-desktop"> del bloque */
  .page-home .hero .hero-text p.hero-text-desktop:nth-of-type(1) strong{
    color: var(--orange);
    font-weight: 800;
  }
  /* El segundo <p> mantiene el color original */
  .page-home .hero .hero-text p.hero-text-desktop:nth-of-type(2) strong{
    color: inherit;
  }
}

/* Opcional: acercar el bloque de categorías al hero */
.page-home .categories{ padding-top: 28px; }


