/* ===== TOKENS ===== */
:root{
  --bg:            #0a0918;
  --bg-2:          #131028;
  --bg-3:          #1c1738;
  --gold:          #d4af37;
  --gold-light:    #f4e4b8;
  --gold-deep:     #9c7a1f;
  --nebula-pink:   #ff6fae;
  --nebula-violet: #8b5cf6;
  --star-white:    #f6f3ea;
  --text-soft:     #b9b3cf;
  --text-softer:   #8a83a8;

  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'Jost', sans-serif;

  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow-gold: 0 20px 50px -22px rgba(212,175,55,0.45);
  --ease: cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--star-white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}
img,svg{ display:block; max-width:100%; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:500; line-height:1.08; letter-spacing:.01em; }
.script{ font-style: italic; font-weight:500; color: var(--gold-light); }

.eyebrow{
  font-family: var(--font-body);
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:.7rem;
  color: var(--gold);
}
.eyebrow.center{ text-align:center; }
.section-title{ font-size: clamp(2rem, 4vw, 3rem); margin:.5rem 0 .9rem; color: var(--star-white); }
.section-title.center{ text-align:center; }
.section-sub{ max-width:560px; color: var(--text-soft); font-size:1.02rem; font-weight:300; }
.section-sub.center{ margin:0 auto 3.2rem; text-align:center; }

/* ===== FONDO ESTELAR ===== */
.stars-canvas{
  position: fixed; inset:0; width:100%; height:100%; z-index:-2;
  background: radial-gradient(ellipse at 20% 0%, #1c1738 0%, var(--bg) 55%);
}

/* ===== CURSOR COMETA ===== */
.comet-cursor{
  position:fixed; top:0; left:0; width:5px; height:5px; border-radius:50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px 2px rgba(244,228,184,.8), 0 0 24px 6px rgba(212,175,55,.35);
  pointer-events:none; z-index:9999;
  transform: translate(-50%,-50%);
  opacity:0; transition: opacity .25s ease;
}
@media (hover:hover) and (pointer:fine){
  .comet-cursor.active{ opacity:1; }
}

/* ===== NAV ===== */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 200;
  padding: 26px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled{
  padding: 12px 0;
  background: rgba(10,9,24,.75);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(212,175,55,.35);
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{
  font-family: var(--font-display); font-size:1.4rem; font-weight:500;
  display:flex; align-items:center; gap:12px; color: var(--star-white); letter-spacing:.02em;
}
.brand em{ font-style:italic; color: var(--gold); }
.brand-moon{
  width:16px; height:16px; border-radius:50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 0 12px 2px rgba(212,175,55,.55);
  animation: moonPulse 3.4s ease-in-out infinite;
}
@keyframes moonPulse{
  0%,100%{ box-shadow: 0 0 8px 1px rgba(212,175,55,.4); }
  50%{ box-shadow: 0 0 18px 4px rgba(212,175,55,.75); }
}
.nav-links{ display:flex; gap:2.2rem; font-weight:400; font-size:.92rem; letter-spacing:.03em; }
.nav-links a{ position:relative; padding:4px 0; color: var(--text-soft); transition: color .25s var(--ease); }
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover{ color: var(--star-white); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color:#1a1408; padding:11px 26px; border-radius:2px;
  font-weight:600; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 24px 45px -18px rgba(212,175,55,.6); }
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; }
.burger span{ width:24px; height:1px; background: var(--gold-light); border-radius:2px; }

/* ===== HERO ===== */
.hero{
  position:relative; min-height: 100vh; display:flex; align-items:center;
  padding: 150px 24px 90px; max-width:1180px; margin:0 auto; gap:40px;
  justify-content:space-between;
}
.hero-content{ position:relative; z-index:1; max-width:560px; }
.hero-content h1{ font-size: clamp(2.6rem, 5vw, 4.2rem); margin:.6rem 0 1.2rem; color: var(--star-white); }
.hero-sub{ color: var(--text-soft); font-size:1.05rem; font-weight:300; max-width:480px; margin-bottom:2rem; line-height:1.6; }
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:3rem; }

.btn{
  display:inline-block; padding:15px 30px; border-radius:2px; font-weight:600;
  font-size:.82rem; letter-spacing:.08em; text-transform:uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  cursor:pointer; border:1px solid transparent;
}
.btn-primary{ background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep)); color:#1a1408; box-shadow: var(--shadow-gold); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 26px 45px -18px rgba(212,175,55,.6); }
.btn-ghost{ background: transparent; border-color: rgba(212,175,55,.5); color: var(--gold-light); }
.btn-ghost:hover{ background: rgba(212,175,55,.08); border-color: var(--gold); transform: translateY(-3px); }
.btn.full{ width:100%; text-align:center; }

