/* ==================================================
RESET
================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:#fff;
line-height:1.6;
}


/* ==================================================
NAVBAR
================================================== */

.navbar{
padding:18px 0;
background:transparent;
transition:0.3s;
}

.navbar.scrolled{
background:#000;
box-shadow:0 5px 20px rgba(0,0,0,0.6);
}

.logo{
font-weight:600;
font-size:20px;
letter-spacing:1px;
}

.nav-link{
color:#cfcfcf !important;
margin-left:25px;
font-size:15px;
transition:0.25s;
}

.nav-link:hover,
.nav-link.active{
color:#00ec1f !important;
}


/* ==================================================
BACKGROUND PRINCIPAL
================================================== */

.main-background{

background:
linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.45)),
url("../img/hero-bg.jpg.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}


/* ==================================================
HERO
================================================== */

.hero{
min-height:70vh;
display:flex;
align-items:center;
}

.hero-logo img{
max-width:460px;
width:100%;
}

.hero-text h1{
font-size:32px;
font-weight:500;
line-height:1.25;
margin-bottom:20px;
color: #ffffff;
}

.hero-text p{
font-size:18px;
color:#dcdcdc;
margin-bottom:15px;
}

.hero-highlight{
font-style:italic;
font-weight:500;
color:#e6e6e6;
}


/* ==================================================
PLATFORMS
================================================== */

.platforms{
padding:40px 0;
background:#000;
margin-top: 5px;
}

.platforms-title{
text-align:center;
font-size:36 px;
font-weight:600;
margin-bottom:60 px;
color:#00ec1f;
}


/* CARD */

.platform-card{

background:linear-gradient(180deg,#1a1a1a,#111);

border-radius:12px;

padding:30px 25px;

text-align:center;

display:flex;

flex-direction:column;

justify-content:flex-start;

gap:15px;

height:100%;

min-height:420px;

box-shadow:0 10px 25px rgba(0,0,0,0.4);

transition:0.3s;

}

.platform-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}


/* LOGO */

.platform-logo{
height:95px;
object-fit:contain;
margin-bottom:10px;
}


/* TITULO */

.platform-card h3{
color:#00ec1f;
font-size:22px;
min-height:28px;
}


/* TEXTO */

.platform-card p{
font-size:14px;
color:#dcdcdc;
line-height:1.5;
}


/* BOTÃO */

.btn-platform{

margin-top:auto;

display:inline-block;

background:#00ec1f;

color:#000;

padding:10px 28px;

border-radius:6px;

text-decoration:none;

font-weight:500;

transition:0.25s;

}

.btn-platform:hover{
background:#00c91a;
}


/* ==================================================
ABOUT
================================================== */

.about{
padding:40px 0;
background:#0a0a0a;
color: #ffffff;
}

.about-title{
text-align:center;
font-size:36 px;
font-weight:600;
margin-bottom:80px;
color:#00ec1f;
}


.about-highlight{
font-size:25px;
font-weight:600;
line-height:1.3;
margin-bottom:25px;
}

.about-text{
font-size:17px;
color:#dcdcdc;
margin-bottom:20px;
}

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

.about-list li{
font-size:16px;
margin-bottom:10px;
color:#e6e6e6;
padding-left:25px;
position:relative;
}

.about-list li::before{
content:"✓";
position:absolute;
left:0;
color:#00ec1f;
font-weight:bold;
}

.about-logo{
max-width:380px;
width:100%;
}


/* ==================================================
PURPOSE
================================================== */

.purpose{
padding:120px 0;
border-bottom:2px solid #00ec1f;
background:#000;
}

.purpose-title{
font-size:40px;
font-weight:300;
line-height:1.2;
color:#6d6d6d;
}

.purpose-title span{
color:#00ec1f;
font-weight:600;
}

.purpose-highlight{
font-size:28px;
font-weight:600;
margin-bottom:20px;
color: #ffffff;
}

.purpose-text{
font-size:17px;
color:#dcdcdc;
max-width:700px;
}


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

.footer{
background:#000;
padding:50px 0;
border-top:1px solid #00ec1f;
}

.footer-logo img{
height:90px;
}

.footer h5{
font-size:16px;
font-weight:600;
margin-bottom:10px;
color:#00ec1f;
}

.footer p{
font-size:15px;
line-height:1.6;
color: #ffffff;
}

.footer-email i{
color:#00ff6a;
margin-right:8px;
}

.footer-email a{
color:#fff;
text-decoration:none;
}

.footer-email a:hover{
text-decoration:underline;
}

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

.social{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
background:#00ec1f;
color:#000;
border-radius:8px;
font-size:18px;
text-decoration:none;
transition:0.25s;
}

.social:hover{
transform:translateY(-4px);
background:#00c91a;
}


/* ==================================================
RESPONSIVO TABLET
================================================== */

@media (max-width:992px){

.hero{
text-align:center;
padding-top:120px;
}

.hero-logo{
margin-bottom:40px;
}

.hero-text h1{
font-size:26px;
}

.hero-text p{
font-size:16px;
}

.platforms{
padding:80px 0;
}

.platform-card{
min-height:auto;
}

.about{
padding:80px 0;
}

.purpose{
padding:80px 0;
}

.footer-social{
justify-content:flex-start;
margin-top:20px;
}

}


/* ==================================================
RESPONSIVO MOBILE
================================================== */

@media (max-width:576px){

.nav-link{
margin-left:0;
margin-top:10px;
}

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

.hero-logo img{
max-width:260px;
}

.hero-text h1{
font-size:22px;
}

.hero-text p{
font-size:15px;
}

.platforms-title{
font-size:26px;
}

.platform-card{
padding:25px 20px;
}

.about-title{
font-size:26px;
}

.about-highlight{
font-size:20px;
}

.purpose-title{
font-size:28px;
}

.purpose-highlight{
font-size:22px;
}

.footer{
text-align:center;
}

.footer-logo{
margin-bottom:30px;
}

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

}
