html{
    scroll-behavior:auto;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050816;
  color:white;
  font-family:'Poppins',sans-serif;
}

/* NAVBAR */

.navbar{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;
  border-bottom:1px solid rgba(255,255,255,0.08);

  position:fixed;
  top:0;

  backdrop-filter: blur(4px);
  background:rgba(5,8,22,0.7);

  z-index:1000;
}

.logo{
  font-size:24px;
  font-weight:700;
  color:#18b4ff;
}

.menu{
  display:flex;
  list-style:none;
  gap:40px;
}

.menu a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s;
}

.menu a:hover{
  color:#18b4ff;
}

.btn-nav{
  text-decoration:none;
  color:white;

  border:1px solid #18b4ff;

  padding:12px 22px;
  border-radius:12px;

  transition:0.3s;
}

.btn-nav:hover{
  background:#18b4ff;
  color:black;
}

/* HERO */

.hero{
  position:relative;

  padding:
  170px 8% 90px;

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:60px;
}

.hero-text{
  flex:1;
}

.hero-text h1{
  font-size:64px;
  line-height:1.1;
  margin-bottom:25px;

  max-width:700px;
}

.hero-text p{
  font-size:18px;
  color:#a9b3c9;

  line-height:1.7;
  max-width:600px;

  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn-primary{
  background:linear-gradient(135deg,#18b4ff,#0066ff);

  color:white;

  text-decoration:none;

  padding:16px 28px;

  border-radius:14px;

  font-weight:700;

  transition:0.3s;

  box-shadow:
  0 0 20px rgba(24,180,255,0.35);
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 25px rgba(24,180,255,0.5);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.15);

  color:white;
  text-decoration:none;

  padding:16px 28px;
  border-radius:14px;

  transition:0.3s;
}

.btn-secondary:hover{
  border-color:#18b4ff;
  color:#18b4ff;
}

.hero-image{
  flex:1;
}

.hero-image img{
  width:100%;

  border-radius:24px;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 0 60px rgba(24,180,255,0.12);

  transition:0.4s;
}

/* SERVICES */

.services{
  padding:80px 8%;
}

.services h2{
  font-size:42px;
  margin-bottom:50px;
  text-align:center;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:rgba(12,18,36,0.75);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.06);

  padding:35px;
  border-radius:22px;

  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);

  border-color:#18b4ff;

  box-shadow:
  0 0 30px rgba(24,180,255,0.15);
}

.card h3{
  font-size:24px;
  margin-bottom:15px;
}

.card p{
  color:#9ba8c7;
  line-height:1.6;
}

/* RESPONSIVO */

@media(max-width:980px){

  .hero{
    flex-direction:column;
  }

  .hero-text h1{
    font-size:48px;
  }

  .menu{
    display:none;
  }
}
body::before{
  content:'';

  position:fixed;
  width:600px;
  height:600px;

  background:#18b4ff;

  filter:blur(90px);

  opacity:0.12;

  top:-200px;
  right:-200px;

  z-index:-1;
}
.card{
  position:relative;
  overflow:hidden;
}
.card::before{
  content:'';

  position:absolute;

  width:200px;
  height:200px;

  background:rgba(24,180,255,0.08);

  border-radius:50%;

  top:-100px;
  right:-100px;
}
.navbar{
  box-shadow:
  0 0 30px rgba(0,0,0,0.35);
}
.active{
  color:#18b4ff !important;
  position:relative;
}

.active::after{
  content:'';

  position:absolute;

  width:100%;
  height:2px;

  background:#18b4ff;

  bottom:-8px;
  left:0;
}
body{
  background:
  radial-gradient(circle at top right,
  rgba(24,180,255,0.12),
  transparent 35%),
  #050816;
}
.hero-image img:hover{
  transform:scale(1.02);
}
.hero-text{
  animation:fadeLeft 1s ease;
}

.hero-image{
  animation:fadeRight 1s ease;
}

