
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#020814;
  color:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:94%;
  max-width:1400px;
  margin:0 auto;
}

.header{
  position:relative;
  background:#030914;
  border-bottom:1px solid #0b2548;
  padding:18px 0;
  z-index:999;
}

.header-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  width:100px;
}


.nav-menu{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:15px;
  font-weight:bold;
}

.nav-menu a{
  transition:.3s;
}

.nav-menu a:hover{
  color:#168cff;
}


.btn-login{
  border:1px solid #168cff;
  padding:13px 24px;
  border-radius:8px;
  font-weight:bold;
  transition:.3s;
}

.btn-login:hover{
  background:#168cff;
}


.menu-toggle{
  width:48px;
  height:48px;
  border:none;
  background:none;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  z-index:1002;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:#fff;
  border-radius:10px;
  transition:.3s;
}


.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(6px);

  opacity:0;
  visibility:hidden;
  transition:.4s;

  z-index:998;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;

  width:50%;
  max-width:320px;
  height:100vh;

  background:
    linear-gradient(180deg,#031126,#020814);

  border-left:1px solid #0d376b;

  padding:110px 30px 40px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:.45s ease;

  z-index:1001;
}

.mobile-menu.active{
  right:0;
}


.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.mobile-nav a{
  font-size:18px;
  font-weight:600;
  color:#fff;
  transition:.3s;
}

.mobile-nav a:hover{
  color:#168cff;
}

.mobile-btn{
  width:100%;

  border:1px solid #168cff;
  color:#fff;

  padding:16px;
  border-radius:10px;

  font-weight:bold;
  font-size:16px;
  text-align:center;

  transition:.3s;
}

.mobile-btn:hover{
  background:#168cff;
}

@media(max-width:1000px){

  .nav-menu,
  .btn-login{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .logo img{
    width:100px;
  }

}

@media(max-width:600px){

  .mobile-menu{
    width:72%;
  }

}




.section-header h2{
  font-size:28px;
}

.section-header h2 span{
  color:#168cff;
  margin-right:12px;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;

  background:
  linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.72)),
  radial-gradient(circle at top right, rgba(0,119,255,.28), transparent 32%),
  url('img/capa-hero.png');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  padding:50px 0 40px;

  border-bottom:1px solid #10386f;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(to right,
  rgba(0,0,0,.82),
  rgba(0,0,0,.25));

  z-index:1;
}

.hero-wrapper{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:360px 1fr;
  align-items:center;

  gap:55px;
}



