/*==========================
RESET
==========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f7f7;
color:#333;
line-height:1.6;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

/*==========================
HEADER
==========================*/

header{

position:fixed;
top:0;
left:0;

width:100%;

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(255,255,255,.95);

backdrop-filter:blur(10px);

box-shadow:0 5px 15px rgba(0,0,0,.08);

z-index:999;

}

.logo img{

width:85px;

transition:.3s;

}

.logo img:hover{

transform:scale(1.05);

}

nav{

display:flex;

gap:35px;

}

nav a{

font-size:16px;

font-weight:600;

color:#146b2e;

transition:.3s;

position:relative;

}

nav a:hover{

color:#38b44a;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:2px;

background:#38b44a;

transition:.3s;

}

nav a:hover::after{

width:100%;

}

.language{

display:flex;

gap:10px;

}

.language button{

width:40px;

height:40px;

border:none;

border-radius:50%;

cursor:pointer;

background:#fff;

box-shadow:0 5px 10px rgba(0,0,0,.1);

font-size:18px;

transition:.3s;

}

.language button:hover{

transform:translateY(-3px);

}

.menu{

display:none;

font-size:30px;

cursor:pointer;

color:#146b2e;

}

/*==========================
HERO
==========================*/

.hero{

height:100vh;

background:

linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),

url("../images/hero.jpg");

background-size:cover;

background-position:center;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

.overlay{

max-width:850px;

color:white;

animation:fadeUp 1s;

}

.overlay h1{

font-size:60px;

font-weight:700;

margin-bottom:20px;

}

.overlay p{

font-size:22px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.green{

background:#2fb344;

color:white;

border:none;

padding:18px 38px;

border-radius:40px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.green:hover{

background:#1d7f31;

transform:translateY(-4px);

}

.white{

background:white;

color:#146b2e;

border:none;

padding:18px 38px;

border-radius:40px;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.white:hover{

transform:translateY(-4px);

}

/*==========================
ABOUT
==========================*/

.about{

padding:100px 8%;

background:white;

}

.container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.about-text h2{

font-size:42px;

color:#146b2e;

margin-bottom:20px;

}

.about-text p{

font-size:18px;

color:#555;

margin-bottom:35px;

}

.info{

display:flex;

gap:25px;

flex-wrap:wrap;

}

.info div{

background:#f8f8f8;

padding:20px;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.08);

flex:1;

min-width:170px;

text-align:center;

}

.info h3{

color:#2fb344;

margin-bottom:8px;

}

/*==========================
PRODUCTS
==========================*/

.products{

padding:100px 8%;

background:#f4fff5;

}

.products h2{

text-align:center;

font-size:42px;

color:#146b2e;

margin-bottom:60px;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 30px rgba(0,0,0,.08);

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

}

.card i{

font-size:50px;

color:#2fb344;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

font-size:24px;

color:#146b2e;

}

.card p{

color:#666;

font-size:16px;

}
/*==========================
GALLERY
==========================*/

.gallery{

padding:100px 8%;

background:white;

}

.gallery h2{

text-align:center;

font-size:42px;

color:#146b2e;

margin-bottom:15px;

}

.gallery-text{

text-align:center;

color:#666;

margin-bottom:50px;

font-size:18px;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.gallery-grid img{

width:100%;

height:280px;

object-fit:cover;

border-radius:18px;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.12);

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}



/*==========================
WHY US
==========================*/

.why{

padding:100px 8%;

background:#f5fff7;

}

.why h2{

text-align:center;

font-size:42px;

color:#146b2e;

margin-bottom:60px;

}

.why-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.why-box{

background:white;

padding:40px 25px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.why-box:hover{

transform:translateY(-10px);

}

.why-box i{

font-size:55px;

color:#2fb344;

margin-bottom:20px;

}

.why-box h3{

color:#146b2e;

font-size:23px;

}



/*==========================
CONTACT
==========================*/

.contact{

padding:100px 8%;

background:white;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.contact-info h2{

font-size:42px;

margin-bottom:30px;

color:#146b2e;

}

.contact-info p{

font-size:18px;

margin-bottom:20px;

color:#555;

}

.contact-info i{

color:#2fb344;

margin-right:10px;

}

.call-btn,

.whatsapp-btn{

display:inline-block;

margin-top:15px;

padding:16px 35px;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.call-btn{

background:#146b2e;

color:white;

margin-right:15px;

}

.call-btn:hover{

background:#0e5121;

}

.whatsapp-btn{

background:#25D366;

color:white;

}

.whatsapp-btn:hover{

background:#1da851;

}

.map iframe{

width:100%;

height:420px;

border:none;

border-radius:20px;

box-shadow:0 15px 30px rgba(0,0,0,.1);

}



/*==========================
FOOTER
==========================*/

footer{

background:#146b2e;

color:white;

text-align:center;

padding:60px 20px;

}

.footer-logo img{

width:95px;

margin:auto;

margin-bottom:20px;

}

footer h3{

font-size:32px;

margin-bottom:10px;

}

footer p{

margin-top:10px;

}

.social{

margin-top:25px;

}

.social a{

display:inline-flex;

justify-content:center;

align-items:center;

width:50px;

height:50px;

border-radius:50%;

background:white;

color:#146b2e;

margin:0 10px;

font-size:22px;

transition:.3s;

}

.social a:hover{

transform:translateY(-5px);

background:#2fb344;

color:white;

}

.copyright{

margin-top:35px;

opacity:.8;

}



/*==========================
FLOATING WHATSAPP
==========================*/

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

box-shadow:0 10px 20px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

}



/*==========================
ANIMATION
==========================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}



/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.container,

.contact-container{

grid-template-columns:1fr;

}

.about-image{

margin-bottom:30px;

}

nav{

display:none;

}

.menu{

display:block;

}

.overlay h1{

font-size:42px;

}

.overlay p{

font-size:18px;

}

}



@media(max-width:768px){

header{

padding:15px 20px;

}

.logo img{

width:70px;

}

.hero{

padding:20px;

}

.overlay h1{

font-size:34px;

}

.overlay p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.green,

.white{

width:100%;

}

.about,

.products,

.gallery,

.why,

.contact{

padding:70px 20px;

}

.about h2,

.products h2,

.gallery h2,

.why h2,

.contact h2{

font-size:30px;

}

.gallery-grid img{

height:220px;

}

.map iframe{

height:300px;

}

.info{

flex-direction:column;

}

}
nav.show{

display:flex;

position:absolute;

top:90px;

left:0;

width:100%;

background:white;

flex-direction:column;

padding:20px;

gap:20px;

box-shadow:0 10px 20px rgba(0,0,0,.1);

}