.section--home .home{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 70px;
}

.section--home .home__overlay{
  background: var(--overlay-white);
  backdrop-filter: blur(2px);
}

.section--home .home__content{
  max-width: 1100px;
  margin-left: 6rem;
  padding-top: 5rem;
  color: var(--text-soft);
}

.section--home .home__logo{
  width: 260px;
  height: auto;
  margin-bottom: 2.5rem;
}

.section--home .home__title{
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1.5rem 0;
  color: var(--text-soft);
}

.section--home .home__text{
  font-size: 1.35rem;
  line-height: 1.55;
  max-width: 1100px;
  margin: 0 0 2rem 0;
  color: var(--text-body);
}

.section--home .home__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px){
  .section--home .home__content{
    margin-left: 3rem;
    padding-top: 3rem;
    max-width: 600px;
  }
  .section--home .home__logo{ width: 200px; }
  .section--home .home__title{ font-size: 3.5rem; }
  .section--home .home__text{ font-size: 1.15rem; }
}

@media (max-width: 768px){
  .section--home .home{
    padding: 18px;     /* menos padding */
    align-items: flex-start;
  }

  .section--home .home__logo{
    width: 150px;
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .section--home .home__title{
    font-size: 2.2rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .section--home .home__text{
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: left;   /* en móvil suele verse mejor que justificado */
  }

  .section--home .home__cta{
    gap: 12px;
  }

  .btn{
    width: 100%;
    max-width: 360px;
    min-width: 0;
    height: 52px;
  }
}

@media (max-width: 480px){
  .section--home .home__content{
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 2rem;
  }
  .section--home .home__logo{ width: 150px; }
  .section--home .home__title{ font-size: 2.2rem; }
  .section--home .home__text{ font-size: 0.95rem; }
  .btn{ padding: 0.7rem 1.6rem; font-size: 0.9rem; }
}
