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

body{
font-family:Arial,sans-serif;
background:#f8f6ef;
color:#222;
line-height:1.6;
}

.navbar{
position:sticky;
top:0;
z-index:1000;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#111;
box-shadow:0 2px 10px rgba(0,0,0,.2);
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
height:55px;
width:auto;
}

.logo span{
color:#d4af37;
font-size:24px;
font-weight:bold;
}

.menu{
display:flex;
gap:20px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.menu a:hover

.hero{
min-height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:40px;
background:linear-gradient(135deg,#fffdf5,#f6e6a8);
color:#111;
}

.hero h1{
font-size:60px;
max-width:900px;
margin-bottom:20px;
text-shadow:0 0 15px rgba(212,175,55,.35);
}

.hero p{
font-size:22px;
max-width:700px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.contact-numbers{
margin-top:15px;
font-weight:bold;
color:#d4af37;
}

.btn{
background:#d4af37;
color:#111;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
display:inline-block;
transition:.3s;
}

.btn:hover{
background:#b8941f;
transform:translateY(-3px);
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:50px 20px;
max-width:1200px;
margin:auto;
}

.stat-card{
background:white;
padding:25px;
border-radius:15px;
text-align:center;
box-shadow:0 4px 15px rgba(0,0,0,.08);
border:2px solid #d4af37;
transition:.3s;
}

.stat-card h2{
color:#d4af37;
font-size:36px;
}

section{
padding:80px 20px;
}

section h2{
text-align:center;
margin-bottom:25px;
font-size:38px;
color:#111;
}

#about,
#services,
#management,
#catalog,
#contact{
max-width:1200px;
margin:30px auto;
background:white;
border-radius:20px;
padding:40px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
padding:25px;
background:#fffdf7;
border:2px solid #d4af37;
border-radius:15px;
font-weight:bold;
text-align:center;
transition:.3s;
}

.card:hover,
.stat-card:hover,
.team-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(212,175,55,.35);
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.team-card{
text-align:center;
transition:.3s;
}

.team-card img{
width:100%;
max-width:300px;
height:300px;
object-fit:cover;
border-radius:20px;
border:4px solid #d4af37;
}

#catalog,
#contact{
text-align:center;
}

#contact h3{
color:#d4af37;
margin-top:20px;
margin-bottom:10px;
}

#contact p{
margin-bottom:10px;
line-height:1.8;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:9999;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.whatsapp-float:hover{
transform:translateY(-3px);
}

.footer{
background:#111;
color:white;
text-align:center;
padding:40px 20px;
margin-top:50px;
}

.footer h3{
color:#d4af37;
margin-bottom:10px;
}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:15px;
padding:20px;
}

.menu{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
}
}

#gallery{
max-width:1200px;
margin:30px auto;
background:white;
border-radius:20px;
padding:40px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:280px;
object-fit:cover;
border-radius:15px;
border:3px solid #d4af37;
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(212,175,55,.4);
}
.email-float{
position:fixed;
bottom:85px;
right:20px;
background:#d4af37;
color:#111;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:9999;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.email-float:hover{
transform:translateY(-3px);
}
.team-card h3{
color:#d4af37;
margin-top:15px;
font-size:24px;
}

.team-card p{
font-weight:bold;
color:#444;
}
