/* =========================
RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#0a0a0a;
  color:white;
  overflow-x:hidden;
  position:relative;
}

/* =========================
FUNDO
========================= */

body::before{
  content:"";
  position:fixed;
  inset:0;

  background:
  radial-gradient(circle at top left, rgba(255,122,0,.10), transparent 35%),
  radial-gradient(circle at bottom right, rgba(255,122,0,.08), transparent 35%);

  z-index:-5;
}

body::after{
  content:"";
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

  background-size:60px 60px;

  z-index:-4;
}

/* =========================
LOGOS FUNDO
========================= */

.bg-logo{
  position:absolute;

  z-index:-1;

  opacity:.035;

  filter:
  grayscale(1)
  brightness(2);

  pointer-events:none;

  animation:float 8s ease-in-out infinite;
}

/* CAPCUT */

.capcut{
  width:170px;
}

.capcut-1{
  top:6%;
  left:4%;
}

.capcut-2{
  top:55%;
  right:5%;
}

/* PHOTOSHOP */

.ps{
  width:150px;
}

.ps-1{
  top:18%;
  right:8%;
}

.ps-2{
  top:95%;
  left:6%;
}

/* DAVINCI */

.davinci{
  width:160px;
}

.davinci-1{
  top:-5%;
  left:85%;
}

.davinci-2{
  top:110%;
  right:10%;
}


/* =========================
ANIMAÇÃO
========================= */

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-18px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* =========================
HERO
========================= */

.hero{
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:60px;

  padding:0 8%;

  position:relative;
}

/* ESQUERDA */

.left{
  max-width:650px;

  z-index:2;

  opacity:0;
  transform:translateX(-80px);

  animation:leftEntry 1s ease forwards;
}

@keyframes leftEntry{

  to{
    opacity:1;
    transform:translateX(0);
  }

}

.intro{
  font-size:24px;
  color:#bdbdbd;

  margin-bottom:18px;
}

.name{
  font-size:125px;
  font-weight:800;

  line-height:1;

  margin-bottom:18px;

  transition:.4s;
}

.name:hover{
  color:#ff7a00;
  transform:translateX(10px);
}

.job{
  font-size:34px;
  color:#ff7a00;

  margin-bottom:25px;
}

.desc{
  font-size:21px;
  line-height:1.7;

  color:#c8c8c8;
}

/* DIREITA */

.right{
  width:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;

  opacity:0;
  transform:translateX(80px);

  animation:rightEntry 1s ease forwards;
  animation-delay:.3s;
}

@keyframes rightEntry{

  to{
    opacity:1;
    transform:translateX(0);
  }

}

/* FOTO */

.right img{
  width:560px;
  max-width:100%;

  object-fit:contain;

  border-radius:32px;

  z-index:2;

  transition:.5s ease;

  padding:18px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.02)
  );

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(10px);

  box-shadow:
  0 20px 50px rgba(0,0,0,.45),
  0 0 35px rgba(255,122,0,.10);

  filter:
  drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

.right img:hover{
  transform:scale(1.04) translateY(-10px);

  box-shadow:
  0 25px 60px rgba(0,0,0,.55),
  0 0 50px rgba(255,122,0,.18);
}

/* BRILHO */

.right::after{
  content:"";

  position:absolute;

  bottom:10%;

  width:350px;
  height:160px;

  background:
  radial-gradient(circle, rgba(255,122,0,.45), transparent);

  filter:blur(60px);

  z-index:1;
}

/* =========================
SOBRE
========================= */

.about{
  padding:120px 8%;
  text-align:center;
}

.about h2{
  font-size:50px;
  margin-bottom:35px;
}

.about p{
  max-width:900px;

  margin:auto;

  font-size:20px;
  line-height:1.9;

  color:#c7c7c7;
}

/* =========================
VIDEOS
========================= */

.videos-section{
  padding:120px 8%;
  text-align:center;
}

.videos-section h2{
  font-size:50px;
  margin-bottom:60px;
}

/* GRID */

.videos-grid{
  display:flex;
  flex-wrap:wrap;

  justify-content:center;

  gap:35px;
}

