/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit', sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

/* NOISE */

.noise{
  position:fixed;
  inset:0;
  background:url('../imagens/noise.png');
  opacity:.05;
  pointer-events:none;
  z-index:999;
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;
  padding:30px 60px;
  overflow:hidden;

  background:
  radial-gradient(circle at center,
  rgba(120, 40, 0, 0.45),
  #050505 60%);
}

/* NAVBAR */

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:20;
}

.logo{
  
  letter-spacing:2px;
}

/* GLASS */

.glass{
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
  0 10px 30px rgba(0,0,0,.3),
  inset 0 1px 1px rgba(255,255,255,.05);
}

/* NAV MENU */

.nav-menu{
  display:flex;
  gap:10px;

  padding:10px;
  border-radius:999px;
}

.nav-menu a{
  text-decoration:none;
  color:#cfcfcf;

  padding:10px 18px;
  border-radius:999px;

  transition:.3s ease;
  font-size:.95rem;
}

.nav-menu a:hover,
.nav-menu .active{
  background:#fff;
  color:#111;
}

/* BUTTON */

.btn-primary{
  border:none;
  outline:none;

  background:#ff6b00;
  color:#fff;

  padding:14px 26px;
  border-radius:999px;

  font-weight:600;
  cursor:pointer;

  transition:.3s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(255,107,0,.35);
}

.btn-secondary{
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
}

/* HERO CONTENT */

.hero-content{
  position:relative;
  min-height:80vh;

  display:flex;
  align-items:center;
  justify-content:center;
}
/* HERO SLIDER */

.hero-slider{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
}

/* ANIMATION STATES */

.fade-out{
  opacity:0 !important;
  transform:translateY(30px) scale(.95);
}

.fade-in{
  opacity:1 !important;
  transform:translateY(0) scale(1);
}

/* TITLE */

.hero-title{
  transition:
  opacity .7s ease,
  transform .7s ease;
}

/* IMAGE */

.hero-image img{
  transition:
  opacity .7s ease,
  transform .7s ease;

  opacity:1;
}
/* BIG TITLE */

.hero-title{
  position:absolute;

  font-size:12vw;
  font-weight:900;

  line-height:.9;
  text-transform:uppercase;

  color:rgba(255,255,255,.85);

  letter-spacing:-8px;
  z-index:1;

  text-align:center;
}

.hero-title span{
  display:block;
}

/* IMAGE */

.hero-image{
  position:relative;
  z-index:5;
}

.hero-image img{
  width:480px;
  object-fit:contain;

  filter:
  drop-shadow(0 0 40px rgba(255,107,0,.25));
}

/* LEFT INFO */

.hero-info{
  position:absolute;
  left:0;
  bottom:120px;

  width:360px;

  padding:30px;
  border-radius:30px;

  z-index:10;
}

.mini-title{
  color:#ff6b00;
  font-size:.8rem;
  letter-spacing:2px;
}

.hero-info h2{
  font-size:1.6rem;
  line-height:1;
  margin:15px 0 25px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  align-items:center;
}

/* REVIEW CARD */

.review-card{
  position:absolute;
  right:0;
  bottom:140px;

  width:280px;

  padding:25px;
  border-radius:24px;

  z-index:10;
}

.stars{
  color:#ff6b00;
  margin-bottom:15px;
}

/* FOOTER */

.hero-footer{
  position:absolute;
  left:0;
  bottom:0;

  width:100%;

  display:flex;
  justify-content:space-around;

  padding:25px;

  border-top:1px solid rgba(255,255,255,.08);

  background:rgba(255,255,255,.03);
  backdrop-filter:blur(10px);

  z-index:50;
}

.metric{
  text-align:center;
}

.metric h3{
  font-size:2rem;
  color:#ff6b00;
}

.metric p{
  color:#bbb;
}
.footer{
    padding-top:120px;
    background:#050505;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-top{
    text-align:center;
    max-width:900px;
    margin:auto;
    padding:0 20px 100px;
    
}

.footer-top h2{
    font-size:clamp(3rem,6vw,6rem);
    line-height:1;
    
    
}

.footer-top p{
    margin:30px auto;
    max-width:600px;
    color:#9ca3af;
    
}

.footer-btn{
    display:inline-block;
    padding:18px 40px;
    border-radius:999px;
    background:white;
    color:black;
    font-weight:600;
}

.footer-main{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;

    padding:80px 40px;
}

.footer-brand img{
    width:120px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#9ca3af;
    max-width:400px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
    
}

.footer-links h4{
    margin-bottom:15px;
}

.footer-links a{
    color:#9ca3af;
    transition:.3s;
    text-decoration: none;
}

.footer-links a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#777;
    
}

