*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', sans-serif;
    background-color: #0f0f0f;
}

header {
    background: rgba(8, 8, 9, 0.68);
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, #353535, transparent) 1;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0rem 2.5rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand img {
    height: 35px;
    width: auto;
}

.nav-container ul {
    display: flex;
    list-style: none;
    gap: 0.7rem;
}

.nav-container a {
    color: rgb(184, 184, 184);
    text-decoration: none;
    font-size: large;
    padding: 10px 15px;
    transition: 0.3s;
    display: flex;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: 10px;
    text-transform: uppercase;
}

.nav-container a svg{
    height: 20px;
    width: 20px;
}

.nav-container a:hover {
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-right a {
    margin-left: 2.0rem;
    display: flex;
    align-items: center;
}

.nav-right a svg{
    height: 30px;
    width: 30px;
}

.btn-nav {
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-nav:hover {
    color: #888;
}

.slider{
    width: 100%; 
    height: 60vh;
    margin-top: 120px;
    background-color: #252525;  
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.393);
}

footer {
    background-color: #1a1a1a;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    margin: 0 auto;
    padding: 0 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-content img {
    height: 25px;
    width: auto;
    filter: brightness(9999999);
}

.footer-content p {
    color: #aaa;
    font-size: 0.9rem;
    flex: 1;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.categorias-nav-streamings {
    display: flex;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 22px 34px 0 rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.2rem;
    backdrop-filter: blur(10px);
    z-index: 1000;
    background-color: rgba(23, 23, 23, 0.83);
}

.categorias-nav-streamings img {
  height: 25px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  margin: auto;
}

.categorias-nav-streamings a {
  padding: 10px 20px;
  margin-right: 6px;
  vertical-align: top;
  align-self: center;
  border: none;
  border-radius: 100px;
  transition: background-color 0.3s ease;
  height: 45px;
  color: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.categorias-nav-streamings a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#active {
  background-color: rgb(255, 255, 255);
}

#active svg {
  stroke: black !important;
}

#active img {
  filter: brightness(0) invert(0) !important;
}

#index {
  height: 100vh;
}