body{
  background:url("../assets/america_dota.png");
  background-size:cover;
  background-repeat:no-repeat;
  background-position:65% center;
  position:relative;
}

body::before{

content:"";

position:fixed;
inset:0;

background:linear-gradient(
90deg,
rgba(2,6,23,0.96) 0%,
rgba(2,6,23,0.92) 35%,
rgba(2,6,23,0.85) 55%,
rgba(2,6,23,0.65) 75%,
rgba(2,6,23,0.55) 100%
);

z-index:0;
pointer-events:none;

}


/* HERO */

.hero{
min-height:100svh;
display:flex;
align-items:center;
padding:80px;

position:relative;
z-index:1;
}

.hero-content {
  max-width: 640px;
}

/* BRAND */

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.brand img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.brand h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
}

/* TEXT */

.subtitle {
  font-size: 1.35rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 56px;
}

/* ACTIONS */

.actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* TABLET */

@media (max-width: 1200px) {
  body {
    background-position: 55% center;
  }
}

/* MOBILE */

@media (max-width: 900px) {

  body{
    background:url("../assets/america_dota_mobile.png");
    background-size:cover;
    background-position:center top;
  }

  body::before{
    background:linear-gradient(
    180deg,
    rgba(2,6,23,0.97) 0%,
    rgba(2,6,23,0.94) 40%,
    rgba(2,6,23,0.88) 70%,
    rgba(2,6,23,0.8) 100%
    );
  }

  .hero {
    padding: 48px 24px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .brand {
    align-items: center;
  }

  .brand img {
    width: 140px;
    margin-bottom: 16px;
  }

  .brand h1 {
    font-size: 2.6rem;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 18px;
  }
  .logos{
    justify-content:center;
  }

  .logos img{
    width:110px;
  }

  .logo-divider{
    height:50px;
  }
}

/* LOGOS HERO */

.logos{
  display:flex;
  align-items:center;
  gap:28px;
  margin-bottom:40px;
}

.logos img{
  width:160px;
  height:auto;
  object-fit:contain;
}

/* separador */

.logo-divider{
  width:2px;
  height:70px;
  background:linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}