/* === VARIABLES === */
:root {
  --bg: #050505; --bg2: #0d0d0d;
  --tx: #f0f0f0; --dim: rgba(240,240,240,.45); --bord: rgba(255,255,255,.1);
  --gold: #c5a47e; --grad: linear-gradient(135deg,#c5a47e,#e8c99a);
  --green: #25D366; --t: .3s ease;
}

/* === RESET === */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth }
body { background:var(--bg); color:var(--tx); font-family:'Montserrat',sans-serif; line-height:1.7; overflow-x:hidden }
a { color:inherit; text-decoration:none }
button { font-family:inherit; cursor:pointer; border:none; background:none }
ul { list-style:none }
.gold { color:var(--gold) }

/* === ENTRADA === */
#entrada {
  position:fixed; inset:0; background:#000; z-index:9999;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  cursor:pointer; text-align:center;
  transition:transform 1.2s cubic-bezier(.8,0,.2,1);
}
#entrada.out { transform:translateY(-100%) }
.esym {
  font-size:min(140px,25vw); line-height:1;
  background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  animation:pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
.etit { font-size:min(8rem,20vw); letter-spacing:.6em; text-indent:.6em; font-weight:800; color:#fff; line-height:1 }
.esub { font-size:.68rem; letter-spacing:.45em; color:var(--gold); opacity:.7; margin-top:.7rem }
.ecta { margin-top:2.5rem; font-size:.55rem; letter-spacing:.5em; color:rgba(255,255,255,.3); display:flex; align-items:center; gap:.7rem }
.dot { width:6px; height:6px; background:var(--gold); border-radius:50%; animation:blink 2s ease-in-out infinite }
@keyframes blink { 0%,100%{opacity:.3} 50%{opacity:1} }

/* === MODAL === */
.modal { position:fixed; inset:0; background:rgba(0,0,0,.88); z-index:8000; display:none; align-items:center; justify-content:center; padding:1rem; backdrop-filter:blur(10px) }
.modal.on { display:flex }
.mbox { background:var(--bg2); border:1px solid rgba(197,164,126,.2); padding:2.5rem 2rem; max-width:560px; width:100%; max-height:92vh; overflow-y:auto; position:relative }
.mclose { position:absolute; top:1rem; right:1rem; border:1px solid var(--bord); color:var(--dim); font-size:.58rem; letter-spacing:.15em; padding:.4rem .8rem; transition:all var(--t) }
.mclose:hover { color:var(--gold); border-color:var(--gold) }
.pbar { height:1px; background:var(--bord); margin-bottom:2rem }
.pbar div { height:100%; background:var(--grad); width:0; transition:width .4s ease }
.stag { font-size:.55rem; letter-spacing:.22em; color:var(--gold); display:block; margin-bottom:.6rem }
.step h3, .mbox h3 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.3rem,3vw,1.8rem); font-style:italic; margin-bottom:1.6rem }
.step { display:none } .step.on { display:block }
.opts { display:grid; grid-template-columns:1fr 1fr; gap:.7rem }
.opts.t3 { grid-template-columns:repeat(3,1fr) }
.opts button { background:rgba(255,255,255,.03); border:1px solid var(--bord); padding:1.2rem .9rem; display:flex; flex-direction:column; gap:.35rem; color:var(--tx); text-align:left; transition:all var(--t) }
.opts button:hover { border-color:var(--gold); background:rgba(197,164,126,.06) }
.opts button b { font-size:.62rem; letter-spacing:.1em; color:var(--gold) }
.opts button small { font-size:.65rem; color:var(--dim); font-weight:300 }
#sfin { text-align:center }
#res { background:rgba(197,164,126,.05); border:1px solid rgba(197,164,126,.15); padding:1.2rem; margin:1rem 0; font-size:.76rem; color:var(--dim); line-height:2 }
.bts { display:flex; flex-direction:column; gap:.7rem; align-items:center }
.bwa { background:var(--green); color:#fff; padding:.85rem 2rem; font-size:.63rem; letter-spacing:.15em; font-weight:700; width:100%; transition:opacity var(--t) }
.bwa:hover { opacity:.85 }
.bsk { color:var(--dim); font-size:.6rem; letter-spacing:.15em; transition:color var(--t) }
.bsk:hover { color:var(--gold) }

/* === FORM === */
.frow { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin-bottom:.8rem }
.ff { display:flex; flex-direction:column; gap:.3rem }
.ff.full { margin-bottom:.8rem }
.ff label { font-size:.56rem; letter-spacing:.18em; color:var(--gold); font-weight:600 }
.ff input, .ff select, .ff textarea { background:rgba(255,255,255,.04); border:1px solid var(--bord); color:var(--tx); padding:.8rem .9rem; font-family:'Montserrat',sans-serif; font-size:.78rem; outline:none; transition:border-color var(--t) }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color:var(--gold) }
.ff input::placeholder, .ff textarea::placeholder { color:var(--dim) }
.ff select option { background:var(--bg2) }
.ff textarea { resize:vertical }
.fe { font-size:.6rem; color:#ef5350; min-height:.85rem }
#cf button[type=submit] { background:var(--grad); color:#000; padding:.95rem; font-size:.63rem; letter-spacing:.2em; font-weight:800; width:100%; margin-top:.5rem; transition:opacity var(--t) }
#cf button[type=submit]:hover { opacity:.85 }
.fok { text-align:center; padding:2rem 0 }
.fok p { font-size:2.5rem; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:.8rem }
.fok h3 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-style:italic; margin-bottom:.6rem }
.fok small { font-size:.75rem; color:var(--dim) }