@keyframes fadeLeft{
  from{
    opacity:0;
    transform:translateX(-50px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes fadeRight{
  from{
    opacity:0;
    transform:translateX(50px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }
}
/* STATS */

.stats{
  padding:40px 8%;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:25px;
}

.stat-box{
  background:
  rgba(12,18,36,0.75);

  border:
  1px solid rgba(255,255,255,0.06);

  border-radius:22px;

  padding:40px;

  text-align:center;

  backdrop-filter:blur(12px);

  transition:0.3s;
}

.stat-box:hover{
  transform:translateY(-6px);

  border-color:#18b4ff;

  box-shadow:
  0 0 30px rgba(24,180,255,0.15);
}

.stat-box h3{
  font-size:42px;

  color:#18b4ff;

  margin-bottom:12px;
}

.stat-box p{
  color:#9ba8c7;
}

/* CTA */

.cta{
  margin:80px 8%;

  padding:60px;

  border-radius:32px;

  background:
  linear-gradient(
  135deg,
  rgba(24,180,255,0.15),
  rgba(0,102,255,0.08)
  );

  border:
  1px solid rgba(24,180,255,0.12);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;

  overflow:hidden;

  position:relative;
}

.cta::before{
  content:'';

  position:absolute;

  width:300px;
  height:300px;

  background:
  rgba(24,180,255,0.08);

  border-radius:50%;

  right:-100px;
  top:-100px;

  filter:blur(40px);
}

.cta-content span{
  color:#18b4ff;

  letter-spacing:3px;

  font-size:13px;

  font-weight:600;
}

.cta-content h2{
  font-size:42px;

  margin:
  15px 0 20px;
}

.cta-content p{
  color:#9ba8c7;

  max-width:650px;

  line-height:1.7;
}

/* RESPONSIVO CTA */

@media(max-width:900px){

  .cta{
    flex-direction:column;
    text-align:center;
  }

}
/* FOOTER */

.footer{
  padding:80px 8% 40px;

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));

  gap:50px;

  border-top:
  1px solid rgba(255,255,255,0.06);
}

.footer h2{
  color:#18b4ff;

  font-size:32px;

  margin-bottom:20px;
}

.footer p{
  color:#9ba8c7;

  line-height:1.7;
}

.footer h3{
  margin-bottom:20px;

  font-size:20px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-links a{
  color:#9ba8c7;

  text-decoration:none;

  transition:0.3s;
}

.footer-links a:hover{
  color:#18b4ff;

  transform:translateX(5px);
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-bottom{
  border-top:
  1px solid rgba(255,255,255,0.05);

  text-align:center;

  padding:25px;

  color:#7e8aa8;

  font-size:14px;
}
/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;

  width:65px;
  height:65px;

  bottom:30px;
  right:30px;

  background:
  linear-gradient(
  135deg,
  #25d366,
  #128c7e
  );

  color:white;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  text-decoration:none;

  box-shadow:
  0 0 25px rgba(37,211,102,0.45);

  z-index:999;

  transition:0.3s;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}
/* HERO BADGES */

.hero-badges{
  display:flex;
  gap:15px;

  flex-wrap:wrap;

  margin-top:30px;
}

.hero-badges span{
  background:
  rgba(255,255,255,0.05);

  border:
  1px solid rgba(255,255,255,0.08);

  padding:12px 18px;

  border-radius:14px;

  color:#b9c4df;

  font-size:14px;

  transition:0.3s;
}

.hero-badges span:hover{
  border-color:#18b4ff;

  transform:translateY(-3px);
}
/* ICONS */

.icon{
  width:60px;
  height:60px;

  border-radius:18px;

  background:
  rgba(24,180,255,0.08);

  border:
  1px solid rgba(24,180,255,0.12);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:25px;

  color:#18b4ff;

  font-size:22px;
}
/* ================================= */
/* MOBILE RESPONSIVO */
/* ================================= */

@media(max-width:980px){

  /* NAVBAR */

  .navbar{
    padding:20px 5%;
  }

  .logo{
    font-size:22px;
  }

  .menu{
    display:none;
  }

  .btn-nav{
    padding:10px 18px;
    font-size:14px;
  }

  /* HERO */

  .hero{
    flex-direction:column;

    padding:
    140px 5% 80px;

    text-align:center;

    gap:50px;
  }

  .hero-text h1{
    font-size:42px;

    line-height:1.15;
  }

  .hero-text p{
    font-size:16px;

    margin:
    0 auto 35px;
  }

  .hero-buttons{
    justify-content:center;

    flex-wrap:wrap;
  }

  .hero-badges{
    justify-content:center;
  }

  .hero-image img{
    max-width:100%;
  }

  /* TITLES */

  .services h2,
  .cta-content h2{
    font-size:34px;

    line-height:1.2;
  }

  /* SERVICES */

  .services{
    padding:70px 5%;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .card{
    padding:30px;
  }

  /* STATS */

  .stats{
    padding:30px 5%;

    grid-template-columns:
    1fr 1fr;
  }

  .stat-box{
    padding:30px 20px;
  }

  .stat-box h3{
    font-size:34px;
  }

  /* CTA */

  .cta{
    margin:70px 5%;

    padding:40px 30px;

    flex-direction:column;

    text-align:center;
  }

  .cta-content p{
    margin:auto;
  }

  /* FOOTER */

  .footer{
    padding:70px 5% 40px;

    gap:40px;
  }

}

/* ================================= */
/* CELULARES PEQUENOS */
/* ================================= */

@media(max-width:600px){

  .hero-text h1{
    font-size:34px;
  }

  .services h2,
  .cta-content h2{
    font-size:28px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;

    text-align:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .whatsapp-float{
    width:58px;
    height:58px;

    font-size:28px;

    bottom:20px;
    right:20px;
  }

}
/* ================================= */
/* REVIEWS */
/* ================================= */

.reviews{
  padding:100px 8%;
}

.section-title{
  text-align:center;

  margin-bottom:60px;
}

.section-title span{
  color:#18b4ff;

  font-size:14px;
  letter-spacing:3px;

  font-weight:600;
}

.section-title h2{
  font-size:52px;

  margin-top:15px;
}

.reviews-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:25px;
}

.review-card{
  background:
  rgba(12,18,36,0.8);

  border:
  1px solid rgba(255,255,255,0.06);

  border-radius:24px;

  padding:35px;

  transition:0.3s;

  backdrop-filter:blur(10px);

  position:relative;

  overflow:hidden;
}

.review-card::before{
  content:'';

  position:absolute;

  width:180px;
  height:180px;

  background:
  rgba(24,180,255,0.06);

  border-radius:50%;

  top:-90px;
  right:-90px;
}

.review-card:hover{
  transform:translateY(-8px);

  border-color:#18b4ff;

  box-shadow:
  0 0 30px rgba(24,180,255,0.12);
}

.review-stars{
  color:#18b4ff;

  font-size:24px;

  margin-bottom:20px;
}

.review-card p{
  color:#b8c3df;

  line-height:1.8;

  margin-bottom:30px;

  font-size:16px;
}

.review-user{
  display:flex;

  flex-direction:column;

  gap:5px;
}

.review-user strong{
  font-size:18px;
}

.review-user span{
  color:#7f8db0;

  font-size:14px;
}

/* MOBILE */

@media(max-width:600px){

  .section-title h2{
    font-size:34px;
  }

  .reviews{
    padding:80px 5%;
  }

}
/* ================================= */
/* MENU MOBILE */
/* ================================= */

.menu-toggle{
  display:none;

  font-size:28px;

  color:white;

  cursor:pointer;
}

/* MOBILE */

@media(max-width:980px){

  .menu-toggle{
    display:block;
  }

  .menu{
    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:
    rgba(5,8,22,0.98);

    backdrop-filter:blur(12px);

    flex-direction:column;

    align-items:center;

    gap:30px;

    padding:35px 0;

    border-bottom:
    1px solid rgba(255,255,255,0.06);

    display:none;
  }

  .menu.active{
    display:flex;
  }

}
/* ================================= */
/* SCROLL REVEAL */
/* ================================= */

.reveal{
  opacity:0;

  transform:
  translateY(80px);

  transition:
  opacity 1s ease,
  transform 1s ease;
}

.reveal.active{
  opacity:1;

  transform:
  translateY(0);
}
/* ================================= */
/* GOOGLE MAPS */
/* ================================= */

.map-section{
  padding:100px 8%;
}

.map-section p{
  color:#9ba8c7;

  margin-top:20px;

  font-size:18px;
}

.map-container{
  margin-top:50px;

  border-radius:28px;

  overflow:hidden;

  border:
  1px solid rgba(255,255,255,0.06);

  box-shadow:
  0 0 40px rgba(24,180,255,0.08);
}

.map-container iframe{
  width:100%;
  height:500px;

  border:none;

  filter:
  grayscale(1)
  invert(0.92)
  contrast(1.2);
}

/* MOBILE */

@media(max-width:600px){

  .map-section{
    padding:80px 5%;
  }

  .map-container iframe{
    height:350px;
  }

}
/* ================================= */
/* PARTICLES */
/* ================================= */

#particles-js{
  position:fixed;

  width:100%;
  height:100%;

  top:0;
  left:0;

  z-index:-2;
}
/* ================================= */
/* PROJECTS */
/* ================================= */

.projects{
  padding:120px 8%;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;

  margin-top:60px;
}

.project-card{

  background:#09101f;

  border:1px solid rgba(255,255,255,0.06);

  border-radius:24px;

  overflow:hidden;

  transition:0.4s;
}

.project-card:hover{

  transform:translateY(-10px);

  border-color:#18b4ff;

  box-shadow:
  0 0 40px rgba(24,180,255,0.15);
}

.project-card img{

  width:100%;
  height:240px;

  object-fit:cover;

  transition:0.4s;
}

.project-card:hover img{
  transform:scale(1.05);
}

.project-content{
  padding:30px;
}

.project-content span{

  color:#18b4ff;

  font-size:14px;
  font-weight:600;

  letter-spacing:1px;
}

.project-content h3{

  font-size:28px;

  margin:15px 0;
}

.project-content p{

  color:#9ba8c7;

  line-height:1.7;
}
/* ================================= */
/* CONTACT */
/* ================================= */

.contact-section{
  padding:120px 8%;
}

.contact-container{

  display:grid;

  grid-template-columns:
  1.2fr 0.8fr;

  gap:40px;

  margin-top:60px;
}

.contact-form{

  display:flex;
  flex-direction:column;

  gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

  background:#09101f;

  border:1px solid rgba(255,255,255,0.08);

  color:white;

  padding:18px 20px;

  border-radius:16px;

  font-size:16px;

  outline:none;

  transition:0.3s;
}

.contact-form textarea{
  min-height:160px;
  resize:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

  border-color:#18b4ff;

  box-shadow:
  0 0 20px rgba(24,180,255,0.15);
}

.contact-info{

  display:flex;
  flex-direction:column;

  gap:20px;
}

.info-card{

  background:#09101f;

  border:1px solid rgba(255,255,255,0.06);

  border-radius:22px;

  padding:30px;

  transition:0.3s;
}

.info-card:hover{

  border-color:#18b4ff;

  transform:translateY(-5px);
}

.info-card i{

  font-size:28px;

  color:#18b4ff;

  margin-bottom:20px;
}

.info-card h3{

  font-size:24px;

  margin-bottom:10px;
}

.info-card p{

  color:#9ba8c7;

  line-height:1.7;
}

@media(max-width:980px){

  .contact-container{
    grid-template-columns:1fr;
  }

}
/* ================================= */
/* CURSOR GLOW */
/* ================================= */

.cursor-glow{

  position:fixed;

  width:320px;
  height:320px;

  border-radius:50%;

  pointer-events:none;

  background:
  radial-gradient(
    circle,
    rgba(24,180,255,0.18) 0%,
    rgba(24,180,255,0.08) 30%,
    transparent 70%
  );

  transform:
  translate(-50%, -50%);

  z-index:-1;

  transition:
  width 0.2s ease,
  height 0.2s ease;

  mix-blend-mode:screen;
}
/* =========================
   MOBILE PREMIUM
========================= */

@media (max-width: 980px){

  .navbar{
    padding:20px 6%;
  }

  .logo{
    font-size:22px;
  }

  /* HERO */

  .hero{
    flex-direction:column;
    text-align:center;

    padding:
    130px 6% 60px;
  }

  .hero-text{
    width:100%;
  }

  .hero-text h1{
    font-size:44px;
    line-height:1.1;

    margin-bottom:20px;
  }

  .hero-text p{
    font-size:17px;

    margin:
    0 auto 35px;

    line-height:1.7;
  }

  .hero-buttons{
    width:100%;

    flex-direction:column;

    align-items:center;
  }

  .btn-primary,
  .btn-secondary{

    width:100%;
    max-width:320px;

    text-align:center;
  }

  .hero-image{
    width:100%;
  }

  .hero-image img{
    margin-top:20px;

    border-radius:22px;
  }

  /* TITLES */

  section h2{
    font-size:38px !important;
    line-height:1.2;
  }

  /* CARDS */

  .cards{
    grid-template-columns:1fr;
  }

  .card{
    padding:30px;
  }

  /* STATS */

  .stats{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .stat-card{
    padding:30px 20px;
  }

  .stat-card h3{
    font-size:42px;
  }

  /* CTA */

  .cta{
    padding:40px 25px;

    text-align:center;
  }

  .cta-content{
    flex-direction:column;
    gap:30px;
  }

  .cta h2{
    font-size:38px;
  }

  .cta .btn-primary{
    width:100%;
  }

  /* CONTACT */

  .contact-cards{
    grid-template-columns:1fr;
  }

  /* FOOTER */

  .footer{
    padding:60px 6%;
  }

  .footer-content{
    grid-template-columns:1fr;
    gap:50px;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 600px){

  .hero-text h1{
    font-size:36px;
  }

  section h2{
    font-size:32px !important;
  }

  .stat-card h3{
    font-size:34px;
  }

  .cta h2{
    font-size:32px;
  }

  .card h3{
    font-size:26px;
  }

  .navbar{
    padding:18px 5%;
  }

}
/* =========================
   MENU MOBILE PREMIUM
========================= */

.menu-toggle{
  width:45px;
  height:45px;

  display:none;

  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:6px;

  cursor:pointer;

  z-index:2000;
}

.menu-toggle span{
  width:26px;
  height:2px;

  background:white;

  border-radius:10px;

  transition:0.4s;
}

/* ANIMAÇÃO X */

.menu-toggle.active span:nth-child(1){
  transform:
  rotate(45deg)
  translate(6px,6px);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:
  rotate(-45deg)
  translate(5px,-5px);
}

/* MOBILE MENU */

@media(max-width:980px){

  .menu-toggle{
    display:flex;
  }

  .menu{

    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:
    rgba(5,8,22,0.92);

    backdrop-filter:blur(20px);

    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:35px;

    transition:0.5s ease;

    z-index:1500;

    border-left:
    1px solid rgba(255,255,255,0.08);

    box-shadow:
    -20px 0 60px rgba(0,0,0,0.5);
  }

  .menu.active{
    right:0;
  }

  .menu a{
    font-size:22px;
  }

  .btn-nav{
    display:none;
  }

}
/* =========================
   LOADER
========================= */

.loader{

  position:fixed;

  inset:0;

  background:
    radial-gradient(
      circle at center,
      #031427 0%,
      #01040f 100%
    );

  z-index:999999;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  transition:
  opacity 1s ease,
  visibility 1s ease;
}

.loader.hide{

  opacity:0;
  visibility:hidden;
}

.loader-content{

  display:flex;
  flex-direction:column;
  align-items:center;

  gap:25px;

  animation:
  loaderFade 1.5s ease;
}

.loader-logo{

  width: 95px;

  filter:
    drop-shadow(0 0 15px #18b4ff)
    drop-shadow(0 0 40px #18b4ff66);

  animation: logoFloat 3s ease-in-out infinite;

}


/* ANIMAÇÕES */

@keyframes loaderFade{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes pulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }
}
/* =========================
   MESH GRADIENT
========================= */

.mesh-gradient{

  position:fixed;

  inset:0;

  z-index:-3;

  overflow:hidden;

  filter:blur(60px);

  opacity:0.7;
}

/* BLOB 1 */

.mesh-gradient::before{

  content:'';

  position:absolute;

  width:500px;
  height:500px;

  background:
  rgba(24,180,255,0.22);

  border-radius:50%;

  top:-100px;
  left:-100px;

  animation:
  moveBlob1 18s infinite alternate ease-in-out;
}

/* BLOB 2 */

.mesh-gradient::after{

  content:'';

  position:absolute;

  width:600px;
  height:600px;

  background:
  rgba(0,102,255,0.16);

  border-radius:50%;

  bottom:-200px;
  right:-200px;

  animation:
  moveBlob2 22s infinite alternate ease-in-out;
}

/* ANIMAÇÕES */

@keyframes moveBlob1{

  0%{
    transform:
    translate(0,0)
    scale(1);
  }

  100%{
    transform:
    translate(200px,100px)
    scale(1.2);
  }
}

@keyframes moveBlob2{

  0%{
    transform:
    translate(0,0)
    scale(1);
  }

  100%{
    transform:
    translate(-180px,-120px)
    scale(1.15);
  }
}
.gradient-text{

  background:
  linear-gradient(
    90deg,
    #ffffff,
    #18b4ff
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-image{

  position:relative;
}

.hero-image::before{

  content:'';

  position:absolute;

  width:350px;
  height:350px;

  background:
  rgba(24,180,255,0.18);

  border-radius:50%;

  filter:blur(90px);

  top:50%;
  left:50%;

  transform:
  translate(-50%, -50%);

  z-index:-1;
}
.scroll-progress{

  position:fixed;

  top:0;
  left:0;

  height:3px;

  width:0%;

  background:
  linear-gradient(
    90deg,
    #18b4ff,
    #0066ff
  );

  z-index:999999;
}
.navbar{

  background:
  rgba(5,8,22,0.45);

  backdrop-filter:
  blur(18px);

  border-bottom:
  1px solid rgba(255,255,255,0.05);
}
@keyframes logoFloat{

  0%{
    transform: translateY(0px) scale(1);
  }

  50%{
    transform: translateY(-10px) scale(1.04);
  }

  100%{
    transform: translateY(0px) scale(1);
  }

}
/* ================================= */
/* FIXES HERO + NAVBAR */
/* ================================= */

.hero{

  position:relative;

  overflow:hidden;

  padding-top:180px;
}

.hero-image{

  display:flex;

  justify-content:center;

  align-items:center;

  position:relative;

  z-index:1;
}

.hero-image img{

  width:100%;

  max-width:620px;

  display:block;

  position:relative;
}

/* REMOVE LOGO SOLTA */

.hero-logo{
  display:none;
}

/* ================================= */
/* MENU MOBILE FIX */
/* ================================= */

.menu-toggle{

  position:relative;

  z-index:3000;
}

.menu{

  z-index:2500;
}

.navbar{

  z-index:4000;
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:980px){

  .hero{

    flex-direction:column;

    text-align:center;

    padding:
    150px 6% 80px;
  }

  .hero-text{

    width:100%;
  }

  .hero-text h1{

    font-size:44px;

    line-height:1.1;
  }

  .hero-text p{

    margin:auto;

    margin-bottom:35px;
  }

  .hero-buttons{

    justify-content:center;

    flex-wrap:wrap;
  }

  .hero-badges{

    justify-content:center;
  }

  .hero-image{

    width:100%;

    margin-top:20px;
  }

  .hero-image img{

    max-width:100%;
  }

}

@media(max-width:600px){

  .hero-text h1{

    font-size:36px;
  }

}
/* ================================= */
/* FIX REVIEWS */
/* ================================= */

.reviews{
  padding:120px 8%;
}

.reviews-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  margin-top:60px;
}

.review-card{
  height:100%;
}

.review-card p{
  min-height:120px;
}

@media(max-width:600px){

  .reviews{
    padding:90px 5%;
  }

  .review-card p{
    min-height:auto;
  }

}
@media(max-width:980px){

  .cursor-glow{
    display:none;
  }

}
