:root {
    --bg-color: #000000;
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-soft: rgba(212, 175, 55, 0.15);
    --card-bg: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --meta-blue: #0095f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* TEXTURA GLOBAL */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/black-linen.png");
    opacity: 0.15; pointer-events: none; z-index: 1;
}

/* ============================================================
   ESTILOS BIO LINK (index.html)
   ============================================================ */
.bio-body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 20px;
}

.bio-body .container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.bio-body .avatar img {
    width: 120px; height: 120px; border-radius: 50%; padding: 4px;
    background: var(--gold-gradient); box-shadow: 0 0 40px rgba(191, 149, 63, 0.5);
}

.bio-body .elite-text { font-family: 'Playfair Display', serif; font-size: 64px; }
.bio-body .link-card { background: var(--card-bg); border: 1px solid #1a1a1a; padding: 18px 20px; border-radius: 20px; margin-bottom: 14px; display: flex; align-items: center; text-decoration: none; color: #fff; }
.bio-body .highlight-gold { background: var(--gold-gradient) !important; color: #000 !important; }

/* ============================================================
   ESTILOS LANDING PAGE (REVERSIÓN A VERSIÓN "PERFECTA")
   ============================================================ */
.landing-body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    display: block !important;
    margin: 0; padding: 0;
    overflow-x: hidden;
}

/* NAVBAR */
.landing-body .navbar {
    position: fixed; top: 0; width: 100%; background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px); border-bottom: 1px solid #111; z-index: 1000; padding: 15px 0;
}
.landing-body .nav-container {
    max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
    justify-content: center; padding: 0 40px; position: relative; height: 60px;
}
.landing-body .nav-logo { position: absolute; left: 40px; display: flex; align-items: center; gap: 12px; }
.landing-body .logo-img-nav { height: 40px; width: auto; }
.landing-body .nav-menu { display: flex; list-style: none; gap: 30px; }
.landing-body .nav-menu a { text-decoration: none; color: #888; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; transition: 0.3s; }
.landing-body .nav-menu a:hover { color: var(--gold-primary); }

/* HERO */
.landing-body .hero {
    height: 100vh; background: #000 url('EliteFondo.png') no-repeat center center;
    background-size: cover; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
}
.landing-body .hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}
.landing-body .hero-content { position: relative; z-index: 10; max-width: 800px; padding: 0 20px; }
.landing-body .hero-title { font-size: 64px; line-height: 1.1; margin-bottom: 24px; color: #fff; }
.landing-body .hero-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* BOTÓN HERO CLÁSICO */
.landing-body .btn-main-gold {
    display: inline-flex; align-items: center; gap: 20px; background: var(--gold-gradient);
    text-decoration: none; padding: 15px 35px; border-radius: 15px; color: #000;
    box-shadow: 0 10px 40px rgba(191, 149, 63, 0.3);
}

/* SECCIONES */
.landing-body section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.landing-body .section-header { text-align: center; margin-bottom: 60px; }
.landing-body .section-tag { font-size: 10px; color: var(--gold-primary); letter-spacing: 3px; font-weight: 800; display: block; margin-bottom: 10px; }
.landing-body .section-title { font-size: 32px; letter-spacing: 2px; }
.landing-body .line-gold-center { width: 60px; height: 2px; background: var(--gold-primary); margin: 20px auto; }

/* SERVICIOS */
.landing-body .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.landing-body .service-card { background: #080808; border: 1px solid #151515; padding: 40px 30px; border-radius: 24px; text-align: center; transition: 0.3s; }
.landing-body .service-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); }
.landing-body .price { font-size: 20px; font-weight: 700; color: var(--gold-primary); }

/* GALERÍA CON MARCOS DORADOS (VERSIÓN PREFERIDA) */
.landing-body .styles-gallery { display: flex; justify-content: center; gap: 15px; overflow-x: auto; padding: 30px 15px; scrollbar-width: none; }
.landing-body .styles-gallery img { 
    width: 200px !important; height: 280px !important; object-fit: cover; 
    border-radius: 3px; border: 2px solid #bf953f; padding: 5px; background: #000;
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.15); transition: 0.4s;
}

/* SOBRE NOSOTROS & REVIEW */
.landing-body .about-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.landing-body .premium-review-card { background: #0d0d0d; border: 1px solid var(--gold-primary); border-radius: 30px; padding: 40px; }
.landing-body .author-img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold-primary); }

/* WHATSAPP & FOOTER */
.landing-body .whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; background: var(--gold-gradient);
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 32px; color: #000; z-index: 1000; text-decoration: none;
}

/* MOBILE LANDING */
@media (max-width: 992px) {
    .landing-body .nav-menu { display: none; }
    .landing-body .hero-title { font-size: 48px; }
    .landing-body .about-container { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .landing-body .hero-title { font-size: 40px; }
    .landing-body .mobile-bottom-nav { display: flex !important; position: fixed; bottom: 0; width: 100%; background: #080808; padding: 10px 0; justify-content: space-around; z-index: 1000; border-top: 1px solid #111; }
    .landing-body .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #666; font-size: 9px; }
}
