*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#000c25;
color:#fff;
line-height:1.6;
}


.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* HEADER */

.header{
background:#000c25;
position:sticky;
top:0;
z-index:100;
border-bottom:1px solid #222;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
height:40px;
}

/* HERO */

.hero{
position:relative;
padding:120px 20px 80px;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
object-fit:cover;
opacity:.1;
z-index:0;
}

.hero-content{
position:relative;
z-index:2;
}

/* HERO TEXT SPLIT */

.hero-highlight{
    color:#ffcc00;
    font-weight:800;


}

.hero-sub{
    display:block;
    color:#fff;
    font-weight:400;
    margin-top:8px;
    opacity:.9;
}

.hero-content h1{
position:relative;
max-width:700px;
margin:0;
}

.hero-content p{
max-width:700px;
margin-top:10px;
}

.hero h1{
font-size:34px;
margin-bottom:20px;
line-height:1.1;
}

/* BOTÃO GLOBAL */

.btn{

background:#ffcc00;
color:#000c25;

padding:14px 28px;

border-radius:6px;

text-decoration:none;

font-weight:600;

display:inline-block;

transition:.35s;

box-shadow:
0 0 6px #ffcc00,
0 0 14px #ffcc00;

}


/* HOVER */

.btn:hover{

transform:scale(1.06);

box-shadow:
0 0 10px #ffcc00,
0 0 25px #ffcc00,
0 0 50px #ffcc00;

}

/* VARIAÇÕES */

.btn-header{
padding:10px 18px;
}

.btn-primary{
margin-top:20px;
}

/* TITLES */

.section-header{
margin-bottom:40px;
}

.section-badge{
color:#ffcc00;
font-size:13px;
text-transform:uppercase;
letter-spacing:2px;
}

.section-title{
font-size:28px;
margin:10px 0;
}

.section-title:after{
content:"";
display:block;
width:60px;
height:3px;
background:#ffcc00;
margin-top:8px;
}

.section-subtitle{
opacity:.8;
}

.center{
text-align:center;
}


/* ABOUT */

.about{
padding:70px 0;
}

.about-grid{
display:grid;
gap:30px;
}

.about-list{
list-style:none;
}

.about-list li{
display:flex;
gap:10px;
margin-bottom:15px;
}

.about-list i{
color:#ffcc00;
}




/* PROBLEM */

.problem{
padding:70px 0;
background:#0b0b0b;
}

.problem-grid{
display:grid;
gap:30px;
}


.problem-list{
list-style:none;
}



.problem-image img{
width:100%;
border-radius:10px;
}


/* MELHORAR LISTA DA PROBLEM */

.problem-list li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    align-items:flex-start;

    transition:.3s;
}

.problem-list i{
    color:#ffcc00;

    text-shadow:
    0 0 6px #ffcc00,
    0 0 12px #ffcc00;
}

/* HOVER SUAVE */

.problem-list li:hover{
    transform:translateX(6px);
}

/* desktop */
@media(min-width:768px){
    .problem-grid{
        grid-template-columns:1fr 1fr;
        align-items:center;
    }
}


/* SERVICES */

.services{
padding:70px 0;
}

.services-grid{
display:grid;
gap:25px;
}

.service-card{
background:#000f2c;
padding:30px;
border-radius:10px;
text-align:center;
transition:.3s;
}

.service-card i{
font-size:40px;
color:#ffcc00;
margin-bottom:15px;
}

.service-card:hover{
box-shadow:0 0 20px #ffcc00;
transform:translateY(-6px);
}

/* TESTIMONIALS */

.testimonials{
padding:70px 0;
background:#0b0b0b;
}

.testimonial-slider{
overflow:hidden;
}

.testimonial-track{
display:flex;
gap:20px;
animation:scroll 40s linear infinite;
}

/* Pausar carrossel ao passar o mouse */

.testimonial-slider:hover .testimonial-track{

animation-play-state: paused;

}

