
:root{
  --brand:#c9722e; /* tomado del logo (naranja/dorado) */
  --dark:#2b2b2b;
  --light:#fffaf4;
  --accent:#8b5e34;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;color:#222;background:var(--light);scroll-behavior:smooth}
a{color:var(--brand);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}
header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(6px);
  box-shadow:0 6px 20px rgba(0,0,0,.08)
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:10px 0}
.logo{display:flex;align-items:center;gap:12px}
.logo img{width:42px;height:42px;border-radius:10px}
.nav a{margin:0 10px;font-weight:600}
.btn{display:inline-block;padding:12px 18px;border-radius:14px;background:var(--brand);color:white;font-weight:700;box-shadow:0 8px 20px rgba(201,114,46,.25);transition:transform .2s ease, box-shadow .2s ease}
.btn:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(201,114,46,.35)}
.hero{
  display:grid;grid-template-columns:1.3fr 1fr;gap:26px;align-items:center;
  padding:32px 0 24px;background:linear-gradient(180deg,rgba(255,250,244,1),rgba(255,250,244,.6))
}
.hero h1{font-size:clamp(28px,4vw,48px);margin:.2em 0 .3em;color:var(--dark);line-height:1.08}
.hero p{font-size:1.1rem}
.hero-card{
  background:white;border-radius:24px;overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,.08)
}
.hero-card img{width:100%;height:100%;object-fit:cover;display:block;max-height:420px}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.badge{padding:6px 10px;border-radius:999px;background:#fff;border:1px solid #eee;color:#555;font-size:.85rem}

.section{padding:48px 0}
.section h2{font-size:clamp(24px,3.2vw,36px);margin:0 0 10px}
.section p.lead{font-size:1.05rem;color:#444}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:white;border-radius:20px;box-shadow:0 12px 30px rgba(0,0,0,.07);overflow:hidden}
.card img{width:100%;height:210px;object-fit:cover;display:block}
.card .pad{padding:14px}

.gallery{columns:1;column-gap:14px}
@media(min-width:680px){.gallery{columns:2}}
@media(min-width:980px){.gallery{columns:3}}
.gallery a{display:block;break-inside:avoid;margin:0 0 14px;border-radius:16px;overflow:hidden;box-shadow:0 8px 18px rgba(0,0,0,.08)}
.gallery img{width:100%;display:block}

.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.8);display:none;align-items:center;justify-content:center;padding:20px;z-index:100}
.lightbox.open{display:flex}
.lightbox img{max-width:96vw;max-height:90vh;border-radius:18px;box-shadow:0 20px 60px rgba(0,0,0,.6)}

.embed-grid{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:900px){.embed-grid{grid-template-columns:1.2fr 1fr}}
.embed{background:white;border:1px solid #eee;border-radius:16px;overflow:hidden;min-height:420px;box-shadow:0 10px 26px rgba(0,0,0,.06)}

.contact{display:grid;grid-template-columns:1.1fr 1fr;gap:18px}
.contact form{background:white;padding:18px;border-radius:16px;box-shadow:0 8px 20px rgba(0,0,0,.06)}
label{display:block;font-weight:600;margin:.4rem 0 .2rem}
input,textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid #ddd;outline:none}
textarea{min-height:130px;resize:vertical}
.small{font-size:.9rem;color:#666}

footer{background:#0f0f0f;color:#ddd}
.footer-inner{display:flex;gap:14px;align-items:center;justify-content:space-between;padding:16px 0}
footer a{color:#f5d2b0;text-decoration:underline}
.float-whatsapp{
  position:fixed;right:16px;bottom:16px;width:60px;height:60px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  color:white;font-size:30px;z-index:120;box-shadow:0 10px 26px rgba(0,0,0,.28)
}
.fade-in{animation:fade .9s ease both}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
