
/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#000;
color:#fff;
overflow-x:hidden;
}

/* HEADER */

.hero{
text-align:center;
padding:80px 20px;
}

.hero h1{
color:#ff2a2a;
font-size:45px;
margin-bottom:20px;
}

.hero h2{
font-size:26px;
margin-bottom:10px;
}

.hero span{
color:#ff2a2a;
}

.hero p{
max-width:700px;
margin:auto;
opacity:.8;
margin-bottom:30px;
}

.buttons button{
padding:12px 25px;
margin:10px;
border:none;
cursor:pointer;
font-weight:bold;
border-radius:5px;
}

.btn1{
background:#ff0055;
color:white;
}

.btn2{
background:transparent;
border:2px solid #ff0055;
color:white;
}

/* SECTION */

.section{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
padding:60px 20px;
flex-wrap:wrap;
}

.section img{
width:350px;
border-radius:8px;
}

.section-text{
max-width:400px;
}

.section-text h3{
color:#ff2a2a;
margin-bottom:15px;
}

/* SCROLL NOMES */

.scroll-area{
margin-top:60px;
overflow:hidden;
background:#050505;
padding:20px 0;
}

.scroll{
display:flex;
white-space:nowrap;
font-size:18px;
gap:60px;
}

/* esquerda */
.left{
animation:moveLeft 20s linear infinite;
}

/* direita */
.right{
animation:moveRight 20s linear infinite;
}

@keyframes moveLeft{
0%{transform:translateX(100%)}
100%{transform:translateX(-100%)}
}

@keyframes moveRight{
0%{transform:translateX(-100%)}
100%{transform:translateX(100%)}
}

.name{
background:#111;
padding:8px 20px;
border-radius:20px;
border:1px solid #333;
}

footer{
background:#0a0a0a;
padding:60px 20px;
}

.footer-grid{
display:flex;
flex-wrap:wrap;
justify-content:space-around;
gap:30px;
}

.copy{
text-align:center;
margin-top:40px;
opacity:.6;
}

/* RESPONSIVO */
@media(max-width:768px){

.hero h1{
font-size:30px;
}

.section{
flex-direction:column;
}

.benefits{
flex-direction:column;
text-align:center;
}

}
