html{
scroll-behavior:smooth;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter', sans-serif;
font-size:17px;
background:linear-gradient(180deg,#0f3d1c,#1c6b37);
color:white;
overflow-x:hidden;
}

/* TÍTULOS */

h1,h2,h3{
font-family:'Montserrat', sans-serif;
font-weight:600;
}

/* HEADER */

header{
position:fixed;
top:0;
width:100%;
background:transparent;
transition:0.3s;
z-index:1000;
}

header.scrolled{
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
}

.menu-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
gap:20px;
}

.logo{
height:65px;
max-width:100%;
}

/* MENU */

nav{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
position:relative;
}

nav a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#7CFF7C;
left:0;
bottom:-6px;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

nav a.active{
color:#7CFF7C;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px 80px;
background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("assets/plantacao.jpg");
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;
}

.hero-content{
max-width:700px;
animation:fadeUp 1s ease;
position:relative;
z-index:2;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
line-height:1.1;
}

.hero p{
font-size:20px;
margin-bottom:30px;
line-height:1.6;
}

/* BOTÃO */

.btn{
display:inline-block;
padding:14px 30px;
background:#7CFF7C;
color:#063110;
font-weight:600;
border-radius:6px;
text-decoration:none;
transition:0.3s;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

/* SEÇÕES */

section{
padding:100px 20px;
}

.container{
max-width:1100px;
margin:auto;
text-align:center;
width:100%;
}

h2{
font-size:34px;
margin-bottom:40px;
line-height:1.2;
}

/* LISTA */

.tech{
list-style:none;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:16px;
margin-top:30px;
}

.tech li{
background:rgba(255,255,255,0.05);
padding:14px 18px;
border-radius:8px;
font-size:17px;
transition:0.3s;
}

.tech li:hover{
background:rgba(255,255,255,0.09);
transform:translateY(-2px);
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
justify-items:center;
max-width:1000px;
margin:auto;
}

.card{
width:100%;
background:rgba(255,255,255,0.08);
padding:30px;
border-radius:12px;
transition:0.3s;
backdrop-filter:blur(6px);
}

.card:hover{
transform:translateY(-10px);
background:rgba(255,255,255,0.14);
}

/* CONTATO */

.email{
display:inline-block;
margin-top:15px;
color:#7CFF7C;
font-size:18px;
word-break:break-word;
}

/* FOOTER */

footer{
background:#081e0d;
text-align:center;
padding:40px 20px;
}

footer img{
height:130px;
max-width:100%;
margin-bottom:10px;
}

/* LATERAIS */

.lateral{
position:fixed;
top:0;
height:100%;
width:120px;
background-image:url("assets/grafismo.png");
background-size:cover;
opacity:0.12;
z-index:-1;
}

.lateral.left{
left:0;
}

.lateral.right{
right:0;
}

/* ANIMAÇÕES */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* SEÇÃO EMPRESA */

.empresa-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.empresa-card{
background:rgba(255,255,255,0.08);
padding:30px;
border-radius:12px;
transition:0.3s;
text-align:left;
width:100%;
}

.empresa-card h3{
margin-bottom:12px;
font-size:20px;
color:#7CFF7C;
}

.empresa-card p{
opacity:0.9;
line-height:1.7;
}

.empresa-card:hover{
transform:translateY(-6px);
background:rgba(255,255,255,0.14);
}

/* HERO GLOW */

.hero::before{
content:"";
position:absolute;
width:200%;
height:200%;
top:-50%;
left:-50%;
background:radial-gradient(circle at center, rgba(124,255,124,0.15), transparent 60%);
animation:heroGlow 12s linear infinite;
z-index:1;
}

@keyframes heroGlow{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

/* PARTICULAS */

#heroParticles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none;
}

/* BOTÃO WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
transition:all 0.3s ease;
z-index:999;
}

.whatsapp-btn:hover{
transform:scale(1.1);
box-shadow:0 12px 25px rgba(0,0,0,0.4);
}

/* GALERIA */

.galeria-scroll{
width:100%;
overflow:hidden;
margin-bottom:60px;
}

.galeria-track{
display:flex;
gap:25px;
width:max-content;
animation:scrollGaleria 60s linear infinite;
}

.galeria-track img{
height:160px;
width:260px;
object-fit:cover;
border-radius:10px;
opacity:0.9;
transition:0.3s;
}

.galeria-track img:hover{
opacity:1;
transform:scale(1.05);
}

@keyframes scrollGaleria{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

@media (max-width: 992px){

.hero h1{
font-size:46px;
}

.hero p{
font-size:18px;
}

.menu-container{
padding:18px;
}

.cards{
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

}

/* TABLETS */

@media (max-width: 768px){

body{
font-size:16px;
}

.menu-container{
flex-direction:column;
justify-content:center;
text-align:center;
padding:15px;
}

.logo{
height:58px;
}

nav{
justify-content:center;
gap:16px;
}

.hero{
padding-top:160px;
padding-bottom:80px;
min-height:auto;
}

.hero h1{
font-size:36px;
line-height:1.2;
}

.hero p{
font-size:16px;
padding:0 10px;
}

.btn{
padding:12px 24px;
font-size:15px;
}

section{
padding:80px 20px;
}

h2{
font-size:28px;
margin-bottom:30px;
}

.tech{
grid-template-columns:1fr;
}

.cards{
grid-template-columns:1fr;
}

.empresa-grid{
grid-template-columns:1fr;
}

.empresa-card{
text-align:center;
}

.lateral{
display:none;
}

.galeria-track{
gap:15px;
}

.galeria-track img{
width:190px;
height:120px;
}

.whatsapp-btn{
width:55px;
height:55px;
font-size:24px;
right:18px;
bottom:18px;
}

footer img{
height:100px;
}

}

/* CELULARES PEQUENOS */

@media (max-width: 480px){

.hero h1{
font-size:30px;
}

.hero p{
font-size:15px;
}

h2{
font-size:24px;
}

.card,
.empresa-card{
padding:24px;
}

.tech li{
font-size:15px;
}

.galeria-track img{
width:160px;
height:100px;
}

.btn{
width:100%;
max-width:320px;
}

nav{
gap:12px;
}

nav a{
font-size:14px;
}

.logo{
height:50px;
}

footer{
padding:30px 15px;
}

}