*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
    background:linear-gradient(-45deg,#050510,#0a0a20,#050510);
  background-size:400% 400%;
  animation:bgMove 10s ease infinite;
  color:#fff;
}

@keyframes bgMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* NAV */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.1);

  transition:all .3s ease;
  z-index:1000;
}

.navbar nav a{
  position:relative;
  color:#fff;
  text-decoration:none;
  margin:0 15px;
  font-weight:500;
}

/* LINHA ANIMADA */
.navbar nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#ffd700;
  transition:.3s;
}

.navbar nav a:hover::after{
  width:100%;
}

/* LOGO */

.logo{
  height:200px;
  transition:.3s;
}

.navbar.scrolled .logo{
  height:80px;
}

/* HERO */
.hero{
  height:100vh;
  position:relative;
}

.video-bg{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
}

.hero-content h1{
  font-size:48px;
  font-weight:800;
  animation:fadeUp 1.2s ease forwards;
  opacity:0;
}

.hero-content p{
  margin-top:10px;
  font-size:18px;
  animation:fadeUp 1.6s ease forwards;
  opacity:0;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.btn-hero{
  margin-top:20px;
  padding:14px 30px;
  background:linear-gradient(45deg,#ffd700,#ffae00);
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.btn-hero:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #ffd700;
}

/* SEÇÕES */
.section{
  padding:100px 20px;
  text-align:center;
}

h2{
  color:#ffd700;
  margin-bottom:40px;
}

/* QUEM SOMOS */
.quem{
  display:flex;
  gap:40px;
  justify-content:center;
  flex-wrap:wrap;
}

.card{
  width:320px;
  border-radius:20px;
  overflow:hidden;

  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,0.1);

  transition:.5s;
  position:relative;
}

/* BORDA GLOW */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  padding:1px;
  background:linear-gradient(45deg,#ffd700,transparent,#ffd700);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

/* HOVER */
.card:hover{
  transform:translateY(-15px) scale(1.04);
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

.card img{
  width:100%;
  border-radius:8px;
}

/* GRID */
.grid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.invertido{
  flex-direction:row-reverse;
}

/* SERVICOS */
.img-box{
  width:350px;
  height:420px;
  border-radius:20px;
  overflow:hidden;
  position:relative;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.img-box:hover img{
  transform:scale(1.08);
}
.img-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.img-box{
  box-shadow:0 0 25px rgba(255,215,0,0.15);
}
.img-box::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:.6s;
}

.img-box:hover::before{
  left:100%;
}
@media(max-width:768px){
  .img-box{
    width:100%;
    height:300px;
  }
}
/* LISTA */
.lista{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.item{
  background:#111;
  padding:12px;
  border-radius:8px;
  border:1px solid #ffd700;
  transition:.3s;
}

.item:hover{
  transform:translateX(8px);
  box-shadow:0 0 10px #ffd700;
}

/* CARROSSEL */
.carousel{
  overflow:hidden;
  padding:40px 0;
}

.carousel-track{
  display:flex;
  gap:20px;
  animation:scroll 25s linear infinite;
}

.carousel-track img{
  width:180px;
  height:120px;
  object-fit:cover;
  border-radius:12px;
  transition:.4s;
}

.carousel-track img:hover{
  transform:scale(1.2);
}

@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* RESPONSIVO */
@media(max-width:768px){
  .grid{
    flex-direction:column;
  }
}

/* BOTÃO BOT WHATS */
.chat-btn{
  position:fixed;
  bottom:25px;
  right:25px;

  width:65px;
  height:65px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  font-size:28px;

  border-radius:50%;
  cursor:pointer;

  box-shadow:0 10px 25px rgba(0,0,0,0.4);

  transition:.3s;
  z-index:999;
}
.chat-btn:hover{
  transform:scale(1.1);
  box-shadow:
    0 0 20px rgba(37,211,102,0.6),
    0 0 40px rgba(37,211,102,0.4);
}

.chat-btn::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:rgba(37,211,102,0.4);
  animation:pulse 2s infinite;
  z-index:-1;
}

@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:0.6;
  }
  70%{
    transform:scale(1.6);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}
.item{
  position:relative;
  overflow:hidden;
}

.item::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#ffd700;
  transition:.3s;
}

.item:hover::after{
  width:100%;
}

/* BOX */
.chat-box{
  position:fixed;
  bottom:90px;
  right:20px;
  width:300px;
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  display:none;
  z-index:999;
}

.chat-box h3{
  margin-bottom:10px;
  color:#111;
}

.chat-box input,
.chat-box textarea{
  width:100%;
  margin-bottom:10px;
  padding:10px;
  border-radius:6px;
  border:1px solid #ccc;
}

.chat-box button{
  width:100%;
  padding:10px;
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

/* LUZES ANIMADAS */

.lights{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:-1;
}

.lights::before,
.lights::after{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.6;
  animation:moveLights 12s infinite alternate ease-in-out;
}

.lights span{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  filter:blur(100px);
  opacity:0.5;
  animation:moveLights 15s infinite alternate;
}

/* LUZ 1 */
.lights::before{
  background:radial-gradient(circle, #ff00cc, transparent);
  top:10%;
  left:10%;
}

/* LUZ 2 */
.lights::after{
  background:radial-gradient(circle, #00ffe7, transparent);
  bottom:10%;
  right:10%;
  animation-delay:3s;
}

/* ANIMAÇÃO */
@keyframes moveLights{
  0%{
    transform:translate(0,0) scale(1);
  }
  50%{
    transform:translate(200px, -150px) scale(1.2);
  }
  100%{
    transform:translate(-150px, 200px) scale(1);
  }
}

/*FOOTER */
.footer{
  background:#0a0a0a;
  padding:60px 20px 30px;
  color:#ccc;
  margin-top:80px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* COLUNAS */
.footer-col{
  flex:1;
  min-width:250px;
}

.footer-col h3{
  color:#fff;
  margin-bottom:15px;
}

.footer-col h4{
  color:#ffd700;
  margin-bottom:15px;
}

/* TEXTOS */
.footer-col p{
  margin:6px 0;
  font-size:14px;
}

/* LINKS */
.footer-col a{
  display:block;
  text-decoration:none;
  color:#ccc;
  margin-bottom:6px;
  transition:.3s;
}

.footer-col a:hover{
  color:#ffd700;
  transform:translateX(5px);
}

/* BOTÃO INSTAGRAM */
.insta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:45px;
  height:45px;

  margin-top:10px;

  background:linear-gradient(45deg,#ff00cc,#ff6600);
  border-radius:10px;

  color:#fff;
  font-size:20px;

  transition:.3s;
}

.insta-btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 15px rgba(255,0,200,0.5);
}

/* PARTE DE BAIXO */
.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:13px;
}

.footer-bottom p{
  margin:4px 0;
}

.credito{
  margin-top:10px;
  font-size:12px;
  color:#888;
}
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    text-align:center;
  }

  .footer-col a:hover{
    transform:none;
  }
}

/*BOTAO INSTAGRAM*/
.insta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:50px;
  height:50px;

  margin-top:10px;

  background:radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%
  );

  border-radius:12px;

  color:#fff;
  font-size:22px;

  transition:.3s;
}

