/* ========================= */
/* LANDING BASE */
/* ========================= */

html, body{
  height:auto;
  overflow:auto;
}

body{
  background:radial-gradient(circle at top,#0f172a,#020617);
  color:#e5e7eb;
  font-family:'Inter', Segoe UI, sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}

/* ========================= */
/* LANDING NO USA LAYOUT APP */
/* ========================= */

.layout,
.sidebar,
.container{
  all:unset;
}

/* ========================= */
/* HERO, SECTIONS */
/* ========================= */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px 20px;
}

.hero-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
}

@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
}
/* =========================================================
   STREAMING CLUB — HERO PORTADA REAL
   ========================================================= */

.hero{
    position:relative !important;
    isolation:isolate !important;
    overflow:hidden !important;
    background:#020817 !important;
}

/* PORTADA */
.hero::before{
    content:"" !important;

    position:absolute !important;
    inset:0 !important;

    z-index:0 !important;

    background-image:url("../img/hero-samhub.jpg") !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;

    transform:scale(1.03) !important;

    filter:
        saturate(1.15)
        contrast(1.08)
        brightness(.75) !important;

    pointer-events:none !important;
}

/* OSCURECER LA PORTADA */
.hero::after{
    content:"" !important;

    position:absolute !important;
    inset:0 !important;

    z-index:1 !important;

    background:
        linear-gradient(
            90deg,
            rgba(2,8,23,.96) 0%,
            rgba(2,8,23,.82) 28%,
            rgba(2,8,23,.45) 55%,
            rgba(2,8,23,.15) 78%,
            rgba(2,8,23,.55) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2,8,23,.65) 0%,
            transparent 45%,
            rgba(2,8,23,.90) 100%
        ) !important;

    pointer-events:none !important;
}

/* CONTENIDO ENCIMA DE LA IMAGEN */
.hero-grid{
    position:relative !important;
    z-index:5 !important;
}

.hero-content{
    position:relative !important;
    z-index:10 !important;
}