.hero-stats{ display:flex; gap:2.4rem; }
.hero-stats strong{ display:block; font-family: var(--font-display); font-size:1.7rem; color: var(--gold-light); }
.hero-stats span{ font-size:.72rem; color: var(--text-softer); letter-spacing:.03em; }

/* ===== ARTIST PROFILE ===== */

.hero-visual{
  position:relative;
  z-index:1;
  width:380px;
  display:flex;
  justify-content:center;
}


.artist-profile{
  text-align:center;
}


.artist-profile img{

  width:300px;
  height:300px;

  object-fit:cover;

  border-radius:50%;

  border:5px solid var(--gold);

  box-shadow:
  0 0 50px rgba(255,111,174,.45),
  0 20px 60px rgba(0,0,0,.4);

  transition:.5s var(--ease);

}


.artist-profile img:hover{

  transform:scale(1.05);

  box-shadow:
  0 0 70px rgba(212,175,55,.6);

}


.artist-profile h3{

  margin-top:25px;

  font-family:var(--font-display);

  font-size:2.5rem;

  color:var(--star-white);

}


.artist-profile p{

  margin-top:10px;

  color:var(--gold);

  font-size:.85rem;

  letter-spacing:.35em;

  text-transform:uppercase;

}

/* ===== SERVICIOS ===== */
.servicios{ max-width:1180px; margin:0 auto; padding: 110px 24px; text-align:center; }
.cards-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap:24px;
  text-align:left; margin-top:1rem;
}
.card{
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border-radius: var(--radius-md); padding: 32px;
  border:1px solid rgba(212,175,55,.18);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  opacity:0; transform: translateY(28px);
}
.card.in-view{ animation: cardIn .8s var(--ease) forwards; }
@keyframes cardIn{ to{ opacity:1; transform:translateY(0); } }
.card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(212,175,55,.5); }
.card-icon{ width:52px; height:52px; border-radius:50%; background: rgba(212,175,55,.08); border:1px solid rgba(212,175,55,.3); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.card-icon svg{ width:24px; height:24px; fill:none; stroke: var(--gold-light); stroke-width:2; }
.card h3{ font-size:1.25rem; margin-bottom:10px; color: var(--star-white); }
.card p{ color: var(--text-soft); font-size:.9rem; font-weight:300; margin-bottom:16px; line-height:1.6; }
.card-price{ font-weight:500; color: var(--gold); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; }

/* ===== INFINITE POLAROID GALLERY ===== */


.gallery{
padding:120px 0;
overflow:hidden;
background:
radial-gradient(
circle at center,
#241d4a,
var(--bg)
);

}

.gallery-wrapper{
overflow:hidden;
width:100%;
padding:40px 0;
position:relative;

mask-image:linear-gradient(
to right,
transparent,
black 10%,
black 90%,
transparent
);

-webkit-mask-image:linear-gradient(
to right,
transparent,
black 10%,
black 90%,
transparent
);

}

.polaroid-track{
display:flex;
gap:35px;
width:max-content;
animation:
infiniteScroll 35s linear infinite;
}



.polaroid{
width:260px;
flex-shrink:0;
background:white;
padding:15px 15px 35px;
box-shadow:
0 25px 50px rgba(0,0,0,.45);
transform:rotate(-4deg);
transition:.5s var(--ease);
}

.polaroid:nth-child(even){
transform:rotate(4deg);
}

.polaroid:hover{
transform:
translateY(-20px)
rotate(0deg)
scale(1.08);
box-shadow:
0 0 45px rgba(212,175,55,.5);
}

.polaroid img{
width:100%;
height:300px;
object-fit:cover;
}

.polaroid p{
margin-top:15px;
text-align:center;
color:#222;
font-family:var(--font-display);
font-size:1.2rem;
}

@keyframes infiniteScroll{
from{
transform:translateX(0);
}

to{
transform:translateX(-50%);
}


}

/* ===== CONTACTO ===== */
.contacto{ max-width:1180px; margin:0 auto; padding:110px 24px; }
.contact-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap:40px; margin-top:2.2rem; }

