*{

margin:0;

padding:0;

box-sizing:border-box;

}

body{

font-family:Arial, sans-serif;

background:#FFF8F0;

color:#333;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 60px;

background:#8B4513;

}



.logo{

font-size:30px;

font-weight:bold;

color:white;

}

.nav-links{

display:flex;

list-style:none;

gap:30px;

}

.nav-links a{

text-decoration:none;

color:white;

font-size:18px;

transition:0.3s;

}

.nav-links a:hover{

color:#FFD700;

}

.hero{

height:30vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5));

background-size:cover;

background-position:center;

color:white;

}

.hero h1{

font-size:60px;

margin-bottom:10px;

}

.hero p{

font-size:24px;

margin-bottom:30px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.hero button{

padding:15px 35px;

border:none;

border-radius:8px;

background:#E67E22;

color:white;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.hero button:hover{

background:#D2691E;

transform:translateY(-3px);

}

.hero h2
{

font-size:40px;

margin-bottom:15px;

}

.products{

padding:100px 80px;

background:#FFF8F0;

}

.product-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

}

.product-card{

background:white;

padding:20px;

border-radius:50px;

text-align:center;

box-shadow:0 30px 30px rgba(0,0,0,.1);

transition:.3s;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

width:100%;

height:300px;

object-fit:cover;

border-radius:20px;

}

.product-card h3{

margin:20px 0 10px;

font-size:24px;

}

.product-card p{

color:#666;

margin-bottom:15px;

}

.product-card h4{

color:#E67E22;

font-size:28px;

margin-bottom:20px;

}

.product-card button{

background:#8B4513;

color:white;

padding:12px 30px;

border:none;

border-radius:8px;

cursor:pointer;

transition:.3s;

}

.product-card button:hover{

background:#D2691E;

}

.badge{

display:inline-block;

background:#E74C3C;

color:white;

padding:6px 12px;

border-radius:20px;

font-size:14px;

margin-bottom:15px;

}

@media(max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

.navbar{

flex-direction:column;

gap:20px;

}

.hero h1{

font-size:40px;

}

.hero-buttons{

flex-direction:column;

}

}

.features{

padding:80px 60px;

background:#ffffff;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.feature-card{

background:#FFF8F0;

padding:40px;

border-radius:15px;

text-align:center;

transition:.3s;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.feature-card:hover{

transform:translateY(-8px);

}

.testimonials{

padding:80px 60px;

background:#FFF8F0;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:white;

padding:30px;

border-radius:15px;

box-shadow:0 10px 20px rgba(0,0,0,.1);

text-align:center;

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-8px);

}



footer{

background:#8B4513;

color:white;

padding:50px;

text-align:center;

}

footer p{

margin-top:15px;

}

.whatsapp{

position:fixed;

bottom:30px;

right:30px;

background:#25D366;

width:60px;

height:60px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:30px;

text-decoration:none;

color:white;

box-shadow:0 10px 20px rgba(0,0,0,.2);

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}

@media(max-width:768px){

.feature-grid,

.testimonial-grid,

.product-grid{

grid-template-columns:1fr;

}

.nav-links{

flex-direction:column;

align-items:center;

}

}