*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Poppins',sans-serif;
background:#000000;
color:#fff;
overflow-x:hidden
}

header{
position:fixed;
width:100%;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(12px);
z-index:1000
}

nav{
display:flex;
gap:25px;
align-items:center
}

nav a{
color:#fff;
text-decoration:none;
font-size:14px
}

.header-btn{
padding:10px 20px;
border:1px solid red;
border-radius:30px
}

.header-btn:hover{background:red}

.hero{
height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
padding:0 60px;
background:linear-gradient(120deg,#000,#111)
}

.hero h2{
font-size:56px;
max-width:700px
}

.hero span{color:red}

.hero p{
color:#ccc;
margin-top:20px;
max-width:500px
}

.btn{
margin-top:30px;
padding:15px 30px;
background:red;
border:none;
color:#fff;
border-radius:30px;
cursor:pointer;
font-weight:600
}

.fade-up{
opacity:0;
transform:translateY(50px);
transition:all 1s ease
}

.fade-up.show{
opacity:1;
transform:translateY(0)
}

.proof{
padding:60px;
text-align:center;
background:#050505
}

.proof h2{
font-size:28px;
margin-bottom:20px
}

.numbers{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap
}

.numbers div{
font-size:22px;
color:red
}

.services{
padding:100px 60px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px
}

.card{
background:#111;
padding:30px;
border-radius:15px;
transition:0.3s
}

.card:hover{transform:translateY(-10px)}

.portfolio{
padding:100px 60px
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px
}

.portfolio img{
width:100%;
border-radius:10px
}

.clients{
padding:80px 60px
}

.clients-logos{
display:flex;
justify-content:center;
gap:120px;
flex-wrap:wrap
}

.clients-logos img{
max-height:120px;
opacity:1
}

.cta{
padding:120px 20px;
text-align:center;
background:linear-gradient(120deg,#000,#1a0000)
}

.cta h2{font-size:36px}

.cta p{
color:#ccc;
margin-top:10px
}

/* CARROSSEL */
.carousel{padding:80px 60px}

.carousel-container{overflow:hidden}

.carousel-track{
display:flex;
gap:20px;
animation:scroll 20s linear infinite
}

.carousel-track img{
width:300px;
border-radius:10px
}

@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

/* VIDEO + TEXTO */
.video-text{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:80px 60px;
align-items:center
}

.video iframe{
border-radius:10px;
width:100%
}

.text p{color:#ccc}

footer{
text-align:center;
padding:40px;
background:#000;
color:#777
}

@media(max-width:768px){
.video-text{grid-template-columns:1fr}
}

.portfolio-page{
padding:120px 60px;
}

.portfolio-page h1{
font-size:42px;
margin-bottom:20px;
}

.portfolio-page p{
color:#ccc;
margin-bottom:40px;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.portfolio-item{
background:#111;
border-radius:12px;
overflow:hidden;
transition:0.3s;
}

.portfolio-item:hover{
transform:translateY(-10px);
}

.portfolio-item img{
width:100%;
}

.portfolio-content{
padding:20px;
}

.portfolio-content h3{
margin-bottom:10px;
}

.portfolio-content p{
color:#aaa;
font-size:14px;
}

.case-highlight{
margin-top:80px;
padding:60px;
background:#050505;
border-radius:12px;
}

.case-highlight h2{
margin-bottom:20px;
}

.case-numbers{
display:flex;
gap:40px;
margin-top:20px;
flex-wrap:wrap;
}

.case-numbers div{
color:red;
font-size:22px;
}

@media(max-width:768px){
.portfolio-page{
padding:100px 20px;
}
}/* VIDEO VERTICAL */
.video-vertical{
padding:80px 60px;
text-align:center;
}

.video-vertical h2{
margin-bottom:30px;
}

.video-wrapper{
display:flex;
justify-content:center;
}

.video-wrapper iframe{
width:300px;
height:533px; /* formato 9:16 */
border-radius:15px;
}
/* CTA PORTFÓLIO */
.portfolio-cta{
padding:100px 20px;
display:flex;
justify-content:center;
}

.portfolio-box{
background:linear-gradient(120deg,#111,#1a0000);
padding:50px 60px;
border-radius:20px;
text-align:center;
box-shadow:0 0 30px rgba(255,0,0,0.2);
}

.portfolio-box h2{
font-size:32px;
margin-bottom:20px;
}

.btn-portfolio{
padding:15px 30px;
background:red;
border:none;
color:#fff;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.btn-portfolio:hover{
transform:scale(1.05);
background:#ff1a1a;
}
.portfolio-box{
transition:0.4s;
}

.portfolio-box:hover{
transform:translateY(-10px);
box-shadow:0 0 50px rgba(255,0,0,0.4);
}

/* BANNER */

.banner-midia{
height:60vh;
display:flex;
align-items:center;
padding:0 60px;
background:linear-gradient(120deg,#000,#1a0000);
}

.banner-midia h1{
font-size:48px;
max-width:600px;
}

/* CARROSSEL */
.carrossel-section{
padding:80px 60px;
}

.carrossel-section h2{
margin-bottom:20px;
}

.carrossel{
overflow:hidden;
position:relative;
}

.carrossel-track{
display:flex;
gap:20px;
animation:scroll 25s linear infinite;
}

.carrossel img{
width:300px;
border-radius:12px;
}

@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

@media(max-width:768px){
.banner-midia{
padding:0 20px;
}
.carrossel-section{
padding:60px 20px;
}
}
.marca-section{
padding:60px 20px;
color: #ffffff;
}

.video-wrapper {
  display: flex;
  gap: 30px; /* espaço entre os vídeos */
}
/* BANNER */
.banner-solucoes{
height:60vh;
display:flex;
align-items:center;
padding:0 60px;
background:linear-gradient(120deg,#000,#1a0000);
}

.banner-solucoes h1{
font-size:48px;
max-width:600px;
}

/* LISTA DE SOLUÇÕES */
.solucoes{
padding:100px 60px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.solucao-card{
background:#111;
padding:40px;
border-radius:15px;
transition:0.3s;
}

.solucao-card:hover{
transform:translateY(-10px);
box-shadow:0 0 30px rgba(255,0,0,0.2);
}

.solucao-card h2{
margin-bottom:15px;
color:red;
}

.solucao-card p{
color:#ccc;
margin-bottom:20px;
}

.solucao-card ul{
color:#aaa;
font-size:14px;
line-height:1.6;
}

/* PROCESSO */
.processo{
padding:100px 60px;
background:#050505;
text-align:center;
}

.processo h2{
margin-bottom:40px;
}

.steps{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.step{
max-width:250px;
}

.step h3{
color:red;
margin-bottom:10px;
}

/* CTA FINAL */
.cta-final{
padding:120px 20px;
text-align:center;
background:linear-gradient(120deg,#000,#1a0000);
}

.cta-final h2{
font-size:36px;
margin-bottom:10px;
}

.cta-final p{
color:#ccc;
margin-bottom:20px;
}

@media(max-width:768px){
.banner-solucoes{padding:0 20px}
.solucoes{padding:80px 20px}
.processo{padding:80px 20px}
}

/* ===== RESPONSIVO MOBILE ===== */
@media(max-width:768px){

/* HEADER */
header{
padding:15px 20px;
flex-direction:column;
gap:10px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

/* HERO */
.hero{
padding:100px 20px 60px 20px;
text-align:center;
}

.hero h2{
font-size:32px;
}

.hero p{
font-size:14px;
}

/* PROOF */
.numbers{
flex-direction:column;
gap:15px;
}

/* SERVICES */
.services{
grid-template-columns:1fr;
padding:60px 20px;
}

/* PORTFOLIO */
.portfolio{
padding:60px 20px;
}

.portfolio-grid{
grid-template-columns:1fr;
}

/* LOGOS */
.marca-section{
padding:40px 20px;
}

/* CARROSSEL */
.carousel{
padding:60px 20px;
}

.carousel-track img{
width:220px;
}

/* VIDEO + TEXTO */
.video-text{
grid-template-columns:1fr;
padding:60px 20px;
}

.video iframe{
height:250px;
}

.text h2{
font-size:26px;
}

/* CTA */
.cta{
padding:80px 20px;
}

.cta h2{
font-size:26px;
}

}
.video-vertical{
padding:80px 20px;
text-align:center;
}

.video-wrapper{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.video-wrapper video{
width:280px;
height:500px;
object-fit:cover;
border-radius:15px;
}
@media(max-width:768px){
.video-wrapper{
flex-direction:column;
align-items:center;
}

.video-wrapper video{
width:90%;
height:auto;
}
}
/* BANNER */
.banner-contato{
height:50vh;
background:linear-gradient(120deg,#000,#1a0000);
display:flex;
align-items:center;
padding:0 60px;
}

.banner-contato h1{
font-size:42px;
}

/* CONTAINER */
.contato{
padding:100px 60px;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

/* FORM */
.form{
display:flex;
flex-direction:column;
gap:15px;
}

.form input,
.form textarea{
padding:15px;
border:none;
border-radius:8px;
background:#111;
color:#fff;
}

.form textarea{
height:150px;
resize:none;
}

.form button{
padding:15px;
background:red;
border:none;
color:#fff;
border-radius:30px;
cursor:pointer;
font-weight:600;
}

/* INFO */
.info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-box{
background:#111;
padding:20px;
border-radius:10px;
}

/* RESPONSIVO */
@media(max-width:768px){
.contato{
grid-template-columns:1fr;
padding:60px 20px;
}
.banner-contato{
padding:0 20px;
}
}
.footer{
  background:#000000;
  color:#ffffff;
  padding:60px 40px 20px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
  max-width:1200px;
  margin:auto;
}

.footer-col h3{
  margin-bottom:15px;
  color:#ff0000;
  font-size:16px;
}

.footer-col a{
  display:block;
  text-decoration:none;
  color:#ffffff;
  margin-bottom:8px;
  font-size:14px;
  transition:0.3s;
}

.footer-col a:hover{
  color:#000;
}

.footer-col p{
  font-size:14px;
  color:#ffffff;
}

.socials{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.socials a{
  width:40px;
  height:40px;
  background:#ff0000;
  color:#000000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.socials a:hover{
  background:#ff0000;
}

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #ffffff;
  text-align:center;
  font-size:13px;
  color:#777;
}
/* PLANOS */
.planos{
  padding:100px 60px;
  text-align:center;
}

.planos h2{
  font-size:36px;
  margin-bottom:50px;
}

.planos-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.plano{
  background:#111;
  padding:40px 30px;
  border-radius:15px;
  width:300px;
  transition:0.3s;
  border:1px solid #222;
}

.plano:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(255,0,0,0.2);
}

.plano h3{
  margin-bottom:10px;
}

.preco{
  display:block;
  font-size:24px;
  margin-bottom:20px;
  color:red;
  font-weight:bold;
}

.plano ul{
  list-style:none;
  text-align:left;
  margin-bottom:20px;
}

.plano ul li{
  margin-bottom:8px;
  font-size:14px;
  color:#ccc;
}

.indicado{
  font-size:13px;
  color:#aaa;
  margin-bottom:20px;
}

.btn-plano{
  padding:12px 25px;
  background:red;
  border:none;
  color:#fff;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
}

/* DESTAQUE (plano do meio) */
.destaque{
  transform:scale(1.05);
  border:1px solid red;
}

/* RESPONSIVO */
@media(max-width:768px){
  .planos{
    padding:60px 20px;
  }

  .plano{
    width:100%;
    max-width:350px;
  }
}
.badge{
  display:inline-block;
  background:red;
  color:#fff;
  font-size:12px;
  padding:5px 10px;
  border-radius:20px;
  margin-bottom:10px;
  font-weight:bold;
}
.whatsapp-float{
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.08);
}

.whatsapp-float img{
    width: 38px;
    height: 38px;
}