.contact-info{ display:flex; flex-direction:column; gap:16px; }
.info-card{ background: linear-gradient(165deg, var(--bg-3), var(--bg-2)); border:1px solid rgba(212,175,55,.18); border-radius: var(--radius-md); padding:22px 26px; }
.info-card h4{ font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); margin-bottom:6px; font-family: var(--font-body); font-weight:500; }
.info-card p{ color: var(--text-soft); font-size:.92rem; font-weight:300; line-height:1.5; }
.map-frame{ flex:1; min-height:220px; border-radius: var(--radius-md); overflow:hidden; border:1px solid rgba(212,175,55,.25); box-shadow: var(--shadow-gold); filter: sepia(12%) saturate(80%) brightness(.9) hue-rotate(-8deg); }

/* ===== FOOTER ===== */
.footer{ text-align:center; padding:34px; color: var(--text-softer); font-size:.78rem; letter-spacing:.03em; border-top:1px solid rgba(212,175,55,.12); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .contact-grid{ grid-template-columns:1fr; }
  .hero{ flex-direction:column; text-align:center; padding-top:130px; }
  .hero-actions{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .hero-visual{ margin-top:20px; }
}
@media (max-width: 760px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:250px;
    background: var(--bg-2); flex-direction:column; padding:110px 30px; gap:1.8rem;
    box-shadow: -10px 0 40px rgba(0,0,0,.5); border-left:1px solid rgba(212,175,55,.2);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-cta{ display:none; }
  .burger{ display:flex; }
  .simulador{ flex-direction:column; text-align:center; }
  .sim-text{ text-align:center; }
  .swatches{ justify-content:center; }
}

/* ===== SOCIAL MEDIA ===== */

.social-card{
background:linear-gradient(
165deg,
var(--bg-3),
var(--bg-2)
);
border-radius:var(--radius-md);
padding:25px;
border:1px solid rgba(212,175,55,.18);
}

.social-card h4{
font-family:var(--font-body);
font-size:.72rem;
letter-spacing:.1em;
text-transform:uppercase;
color:var(--gold);
margin-bottom:18px;
}

.social-icons{
display:flex;
gap:18px;
}

.social-icon{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(212,175,55,.08);
border:1px solid rgba(212,175,55,.3);
transition:.4s var(--ease);
}

.social-icon svg{
width:25px;
height:25px;
fill:none;
stroke:var(--gold-light);
stroke-width:2;
}

.social-icon.facebook svg{
fill:var(--gold-light);
stroke:none;
}

.social-icon:hover{
transform:translateY(-6px) scale(1.08);
box-shadow:
0 0 25px rgba(212,175,55,.45);
border-color:var(--gold);
}

/* Instagram glow */
.instagram:hover{
background:
linear-gradient(
135deg,
#ff6fae,
#8b5cf6
);
}

/* Facebook glow */
.facebook:hover{
background:#1877f2;
}


/* TikTok */
.tiktok svg{
  fill:var(--gold-light);
  stroke:none;
}


.tiktok:hover{
background:
linear-gradient(
135deg,
#25F4EE,
#FE2C55,
#000
);

}

/* ===== LUXURY BOOKING CARD ===== */
.booking-card{
background:
linear-gradient(
165deg,
var(--bg-3),
var(--bg-2)
);
border-radius:var(--radius-lg);
padding:45px;
border:
1px solid rgba(212,175,55,.18);
box-shadow:
var(--shadow-gold);
position:relative;
overflow:hidden;
}

.booking-card::before{
content:"";
position:absolute;
width:250px;
height:250px;
top:-120px;
right:-100px;
background:
radial-gradient(
circle,
rgba(212,175,55,.25),
transparent 70%
);
}

.booking-card h3{
font-size:2.2rem;
margin:15px 0;
color:var(--star-white);
}

.booking-card p{
color:var(--text-soft);
line-height:1.7;
}

.booking-items{
margin:35px 0;
display:flex;
flex-direction:column;
gap:22px;
}

.booking-item{
display:flex;
align-items:center;
gap:18px;
padding:18px;
background:
rgba(255,255,255,.03);
border-radius:16px;
border:
1px solid rgba(212,175,55,.12);
transition:.35s var(--ease);
}

.booking-item:hover{
transform:translateX(8px);
border-color:rgba(212,175,55,.5);
}

.booking-item span{
font-size:30px;
}

.booking-item strong{
display:block;
color:var(--gold-light);
font-size:1rem;
}

.booking-item small{
color:var(--text-soft);
font-size:.85rem;
}