/* === NAV === */
#nav { position:fixed; top:0; left:0; width:100%; z-index:1000; display:flex; align-items:center; justify-content:space-between; padding:1.2rem 5%; transition:all var(--t) }
#nav.sc { background:rgba(5,5,5,.97); border-bottom:1px solid var(--bord); backdrop-filter:blur(12px) }
.logo { font-family:'Cormorant Garamond',serif; font-size:1.3rem; letter-spacing:.25em; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-weight:700 }
#nav ul { display:flex; align-items:center; gap:2rem }
#nav ul a { font-size:.62rem; letter-spacing:.18em; color:var(--dim); transition:color var(--t) }
#nav ul a:hover { color:var(--gold) }
.ncta { border:1px solid rgba(197,164,126,.4); color:var(--gold); font-size:.62rem; letter-spacing:.18em; padding:.55rem 1.4rem; transition:all var(--t) }
.ncta:hover { background:var(--gold); color:#000 }
.hbg { display:none; flex-direction:column; gap:5px; padding:.3rem }
.hbg span { display:block; width:22px; height:1px; background:var(--tx); transition:all var(--t) }
#mob { display:none; position:fixed; inset:0; background:#000; z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:2.5rem }
#mob.on { display:flex }
#mob a, #mob button { font-size:.82rem; letter-spacing:.28em; color:var(--tx); transition:color var(--t) }
#mob a:hover, #mob button:hover { color:var(--gold) }

/* === HERO === */
.hero { position:relative; height:100vh; min-height:600px; display:flex; align-items:flex-end; overflow:hidden }
.slides { position:absolute; inset:0 }
.sl { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 1.5s ease }
.sl.on { opacity:1 }
.ov { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.4) 55%,rgba(0,0,0,.15) 100%) }
.hbody { position:relative; z-index:2; padding:0 5% 8rem; max-width:680px }
.htag { font-size:.58rem; letter-spacing:.25em; color:var(--gold); margin-bottom:1.2rem }
.hbody h2 { font-family:'Cormorant Garamond',serif; font-size:min(7rem,12vw); font-weight:600; line-height:.95; margin-bottom:1.3rem }
.hbody h2 em { font-style:italic; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.hdesc { font-size:.76rem; color:rgba(255,255,255,.6); margin-bottom:2rem; line-height:1.9 }
.hbtns { display:flex; gap:.9rem; flex-wrap:wrap }
.bp { background:var(--grad); color:#000; padding:.9rem 2rem; font-size:.63rem; letter-spacing:.2em; font-weight:800; transition:opacity var(--t) }
.bp:hover { opacity:.85 }
.bg { border:1px solid rgba(255,255,255,.3); color:#fff; padding:.9rem 2rem; font-size:.63rem; letter-spacing:.2em; display:inline-flex; align-items:center; transition:all var(--t) }
.bg:hover { border-color:var(--gold); color:var(--gold) }
.hstat { position:absolute; bottom:3rem; right:5%; z-index:2; display:flex; align-items:center; gap:1.8rem }
.hs { text-align:right; display:flex; flex-direction:column }
.hn { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:600; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1 }
.hs sup { font-size:.85rem; color:var(--gold) }
.hs span:last-child { font-size:.5rem; letter-spacing:.18em; color:var(--dim); margin-top:.15rem }
.hdiv { width:1px; height:35px; background:rgba(197,164,126,.2) }

/* === MARQUEE === */
.mq { border-top:1px solid var(--bord); border-bottom:1px solid var(--bord); overflow:hidden; padding:.75rem 0; background:var(--bg2) }
.mq div { display:flex; width:max-content; animation:mq 32s linear infinite }
.mq span { font-size:.56rem; letter-spacing:.2em; color:var(--gold); opacity:.55; padding:0 2.5rem; white-space:nowrap }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* === SECCIONES === */
.sec { padding:6.5rem 5% }
.sec.alt { background:var(--bg2) }
.sh { margin-bottom:3.5rem }
.sh h2 { font-family:'Cormorant Garamond',serif; font-size:min(4.8rem,9vw); font-weight:600; line-height:1 }
.sh h2 em { font-style:italic; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.sh p { font-size:.78rem; color:var(--dim); margin-top:.8rem; line-height:1.85 }

/* === SERVICIOS === */
.g6 { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--bord) }
.g6 article { padding:2.3rem 1.8rem; border-right:1px solid var(--bord); border-bottom:1px solid var(--bord); transition:background var(--t) }
.g6 article:hover { background:rgba(197,164,126,.04) }
.g6 b { font-size:1.5rem; display:block; margin-bottom:1.2rem; color:var(--dim) }
.g6 b.gold { color:var(--gold) }
.g6 h3 { font-size:.74rem; letter-spacing:.15em; margin-bottom:.55rem }
.g6 p { font-size:.73rem; color:var(--dim); line-height:1.85 }
.g6 small { font-size:.56rem; letter-spacing:.18em; color:var(--gold); opacity:.7; display:block; margin-top:1.2rem; padding-top:1.2rem; border-top:1px solid var(--bord) }

/* === PROCESO === */
.proc { display:flex; align-items:flex-start; gap:.7rem; flex-wrap:wrap }
.ps { flex:1; min-width:150px; padding:1.8rem 1.4rem; border:1px solid var(--bord); transition:all var(--t) }
.ps:hover { border-color:var(--gold); transform:translateY(-3px) }
.pn { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:600; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; opacity:.5; line-height:1; margin-bottom:.7rem }
.ps h3 { font-size:.72rem; letter-spacing:.15em; margin-bottom:.5rem }
.ps p { font-size:.72rem; color:var(--dim); line-height:1.85 }
.arr { font-size:1rem; color:var(--gold); opacity:.35; align-self:center; flex-shrink:0 }

/* === PRECIOS === */
.pgrid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--bord); margin-bottom:1.5rem }
.pc { padding:2.5rem 2rem; border-right:1px solid var(--bord); position:relative; cursor:pointer; transition:background var(--t) }
.pc:hover { background:rgba(255,255,255,.02) }
.pc.feat { background:rgba(197,164,126,.04); border-color:rgba(197,164,126,.25) }
.badge { position:absolute; top:-1px; left:50%; transform:translateX(-50%); background:var(--grad); color:#000; font-size:.48rem; letter-spacing:.2em; padding:.28rem 1rem; font-weight:800; white-space:nowrap }
.cn { font-size:.5rem; letter-spacing:.22em; color:var(--dim); display:block; margin-bottom:1.2rem }
.cnm { font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:600; font-style:italic; margin-bottom:.8rem }
.cpr { font-size:2.4rem; font-weight:900 }
.cpr b { background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.cpr meta { display:none }
.ct { font-size:.6rem; color:var(--gold); letter-spacing:.1em; margin:.35rem 0 1.5rem; padding-bottom:1.5rem; border-bottom:1px solid var(--bord) }
.pc ul { display:flex; flex-direction:column; gap:.6rem; margin-bottom:2rem }
.pc li { font-size:.7rem; color:var(--dim); padding-bottom:.6rem; border-bottom:1px solid rgba(255,255,255,.05) }
.pc li:last-child { border:none }
.pc button { width:100%; border:1px solid var(--bord); color:var(--tx); padding:.85rem; font-size:.62rem; letter-spacing:.2em; font-weight:700; transition:all var(--t) }
.pc button:hover { border-color:var(--gold); color:var(--gold) }
.gbtn { border-color:var(--gold) !important; color:var(--gold) !important }
.gbtn:hover { background:var(--gold) !important; color:#000 !important }
.wbtn { background:var(--grad) !important; color:#000 !important; border-color:transparent !important }
.wbtn:hover { opacity:.85 }
.pnota { font-size:.68rem; color:var(--dim); text-align:center }
.pnota a { color:var(--gold); text-decoration:underline }

/* === FAQ === */
.faq { max-width:800px }
.faq > div { border-bottom:1px solid var(--bord) }
.faq button { width:100%; color:var(--tx); font-size:.74rem; letter-spacing:.07em; padding:1.4rem 0; display:flex; justify-content:space-between; align-items:center; gap:1rem; text-align:left; transition:color var(--t) }
.faq button:hover { color:var(--gold) }
.faq button::after { content:'+'; font-size:1.1rem; color:var(--gold); transition:transform var(--t); flex-shrink:0 }
.faq button[aria-expanded="true"]::after { transform:rotate(45deg) }
.faq > div > div { max-height:0; overflow:hidden; transition:max-height .4s ease }
.faq > div > div.op { max-height:150px }
.faq p { font-size:.73rem; color:var(--dim); line-height:1.9; padding-bottom:1.4rem }

/* === CTA === */
.cta { background:var(--bg2) }
.ctain { text-align:center; max-width:600px; margin:0 auto }
.csym { font-size:5rem; display:block; margin-bottom:1rem; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; opacity:.2 }
.ctain h2 { font-family:'Cormorant Garamond',serif; font-size:min(4.5rem,9vw); font-weight:600; line-height:1.1; margin-bottom:1.2rem }
.ctain h2 em { font-style:italic; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text }
.ctain > p { font-size:.76rem; color:var(--dim); margin-bottom:2.2rem; line-height:1.85 }
.cbtns { display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.8rem }
.ci { font-size:.68rem; color:var(--dim) }
.ci a { color:var(--gold) }

/* === FOOTER === */
footer { border-top:1px solid var(--bord); padding:3.5rem 5% 1.8rem }
.fin { display:grid; grid-template-columns:1fr auto auto; gap:4rem; align-items:start; margin-bottom:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid var(--bord) }
.fin > div:first-child p { font-size:.7rem; color:var(--dim); line-height:1.85; margin-top:.5rem }
footer nav { display:flex; flex-direction:column; gap:.7rem }
footer nav a, footer nav button { font-size:.62rem; letter-spacing:.15em; color:var(--dim); text-align:left; transition:color var(--t) }
footer nav a:hover, footer nav button:hover { color:var(--gold) }
.fsoc { display:flex; flex-direction:column; gap:.7rem }
.fsoc a { font-size:.62rem; letter-spacing:.2em; color:var(--dim); transition:color var(--t) }
.fsoc a:hover { color:var(--gold) }
.fbot { display:flex; justify-content:space-between; flex-wrap:wrap; gap:.8rem }
.fbot p { font-size:.56rem; letter-spacing:.12em; color:var(--dim) }
.fseo { opacity:.3 }

/* === WHATSAPP === */
.wf { position:fixed; bottom:2rem; right:2rem; z-index:500; width:52px; height:52px; border-radius:50%; background:var(--green); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 18px rgba(37,211,102,.4); transition:transform .2s,box-shadow .2s }
.wf:hover { transform:scale(1.1); box-shadow:0 6px 26px rgba(37,211,102,.55) }

/* === REVEAL === */
.rv { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease }
.rv.in { opacity:1; transform:none }
.d1{transition-delay:.12s} .d2{transition-delay:.24s} .d3{transition-delay:.36s}

/* === RESPONSIVE === */
@media(max-width:900px) {
  .g6 { grid-template-columns:repeat(2,1fr) }
  .pgrid { grid-template-columns:1fr }
  .pc { border-right:none; border-bottom:1px solid var(--bord) }
  #nav ul { display:none }
  .hbg { display:flex }
}
@media(max-width:600px) {
  .g6 { grid-template-columns:1fr }
  .proc { flex-direction:column }
  .arr { transform:rotate(90deg); align-self:flex-start; margin-left:1.5rem }
  .hstat { position:static; padding:1.5rem 5%; background:rgba(0,0,0,.7); flex-wrap:wrap; gap:1.5rem }
  .hdiv { display:none }
  .fin { grid-template-columns:1fr; gap:2rem }
  .frow, .opts, .opts.t3 { grid-template-columns:1fr }
  .hbtns, .cbtns { flex-direction:column }
}
