
:root{
  --bg:#0f1410;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.60);
  --accent:#caa37a;   /* oro suave */
  --accent2:#7aa58a;  /* verde */
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% -10%, rgba(122,165,138,.25), transparent 60%),
              radial-gradient(1000px 700px at 80% 0%, rgba(202,163,122,.20), transparent 55%),
              linear-gradient(180deg, #0c110d, #0f1410 40%, #0b0f0c 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(0,0,0,.20);
  color:var(--muted);
  font-size:13px;
}
.badge i{
  width:10px; height:10px; border-radius:50%;
  background:var(--accent2);
  box-shadow:0 0 0 4px rgba(122,165,138,.12);
}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(10,14,11,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 0;
}
.brand img{width:34px; height:34px; border-radius:10px; object-fit:cover}
.brand .title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand .subtitle{
  font-size:12px; color:var(--muted2); margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nav-links{
  display:flex; gap:18px; align-items:center;
}
.nav-links a{
  color:var(--muted);
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  transition: .2s ease;
}
.nav-links a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav-cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  transition: .2s ease;
  box-shadow:none;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.09)}
.btn.primary{
  background: linear-gradient(135deg, rgba(202,163,122,.85), rgba(122,165,138,.65));
  border-color: rgba(255,255,255,.22);
  color:#101410;
}
.btn.primary:hover{filter: brightness(1.03)}
.btn.icon{
  padding:12px;
  width:46px;
}
.btn svg{width:18px; height:18px}
.hamburger{display:none}

.hero{
  position:relative;
  padding:56px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  min-height: 480px;
  position:relative;
}
.hero-media{
  position:absolute; inset:0;
  background: #111;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position: center;
  filter: none;
  transform: scale(1.02);
}
.hero-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.38) 35%,
      rgba(0,0,0,.18) 62%,
      rgba(0,0,0,.10) 100%);
}
.hero-content{
  position:relative;
  padding:40px 38px;
  max-width: 680px;
}
.kicker{margin:0 0 14px}
.h1{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing:-.02em;
}
.h1 span{color: rgba(202,163,122,.98)}
.lead{
  margin:14px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-pills{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:18px
}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.14);
  color: var(--muted);
  font-size: 13px;
}
.pill strong{color:var(--text); font-weight:700}
.side{
  display:grid;
  gap:14px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow:hidden;
}
.card.pad{padding:18px}
.card h3{
  margin:0 0 10px;
  font-size:15px;
  letter-spacing:.02em;
}
.list{
  margin:0; padding:0; list-style:none;
  display:grid; gap:10px;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  color: var(--muted);
  font-size:14px;
  line-height:1.45;
}
.check{
  width:18px; height:18px; flex:0 0 18px;
  border-radius:6px;
  background: rgba(122,165,138,.25);
  border:1px solid rgba(122,165,138,.55);
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.check svg{width:12px; height:12px}
.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.mini .stat{
  padding:14px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.10);
}
.stat .big{
  font-size:18px;
  font-weight:800;
  letter-spacing:.02em;
}
.stat .small{
  margin-top:6px;
  font-size:12px;
  color:var(--muted2);
  line-height:1.35;
}
.section{
  padding: 44px 0;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin-bottom:18px;
}
.section h2{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing:-.01em;
}
.section p.sub{
  margin:6px 0 0;
  color:var(--muted);
  max-width: 70ch;
  line-height:1.6;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  position:relative;
  overflow:hidden;
}
.feature:before{
  content:"";
  position:absolute; inset:-40px -40px auto auto;
  width:140px; height:140px;
  background: radial-gradient(circle at center, rgba(202,163,122,.20), transparent 70%);
  transform: rotate(12deg);
}
.feature h4{margin:0 0 8px; font-size:15px}
.feature p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gitem{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f1410;
  position:relative;
  cursor:pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.gitem img{width:100%; height:240px; object-fit:cover; transition:.35s ease}
.gitem:hover img{transform: scale(1.04)}
.gcap{
  position:absolute; left:12px; bottom:12px; right:12px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.90);
  font-size:13px;
}
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.82);
  display:none;
  align-items:center; justify-content:center;
  z-index: 99;
  padding: 18px;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
}
.lightbox .close{
  position:absolute; top:18px; right:18px;
}
.embed-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  min-height: 360px;
}
.embed iframe{width:100%; height:100%; border:0}
.video{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
}
.video iframe{width:100%; height:420px; border:0}
.review{
  border-radius: calc(var(--radius) + 6px);
  padding:24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.review p{margin:0; color:var(--muted); line-height:1.7}
.review .who{margin-top:14px; color:rgba(255,255,255,.88); font-weight:700}
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{display:flex; flex-direction:column; gap:8px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(202,163,122,.55); box-shadow: 0 0 0 4px rgba(202,163,122,.10)}
.form .full{grid-column: 1 / -1}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:6px}
.note{color:var(--muted2); font-size:12px; line-height:1.45; margin-top:10px}

.whatsapp{
  position:fixed;
  right:18px; bottom:18px;
  width:56px; height:56px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: #25D366;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 80;
  border: 1px solid rgba(255,255,255,.25);
}
.whatsapp svg{width:26px; height:26px; fill:white}
.callbar{
  position:fixed;
  left:18px; bottom:18px;
  display:flex; gap:10px;
  z-index:80;
}
.callbar a{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius: 16px;
  background: rgba(10,14,11,.70);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  font-weight:700;
}
.callbar a svg{width:18px; height:18px}

.footer{
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.footer .row{
  display:flex; gap:16px; align-items:center; justify-content:space-between; flex-wrap:wrap;
  color: var(--muted2);
  font-size: 13px;
}
.footer .row strong{color:rgba(255,255,255,.9)}
.footer .row p{margin:0}
.small-links{display:flex; gap:14px; flex-wrap:wrap}
.small-links a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}

.fade-in{opacity:0; transform: translateY(10px); transition: .6s ease}
.fade-in.show{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card{min-height: 460px}
  .embed-grid{grid-template-columns:1fr}
  .video iframe{height:380px}
}
@media (max-width: 760px){
  .nav-links{display:none}
  .hamburger{display:inline-flex}
  .hero{padding-top:32px}
  .hero-content{padding:28px 22px}
  .hero-media:after{
    background: linear-gradient(180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 45%,
      rgba(0,0,0,.25) 70%,
      rgba(0,0,0,.18) 100%);
  }
  .grid3{grid-template-columns:1fr}
  .gallery{gap:10px}
  .gitem{grid-column: span 12}
  .gitem img{height:240px}
  .form{grid-template-columns:1fr}
  .callbar{left:12px; right:12px; bottom:88px; justify-content:center}
  .callbar a{width:100%; max-width:520px; justify-content:center}
}