.hero-logo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-logo img{
  width:100%;
  max-width:320px;

  filter:
  drop-shadow(0 0 18px #008cff)
  drop-shadow(0 0 45px rgba(0,119,255,.45));
}



.hero-info{
  display:flex;
  flex-direction:column;
}

.hero-info h1{
  font-size:72px;
  line-height:1;
  font-weight:900;

  color:#fff;

  margin-bottom:10px;
}

.hero-info h1 span{
  color:#0a7cff;
}

.hero-info h2{
  width:100%;
  max-width:760px;

  font-size:28px;
  line-height:1.4;

  color:#fff;
  font-weight:700;

  text-align:left;

  margin-bottom:34px;
}

.hero-info h2 span{
  color:#0a7cff;
}



.hero-benefits{
  display:flex;
  align-items:flex-start;
  gap:26px;

  margin-bottom:28px;
}

.benefit-item{
  display:flex;
  align-items:flex-start;
  gap:10px;

  max-width:190px;
}

.benefit-item img{
  width:26px;

  filter:
  drop-shadow(0 0 8px rgba(0,119,255,.65));
}

.benefit-item strong{
  display:block;

  color:#fff;

  font-size:11px;
  font-weight:700;

  margin-bottom:3px;
}

.benefit-item p{
  color:#d6e5ff;

  font-size:11px;
  line-height:1.5;
}



.hero-btn{
  width:240px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  margin-left:110px;

  background:
  linear-gradient(180deg, #168cff, #0066ff);

  border-radius:10px;

  color:#fff;
  font-size:18px;
  font-weight:700;

  box-shadow:
  0 0 18px rgba(0,119,255,.35);

  transition:.3s;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

.hero-btn img{
  width:24px;
}



.hero-features{
  position:relative;
  z-index:2;

  margin-top:42px;

  display:grid;
  grid-template-columns:repeat(6, 1fr);

  background:rgba(4,10,24,.82);

  border:1px solid rgba(0,119,255,.14);
  border-radius:14px;

  overflow:hidden;

  backdrop-filter:blur(10px);
}

.feature-box{
  padding:22px 14px;

  text-align:center;

  border-right:1px solid rgba(0,119,255,.10);
}

.feature-box:last-child{
  border-right:none;
}

.feature-box img{
  width:48px;

  margin-bottom:14px;

  filter:
  drop-shadow(0 0 10px rgba(0,119,255,.5));
}

.feature-box h3{
  color:#fff;

  font-size:11px;
  font-weight:700;

  line-height:1.5;

  margin-bottom:5px;
}

.feature-box p{
  color:#c1d8ff;

  font-size:10px;
  line-height:1.4;

  max-width:120px;
  margin:0 auto;
}



.hero-title-wrapper{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:16px;

  margin:30px 0 18px;
}

.hero-line{
  width:100%;
  max-width:135px;
  height:2px;

  background:
  linear-gradient(to right,
  transparent,
  #0a7cff,
  transparent);

  box-shadow:
  0 0 12px rgba(0,119,255,.55);
}

.hero-title{
  color:#0a7cff;

  font-size:20px;
  font-weight:700;

  letter-spacing:5px;

  white-space:nowrap;

  text-shadow:
  0 0 12px rgba(0,119,255,.5);
}


.streaming-slider{
  position:relative;
  z-index:2;

  overflow:hidden;

  width:100%;
}

.streaming-track{
  display:grid;
  grid-template-columns:repeat(7, 1fr);

  gap:14px;

  width:100%;
}

.streaming-card{
  width:100%;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(180deg,
  rgba(5,12,28,.98),
  rgba(3,8,20,.98));

  border:1px solid rgba(0,140,255,.22);
  border-radius:10px;

  box-shadow:
  0 0 14px rgba(0,119,255,.10);

  padding:0 12px;
}

.streaming-card img{
  max-width:155px;
  max-height:62px;

  width:100%;
  object-fit:contain;

  filter:
  brightness(1.6)
  contrast(1.18)
  drop-shadow(0 0 10px rgba(255,255,255,.22));
}



.hero-bottom-info{
  position:relative;
  z-index:2;

  margin-top:18px;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;

  gap:12px;
}

.hero-bottom-item{
  display:flex;
  align-items:center;
  gap:7px;

  color:#dce8ff;

  font-size:13px;
  font-weight:500;
}

.hero-bottom-item img{
  width:14px;

  filter:
  brightness(1.3)
  drop-shadow(0 0 6px rgba(0,119,255,.65));
}

.hero-divider{
  width:1px;
  height:14px;

  background:
  linear-gradient(to bottom,
  transparent,
  #2b6fd1,
  transparent);

  opacity:.8;
}



@media(max-width:991px){

  .hero{
    padding:42px 0 45px;
  }

  .hero-wrapper{
    grid-template-columns:1fr;
    gap:38px;

    text-align:center;
  }

  .hero-logo img{
    max-width:240px;
  }

  .hero-info{
    align-items:center;
  }

  .hero-info h1{
    font-size:48px;
    line-height:1.1;
  }

  .hero-info h2{
    font-size:22px;
    line-height:1.5;

    text-align:center;

    margin-bottom:28px;
  }

  .hero-benefits{
    justify-content:center;
    flex-wrap:wrap;

    gap:14px;
  }

  .benefit-item{
    width:100%;
    max-width:320px;

    padding:16px;

    background:rgba(4,12,28,.62);

    border:1px solid rgba(0,119,255,.12);
    border-radius:12px;
  }

  .hero-btn{
    width:100%;
    max-width:320px;
    margin-left:0;
  }

  .hero-features{
    grid-template-columns:repeat(2, 1fr);
  }

  .feature-box{
    border-bottom:1px solid rgba(0,119,255,.10);
  }

  .hero-title{
    font-size:15px;
    letter-spacing:3px;

    text-align:center;
    white-space:normal;
  }

  .hero-line{
    max-width:60px;
  }

 

  .streaming-track{
    display:flex;
    gap:0;

    animation:slideMobile 21s infinite;
  }

  .streaming-card{
    min-width:100%;
    height:90px;
  }

  .streaming-card img{
    max-width:170px;
    max-height:62px;
  }

  .hero-divider{
    display:none;
  }

  .hero-bottom-info{
    gap:10px 14px;
    padding:0 10px;
  }

  @keyframes slideMobile{

    0%{ transform:translateX(0); }
    12%{ transform:translateX(0); }

    14%{ transform:translateX(-100%); }
    26%{ transform:translateX(-100%); }

    28%{ transform:translateX(-200%); }
    40%{ transform:translateX(-200%); }

    42%{ transform:translateX(-300%); }
    54%{ transform:translateX(-300%); }

    56%{ transform:translateX(-400%); }
    68%{ transform:translateX(-400%); }

    70%{ transform:translateX(-500%); }
    82%{ transform:translateX(-500%); }

    84%{ transform:translateX(-600%); }
    100%{ transform:translateX(-600%); }

  }

}

@media(max-width:600px){

  .hero{
    padding:35px 0 40px;
  }

  .hero-info h1{
    font-size:38px;
  }

  .hero-info h2{
    font-size:18px;
  }

  .hero-benefits{
    flex-direction:column;
    align-items:center;
  }

  .benefit-item{
    max-width:100%;
  }

  .hero-features{
    grid-template-columns:1fr;
  }

  .feature-box{
    border-right:none;
  }

  .feature-box p{
    max-width:200px;
  }

  .hero-btn{
    height:56px;
    font-size:19px;
  }

  .hero-bottom-item{
    background:rgba(0,119,255,.08);

    border:1px solid rgba(0,119,255,.12);

    padding:9px 14px;

    border-radius:999px;
  }

}


/*produtos*/

.products-section{
  padding:45px 0;
}

.section-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

.section-header h2{
  font-size:28px;
}

.section-header h2 span{
  color:#168cff;
  margin-right:12px;
}

.products-carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:15px;
}

.products-wrapper{
  overflow:hidden;
  width:100%;
}

.products-track{
  display:flex;
  transition:transform .5s ease;
  gap:22px;
}

.product-card{
  min-width:calc(25% - 17px);
  background:#041225;
  border:1px solid #0d376b;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 0 18px rgba(0,132,255,0.08);
  flex-shrink:0;
}

.product-card:hover{
  transform:translateY(-5px);
  transition:.3s;
  box-shadow:0 0 22px rgba(0,132,255,0.2);
}

.product-image{
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-image img{
  width:180px;
  object-fit:contain;
  transition:.3s;
}

.product-card:hover .product-image img{
  transform:scale(1.08);
}

.netflix{
  background:linear-gradient(135deg,#140000,#6e0000);
}

.disney{
  background:linear-gradient(135deg,#00143a,#002a68);
}

.spotify{
  background:linear-gradient(135deg,#002b16,#003f20);
}

.hbo{
  background:linear-gradient(135deg,#120022,#3b075e);
}

.amazon{
  background:linear-gradient(135deg,#00141f,#003b57);
}

.youtube{
  background:linear-gradient(135deg,#fff,#dedcdc);
}

.crunchyroll{
  background:linear-gradient(135deg,#2b1600,#ff7b00);
}

.deezer{
  background:linear-gradient(135deg,#130026,#35005e);
}

.product-info{
  padding:18px;
}

.product-badge{
  background:#087bff;
  padding:7px 12px;
  border-radius:6px;
  font-size:13px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:14px;
}

.product-info h3{
  font-size:18px;
  margin-bottom:8px;
}

.product-category{
  color:#9fb3c8;
  font-size:14px;
  margin-bottom:12px;
}

.product-price{
  font-size:22px;
  color:#00a2ff;
  font-weight:bold;
  margin-bottom:16px;
}

.btn-buy{
  display:block;
  text-align:center;
  background:#087bff;
  padding:13px;
  border-radius:7px;
  font-weight:bold;
  transition:.3s;
}

.btn-buy:hover{
  background:#0067d8;
}

.carousel-btn{
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:#087bff;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transition:.3s;
  flex-shrink:0;
}

.carousel-btn:hover{
  background:#0067d8;
  transform:scale(1.08);
}

@media(max-width:768px){

  .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .section-header h2{
    font-size:24px;
  }

  .product-card{
    min-width:100%;
  }

  .products-carousel{
    gap:10px;
  }

  .carousel-btn{
    width:40px;
    height:40px;
    font-size:20px;
  }

  .product-image{
    height:180px;
  }

  .product-image img{
    width:150px;
  }

}


/* RESPONSIVO */
@media(max-width:1000px){

  .nav-menu{
    display:none;
  }

}

/*sobre*/

.about-section{
  padding:110px 0 90px;
  background:#020814;
  position:relative;
  overflow:hidden;
}

.about-wrapper{
  width:94%;
  max-width:1400px;
  margin:0 auto;
}

.about-section::before{
  content:'';
  position:absolute;

  top:-180px;
  right:-180px;

  width:420px;
  height:420px;

  background:radial-gradient(circle, rgba(0,119,255,0.18), transparent 70%);
  pointer-events:none;
}

.about-top{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:70px;
  align-items:center;

  margin-bottom:70px;
}

.about-title h2{
  font-size:60px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-3px;
}

.about-title h2 span{
  display:block;

  background:linear-gradient(90deg, #00a2ff, #4dc3ff, #8be0ff);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.about-description{
  display:flex;
  justify-content:flex-end;
}

.about-description p{
  max-width:520px;

  font-size:23px;
  line-height:1.6;

  color:#f1f5ff;
}

.about-image{
  display:flex;
  justify-content:center;
  margin-bottom:40px;
}

.about-image img{
  width:100%;
  max-width:820px;

  border-radius:22px;

  border:1px solid rgba(0,140,255,0.18);

  box-shadow:
    0 0 40px rgba(0,119,255,0.12),
    0 0 120px rgba(0,119,255,0.06);
}

.about-image{
  display:flex;
  justify-content:center;

  max-width:900px;
  margin:0 auto 40px;
}

.about-button{
  display:flex;
  justify-content:center;
}

.about-btn{
  border:1px solid #168cff;
  color:#fff;

  padding:18px 34px;
  border-radius:10px;

  font-size:16px;
  font-weight:700;

  transition:.3s;
}

.about-btn:hover{
  background:#168cff;
  transform:translateY(-2px);
}

.about-image img{
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.about-image img:hover{
  transform:translateY(-4px);

  box-shadow:
    0 0 60px rgba(0,119,255,0.22),
    0 0 140px rgba(0,119,255,0.14);
}


@media(max-width:1000px){

  .about-section{
    padding:80px 0 70px;
  }

  .about-top{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;

    margin-bottom:50px;
  }

  .about-title h2{
    font-size:54px;
    letter-spacing:-2px;
  }

  .about-description{
    justify-content:center;
  }

  .about-description p{
    max-width:100%;
    font-size:21px;
  }

}

@media(max-width:768px){

  .about-section{
    padding:70px 0 60px;
  }

  .about-title h2{
    font-size:39px;
    line-height:1.1;
  }

  .about-description p{
    font-size:16px;
    line-height:1.7;
  }

  .about-top{
    gap:25px;
    margin-bottom:40px;
  }

  .about-image img{
    border-radius:18px;
  }

  .about-btn{
    width:100%;
    max-width:320px;

    text-align:center;

    padding:16px 24px;
  }

}

@media(min-width:1001px) and (max-width:1366px){

  .about-top{
    gap:50px;
    margin-bottom:50px;
  }

  .about-title h2{
    font-size:50px;
    line-height:1.08;
    letter-spacing:-2px;
  }

  .about-description p{
    font-size:18px;
    line-height:1.6;
    max-width:460px;
  }

  .about-image{
    max-width:760px;
  }

  .about-image img{
    max-width:600px;
    border-radius:20px;
  }

}

/*avaliacoes*/

.reviews-section{
  padding:90px 6%;
  overflow:hidden;
}

.reviews-header{
  text-align:center;
  margin-bottom:45px;
}

.reviews-header h2{
  font-size:42px;
  font-weight:800;
  color:#fff;
  margin-bottom:10px;
}

.reviews-header p{
  color:#b4c3d3;
  font-size:18px;
}

.reviews-slider{
  width:100%;
  overflow:hidden;
}

.reviews-track{
  display:flex;
  gap:25px;
}

.review-card{
  background:#050b14;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:28px;
  min-width:calc(25% - 19px);
  box-shadow:
  0 0 20px rgba(0,0,0,0.5),
  0 0 20px rgba(0,132,255,0.05);
  transition:.4s;
  position:relative;
}

.review-card:hover{
  transform:translateY(-8px);
  border-color:#168cff;
  box-shadow:
  0 0 25px rgba(0,132,255,0.2),
  0 0 60px rgba(0,132,255,0.08);
}

.featured-review{
  border:2px solid #ffffff;
  box-shadow:
  0 0 25px rgba(255,255,255,0.25),
  0 0 45px rgba(255,255,255,0.12);
}

.review-stars{
  margin-bottom:22px;
}

.review-stars img{
  width:110px;
}

.review-text{
  color:#fff;
  font-size:18px;
  line-height:1.45;
  margin-bottom:30px;
  min-height:130px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:15px;
}

.review-avatar{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#2d2f35;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:22px;
  flex-shrink:0;
}

.review-info h4{
  color:#fff;
  font-size:22px;
  margin-bottom:4px;
}

.review-info span{
  color:#d4d4d4;
  font-size:17px;
}

@media(max-width:768px){

  .reviews-section{
    padding:70px 5%;
  }

  .reviews-header{
    margin-bottom:35px;
  }

  .reviews-header h2{
    font-size:32px;
  }

  .reviews-header p{
    font-size:16px;
  }

  .reviews-track{
    transition:transform .6s ease;
  }

  .review-card{
    min-width:100%;
    padding:25px;
  }

  .review-text{
    font-size:17px;
    min-height:auto;
  }

  .review-info h4{
    font-size:20px;
  }

  .review-info span{
    font-size:15px;
  }

}

/* FORMULÁRIO */
.contact-form-section{
  padding:90px 6%;
  display:flex;
  justify-content:center;
}

.contact-form-container{
  width:100%;
  max-width:700px;

  background:rgba(7, 16, 30, 0.55);

  backdrop-filter:blur(18px);

  border:1px solid rgba(22,140,255,0.35);

  border-radius:28px;

  padding:45px;

  box-shadow:
  0 0 30px rgba(0,132,255,0.10),
  0 0 60px rgba(0,132,255,0.05);

  position:relative;

  overflow:hidden;
}

.contact-form-container::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(0,132,255,0.12);
  filter:blur(90px);
  top:-60px;
  right:-60px;
  border-radius:50%;
}


.contact-form-header{
  text-align:center;
  margin-bottom:35px;
  position:relative;
  z-index:2;
}

.contact-form-header h2{
  font-size:42px;
  color:#fff;
  margin-bottom:12px;
  font-weight:800;
}

.contact-form-header p{
  color:#b8c5d6;
  font-size:17px;
  line-height:1.5;
}


.whatsapp-form{
  display:flex;
  flex-direction:column;
  gap:22px;
  position:relative;
  z-index:2;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  color:#fff;
  font-size:15px;
  font-weight:600;
}

.form-group input,
.form-group select{
  width:100%;
  height:58px;

  border:1px solid rgba(22,140,255,0.25);

  background:rgba(255,255,255,0.03);

  border-radius:14px;

  padding:0 18px;

  color:#fff;

  font-size:16px;

  outline:none;

  transition:.3s;
}

.form-group input::placeholder{
  color:#8fa3ba;
}

.form-group select{
  cursor:pointer;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#168cff;

  box-shadow:
  0 0 0 4px rgba(22,140,255,0.10),
  0 0 18px rgba(22,140,255,0.18);
}

.form-group option{
  background:#07101e;
  color:#fff;
}

.submit-btn{
  width:100%;
  height:60px;

  border:none;

  border-radius:16px;

  background:linear-gradient(135deg,#168cff,#006eff);

  color:#fff;

  font-size:17px;

  font-weight:700;

  cursor:pointer;

  transition:.35s;

  margin-top:10px;

  box-shadow:
  0 10px 25px rgba(0,132,255,0.18);
}

.submit-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 15px 30px rgba(0,132,255,0.28);
}

@media(max-width:768px){

  .contact-form-section{
    padding:70px 5%;
  }

  .contact-form-container{
    padding:30px 22px;
    border-radius:24px;
  }

  .contact-form-header{
    margin-bottom:28px;
  }

  .contact-form-header h2{
    font-size:30px;
  }

  .contact-form-header p{
    font-size:15px;
  }

  .form-group input,
  .form-group select{
    height:54px;
    font-size:15px;
  }

  .submit-btn{
    height:56px;
    font-size:16px;
  }

}

/* FOOTER */
.footer{
  position:relative;
  margin-top:80px;
  padding:75px 0 25px;

  background:
  linear-gradient(180deg,#041225 0%, #020814 100%);

  border-top:1px solid rgba(22,140,255,0.18);

  overflow:hidden;
}

.footer::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;

  background:rgba(0,132,255,0.10);

  filter:blur(120px);

  top:-120px;
  right:-120px;

  border-radius:50%;
}

.footer-grid{
  position:relative;
  z-index:2;

  display:grid;

  grid-template-columns:
  1.6fr
  1fr
  1fr
  1.3fr;

  gap:55px;
}

.footer-brand img{
  width: 150px;
  margin-bottom:20px;
}

.footer-brand p{
  color:#b7c8dc;
  line-height:1.7;
  margin-bottom:10px;
  font-size:15px;
  max-width:280px;
}

.footer h4{
  color:#fff;
  font-size:20px;
  margin-bottom:24px;
  font-weight:700;
  position:relative;
}

.footer h4::after{
  content:"";
  width:45px;
  height:3px;

  background:#168cff;

  position:absolute;
  left:0;
  bottom:-10px;

  border-radius:10px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#b7c8dc;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s;
  width:fit-content;
  font-size:15px;
}

.footer-links a:hover{
  color:#168cff;
  transform:translateX(4px);
}

.footer-contact p{
  color:#b7c8dc;
  margin-bottom:14px;
  font-size:15px;
  line-height:1.6;
}

.payments-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.payment-item{
  min-width:72px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  border-radius:12px;

  color:#fff;

  font-size:13px;
  font-weight:700;

  transition:.3s;
}

.payment-item:hover{
  border-color:#168cff;

  transform:translateY(-3px);

  box-shadow:
  0 0 18px rgba(0,132,255,0.18);
}

.footer-copy{
  position:relative;
  z-index:2;

  text-align:center;

  margin-top:60px;

  padding-top:25px;

  border-top:1px solid rgba(255,255,255,0.06);

  color:#7e95b1;

  font-size:14px;
}

@media(max-width:1100px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:45px;
  }

}

@media(max-width:768px){

  .footer{
    margin-top:60px;
    padding:60px 0 20px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .footer-brand{
    text-align:center;
  }

  .footer-brand img{
    width:180px;
    margin:0 auto 18px;
    display:block;
  }

  .footer-brand p{
    max-width:100%;
    font-size:14px;
  }

  .footer h4{
    font-size:18px;
    margin-bottom:22px;
  }

  .footer h4::after{
    width:38px;
  }

  .footer-links a,
  .footer-contact p{
    font-size:14px;
  }

  .payments-list{
    gap:10px;
  }

  .payment-item{
    min-width:68px;
    height:40px;
    font-size:12px;
  }

  .footer-copy{
    margin-top:45px;
    padding-top:20px;
    font-size:13px;
  }

}