@keyframes scroll{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

.testimonial-card{

min-width:260px;
background:#111;
padding:20px;
border-radius:10px;

height:200px;

display:flex;
flex-direction:column;
justify-content:space-between;

transition:.3s;

}

/* efeito hover igual aos serviços */

.testimonial-card:hover{

transform:translateY(-6px) scale(1.03);

box-shadow:
0 0 10px #ffcc00,
0 0 20px #ffcc00,
0 0 35px #ffcc00;

}
.stars{
color:#ffcc00;
}


/* WHATSAPP FLOAT PREMIUM */

.whatsapp-float{

position:fixed;

bottom:25px;
right:25px;

width:60px;
height:60px;

background:#25D366;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-size:30px;

text-decoration:none;

z-index:999;

box-shadow:
0 0 10px #25D366,
0 0 20px #25D366;

animation:whatsappPulse 2s infinite;

transition:.3s;

}

/* HOVER */

.whatsapp-float:hover{

transform:scale(1.1);

box-shadow:
0 0 15px #25D366,
0 0 30px #25D366,
0 0 50px #25D366;

}

/* TOOLTIP */

.whatsapp-tooltip{

position:absolute;

right:75px;

background:#111;
color:#fff;

padding:8px 12px;

border-radius:6px;

font-size:13px;

opacity:0;

transform:translateX(10px);

transition:.3s;

white-space:nowrap;

}

.whatsapp-float:hover .whatsapp-tooltip{

opacity:1;
transform:translateX(0);

}

/* PULSE */

@keyframes whatsappPulse{

0%{

box-shadow:
0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:
0 0 0 20px rgba(37,211,102,0);

}

100%{

box-shadow:
0 0 0 0 rgba(37,211,102,0);

}

}

/* FORM */

.form-section{
padding:70px 0;
}

.form-grid{
display:grid;
gap:30px;
}

.form-box input,
.form-box textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:none;
border-radius:6px;
}

.form-box button{
background:#ffcc00;
border:none;
padding:14px;
width:100%;
font-weight:bold;
}

/* =======================
FOOTER
=======================*/

.footer{
background:#111;
color:#fff;
font-size:14px;
}

.footer-container{
padding:100px 20px 60px;
}


/* HEADER */

.footer-header{
margin-bottom:60px;
}


/* SEÇÕES */

.footer-section{
margin-bottom:30px;
text-align:left;
}

.footer-title{
display:flex;
align-items:center;
gap:15px;
font-size:20px;
font-weight:700;
color:#ffcc00;
margin-bottom:20px;
}

.footer-title::after{
content:"";
flex:1;
height:2px;
background:#ffcc00;
opacity:.4;
}


/* TEXTO */

.footer-content p,
.footer-store p{
margin-bottom:8px;
line-height:1.4;
color:#ccc;
}

.footer i{
color:#ffcc00;
margin-right:6px;
}


/* LOJAS */

.footer-stores{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.footer-store h4{
font-size:15px;
font-weight:700;
margin-bottom:10px;
color:#fff;
}


/* LOGOS + REDES */

.footer-bottom-area{
margin-top:60px;
padding-top:40px;

border-top:1px solid rgba(255,255,255,0.1);

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
}


/* LOGOS */

.footer-logos{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.footer-logos img{
max-height:45px;
opacity:.85;
transition:.3s;
}

.footer-logos img:hover{
opacity:1;
transform:translateY(-3px);
}


/* REDES */

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;

    background-color: #3fa9f5;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: all .3s ease;
}

/* Ícone */

.footer-social a i {
    font-size: 20px;
    color: #ffffff;

    line-height: 1;
    margin-right: 0;

    transition: .3s;
}


/* HOVER */

.footer-social a:hover {

    background-color: #fecc08;

    box-shadow:
    0 0 6px #fecc08,
    0 0 14px #fecc08,
    0 0 24px rgba(254,204,8,.7);

}

.footer-social a:hover i {

    color: #000;

}


/* COPYRIGHT */

.footer-copy{
text-align:center;
padding:20px;
background:#000a20;
font-size:13px;
color:#aaa;
}


/* RESPONSIVO */

@media (max-width:900px){

.footer-stores{
grid-template-columns:1fr;
}

.footer-stores .footer-store:first-child{
border-right:none;
padding-right:0;
}

.footer-stores .footer-store:last-child{
padding-left:0;
}

.footer-bottom-area{
grid-template-columns:1fr;
gap:30px;
text-align:center;
}

.footer-logos{
justify-content:center;
}

.footer-social{
justify-content:center;
}

}


/* SCROLL */

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* TABLET */

@media(min-width:768px){

.hero h1{
font-size:42px;
}

.about-grid{
grid-template-columns:1fr 1fr;
}

.problem-grid{
grid-template-columns:1fr 1fr;
}

.services-grid{
grid-template-columns:repeat(3,1fr);
}

.form-grid{
grid-template-columns:1fr 1fr;
}

}