@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

body{
background:#fff;
color:#222;
line-height:1.6;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* HEADER (sin cambios SEO) */
.header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,.95);
backdrop-filter:blur(12px);
border-bottom:1px solid #eee;
padding:15px 0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:24px;
font-weight:800;
}

.logo span{
color:#d4af37;
}

nav a{
margin-left:18px;
text-decoration:none;
color:#222;
font-weight:500;
}

/* HERO */
.hero{
padding:150px 0 100px;
background:linear-gradient(180deg,#fff,#fafafa);
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:6px 14px;
background:#f3ead0;
color:#8a6b00;
border-radius:50px;
font-weight:600;
margin-bottom:20px;
}

h1{
font-size:56px;
line-height:1.1;
letter-spacing:-1px;
}

.lead{
font-size:18px;
margin-top:15px;
color:#555;
}

.trust{
margin-top:15px;
font-size:12px;
color:#777;
}

.cta{
margin-top:25px;
display:flex;
gap:15px;
}

.btn{
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.primary{
background:#111;
color:#fff;
}

.secondary{
border:2px solid #ddd;
color:#111;
}

.full{
display:block;
text-align:center;
margin-top:20px;
background:#d4af37;
color:#111;
padding:12px;
border-radius:50px;
font-weight:700;
}

/* CARD */
.card{
background:#fff;
border:1px solid #eee;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.highlight{
margin-top:10px;
font-weight:600;
}

/* SECTIONS */
.section{
padding:100px 0;
}

.dark{
background:#111;
color:#fff;
}

.center{
text-align:center;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:40px;
}

.grid div{
padding:20px;
border:1px solid #eee;
border-radius:12px;
}

.grid2{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:40px;
}

.grid2 div{
padding:18px;
background:#222;
color:#fff;
border-radius:10px;
}

/* PRICE */
.price-big{
font-size:60px;
margin:20px 0;
color:#d4af37;
}

/* FORM */
.contact form{
max-width:500px;
margin:auto;
}

input,textarea{
width:100%;
padding:14px;
margin-bottom:10px;
border:1px solid #ddd;
border-radius:10px;
}

button{
width:100%;
padding:14px;
background:#111;
color:#fff;
border:none;
border-radius:10px;
font-weight:600;
}

/* FOOTER */
footer{
padding:40px 0;
text-align:center;
color:#777;
}