*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
color:#333;
background:#fff;
}

header{
position:fixed;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
font-weight:600;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
}

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:0 8%;
background:
linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5)),
url('hero.jpg');
background-size:cover;
background-position:center;
}

.hero-content{
max-width:700px;
text-align:center;
}

.tag{
letter-spacing:3px;
font-size:.8rem;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin:20px 0;
}

.hero p{
font-size:1.1rem;
line-height:1.8;
}

.hero-buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary,
.btn-secondary{
padding:14px 28px;
text-decoration:none;
border-radius:30px;
}

.btn-primary{
background:#b08d57;
color:white;
}

.btn-secondary{
border:1px solid #b08d57;
color:#b08d57;
}

.section{
padding:100px 8%;
}

.section h2{
font-family:'Cormorant Garamond',serif;
font-size:3rem;
text-align:center;
margin-bottom:50px;
}

.light{
background:#faf7f3;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
padding:40px;
background:white;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.card a{
display:inline-block;
margin-top:20px;
color:#b08d57;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
text-align:center;
}

.pricing{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.price-card{
padding:50px;
border:1px solid #eee;
border-radius:20px;
text-align:center;
}

.featured{
background:#b08d57;
color:white;
}

.price{
font-size:2rem;
margin:20px 0;
}

.steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.steps span{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
border-radius:50%;
background:#b08d57;
color:white;
font-weight:bold;
margin-bottom:15px;
}

.contact{
padding:100px 8%;
}

form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:16px;
border:1px solid #ddd;
border-radius:10px;
}

textarea{
height:150px;
}

button{
padding:16px;
border:none;
background:#b08d57;
color:white;
cursor:pointer;
border-radius:10px;
}

footer{
padding:60px;
text-align:center;
background:#222;
color:white;
}

.footer-logo{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
margin-bottom:10px;
}

@media(max-width:768px){

.hero h1{
font-size:2.7rem;
}

nav{
display:none;
}

.steps{
grid-template-columns:1fr;
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,.2);
z-index:9999;
transition:.3s;
}

.whatsapp-btn{
display:block;
width:fit-content;
margin:40px auto;
padding:16px 32px;
background:#b08d57;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:500;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

}

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.8);
z-index:9999;
justify-content:center;
align-items:center;
}

.popup-content{
background:white;
padding:50px;
border-radius:20px;
text-align:center;
max-width:500px;
width:90%;
}

.popup-content h2{
font-size:1rem;
margin:20px 0;
color:#b08d57;
}

.popup-content p{
margin-bottom:25px;
}

.popup-content button{
padding:12px 25px;
border:none;
background:#b08d57;
color:white;
border-radius:10px;
cursor:pointer;
}