.insta-btn:hover{
  transform:scale(1.15) rotate(5deg);
  box-shadow:0 0 20px rgba(255,0,200,0.5);
}

/* BOTÃO HAMBURGER */
/* ================= NAVBAR NOVA (SANDUÍCHE GLOBAL) ================= */

/* BOTÃO SEMPRE VISÍVEL */
.menu-toggle{
  display:block;
  font-size:26px;
  color:#ffd700;
  cursor:pointer;
  z-index:1001;
  transition:.3s;
}

.menu-toggle:hover{
  transform:scale(1.1);
}

/* MENU ESCONDIDO PADRÃO */
.navbar nav{
  position:absolute;
  top:100%;
  left:0;
  width:100%;

  background:rgba(0,0,0,0.95);
  backdrop-filter:blur(15px);

  display:flex;
  flex-direction:column;
  align-items:center;

  padding:25px 0;

  opacity:0;
  pointer-events:none;
  transform:translateY(-20px);

  transition:.35s ease;

  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* MENU ABERTO */
.navbar nav.active{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

/* LINKS */
.navbar nav a{
  margin:12px 0;
  font-size:18px;
  letter-spacing:0.5px;
  transition:.3s;
}

.navbar nav a:hover{
  color:#ffd700;
}

/* AJUSTE LOGO */
.logo{
  height:90px;
}

/* NAVBAR MAIS COMPACTA AO ROLAR */
.navbar.scrolled .logo{
  height:70px;
}

.navbar nav a:hover{
  color:#ffd700;
}