/* CARD */

.video-card{
  width:240px;
  height:430px;

  overflow:hidden;

  border-radius:28px;

  background:#141414;

  border:1px solid rgba(255,255,255,.06);

  transition:.4s ease;
}

.video-card:hover{
  transform:translateY(-12px);

  box-shadow:
  0 20px 50px rgba(255,122,0,.15);
}

.video-card iframe{
  width:100%;
  height:100%;
  border:none;
}

/* =========================
YOUTUBE
========================= */

.youtube-grid{
  display:flex;
  flex-wrap:wrap;

  justify-content:center;

  gap:40px;
}

.youtube-card{
  width:600px;
  max-width:100%;

  height:340px;

  overflow:hidden;

  border-radius:28px;

  border:1px solid rgba(255,255,255,.06);

  transition:.4s;
}

.youtube-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 20px 50px rgba(255,122,0,.15);
}

.youtube-card iframe{
  width:100%;
  height:100%;
  border:none;
}

/* =========================
CONTATO
========================= */

.contact-section{
  padding:120px 8%;
  text-align:center;
}

.contact-section h2{
  font-size:50px;
  margin-bottom:30px;
}

.contact-text{
  max-width:850px;

  margin:auto;

  font-size:20px;
  line-height:1.9;

  color:#c4c4c4;

  margin-bottom:55px;
}

/* BOTÃO */

.contact-button{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 45px;

  border-radius:20px;

  background:#ff7a00;
  color:white;

  text-decoration:none;

  font-size:18px;
  font-weight:600;

  transition:.4s ease;

  box-shadow:
  0 10px 40px rgba(255,122,0,.25),
  0 0 35px rgba(255,122,0,.15);
}

.contact-button:hover{
  transform:translateY(-8px) scale(1.03);

  box-shadow:
  0 20px 60px rgba(255,122,0,.35),
  0 0 50px rgba(255,122,0,.25);
}

/* =========================
FEEDBACK
========================= */

.feedback-section{
  padding:40px 8% 40px;
  text-align:center;
}

.feedback-section h2{
  font-size:50px;
  margin-bottom:50px;
}

.feedback-card{
  max-width:900px;

  margin:auto;

  padding:55px;

  border-radius:32px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.02)
  );

  border:1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(12px);

  transition:.5s;

  box-shadow:
  0 20px 60px rgba(0,0,0,.35);
}

.feedback-card:hover{
  transform:translateY(-10px);

  border-color:rgba(255,122,0,.25);

  box-shadow:
  0 25px 70px rgba(255,122,0,.12);
}

.feedback-message{
  font-size:22px;
  line-height:1.9;

  color:#d7d7d7;

  margin-bottom:30px;
}

.feedback-name{
  color:#ff7a00;

  font-size:18px;
  font-weight:600;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:1100px){

  .hero{
    flex-direction:column;
    justify-content:center;

    text-align:center;

    padding-top:90px;
    padding-bottom:90px;
  }

  .left{
    max-width:100%;
  }

  .name{
    font-size:90px;
  }

  .job{
    font-size:28px;
  }

  .desc{
    font-size:18px;
    margin:auto;
  }

  .right{
    width:100%;
  }

  .right img{
    width:420px;
  }

}

@media(max-width:700px){

  .hero{
    padding:70px 20px;
  }

  .intro{
    font-size:18px;
  }

  .name{
    font-size:62px;
  }

  .job{
    font-size:22px;
  }

  .desc{
    font-size:16px;
  }

  .right img{
    width:310px;
  }

  .about h2,
  .videos-section h2,
  .contact-section h2,
  .feedback-section h2{
    font-size:34px;
  }

  .about p,
  .contact-text{
    font-size:17px;
    line-height:1.7;
  }

  .video-card{
    width:170px;
    height:320px;
  }

  .youtube-card{
    height:220px;
  }

  .contact-button{
    width:100%;
    padding:18px;
  }

  .feedback-card{
    padding:35px 25px;
  }

  .feedback-message{
    font-size:17px;
    line-height:1.8;
  }

  .bg-logo{
    opacity:.02;
  }

}