@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    /* Midnight Opulence Palette */
    --obsidian-black: #121212;
    --matte-gold: #C5A059;
    --matte-gold-rgb: 197, 160, 89;
    --bone-white: #F5F5F2;
    --stone-gray: #4A4A4A;
    --glass-background: rgba(18, 18, 18, 0.85);

    /* Neumorphism 2.0 Tokens */
    --surface-light: #1E1E1E;
    --surface-dark: #0A0A0A;
    --soft-shadow-raised: 12px 12px 24px var(--surface-dark), -6px -6px 18px var(--surface-light);
    --soft-shadow-inset: inset 6px 6px 12px var(--surface-dark), inset -4px -4px 10px var(--surface-light);

    /* Fluid Typography (Modern Scaling) */
    --fs-xs: clamp(0.65rem, 0.6rem + 0.25vw, 0.75rem);
    --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --fs-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --fs-xl: clamp(1.5rem, 1.25rem + 1vw, 2.2rem);
    --fs-2xl: clamp(2rem, 1.5rem + 2vw, 3.5rem);

    /* Layout Tokens */
    --bento-gap: 1.5rem;
    --border-radius: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    background-color: var(--obsidian-black);
    color: var(--bone-white);
    font-family: 'Inter', sans-serif;
    font-display: swap;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}

.text-gold { color: var(--matte-gold); }

/* ==========================================
   GLOBAL FOCUS STATES — Accesibilidad
   ========================================== */
:focus-visible {
    outline: 2px solid var(--matte-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--matte-gold);
    outline-offset: 2px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    padding: 0 1rem;
    text-align: center;
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-header .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: transform 0.3s ease;
}

.main-header .logo-container:hover {
    transform: scale(1.05);
}

.main-header .logo {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.2));
}

.tagline {
    color: var(--matte-gold);
    font-size: var(--fs-xs);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.7;
    font-weight: 600;
}

/* Profile Header Specifics */
.profile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.profile-header .logo, .main-header .logo {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.2));
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-dark);
    box-shadow: var(--soft-shadow-raised);
    color: var(--matte-gold);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.btn-back:active {
    box-shadow: var(--soft-shadow-inset);
    transform: scale(0.9);
}

/* ==========================================
   NEUMORPHIC UTILITIES
   ========================================== */
.soft-card {
    background: var(--obsidian-black);
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow-raised);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(197, 160, 89, 0.05);
}

@media (min-width: 769px) {
    .soft-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 12px 12px 24px var(--surface-dark), -6px -6px 18px var(--surface-light);
        border: 1px solid rgba(197, 160, 89, 0.2);
    }
}

.soft-inset {
    background: var(--obsidian-black);
    box-shadow: var(--soft-shadow-inset);
    border-radius: var(--border-radius);
}

.btn-luxury {
    background: var(--obsidian-black);
    color: var(--matte-gold);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: var(--soft-shadow-raised);
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.btn-luxury:hover {
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
    border-color: rgba(197, 160, 89, 0.4);
}

.btn-luxury:active {
    box-shadow: var(--soft-shadow-inset);
    transform: scale(0.96);
}

.btn-primary {
    background: var(--matte-gold);
    color: var(--obsidian-black);
}

/* ==========================================
   AGE GATE MODAL — con efecto de luz premium
   ========================================== */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 10000;
    background: radial-gradient(ellipse at 50% 40%, #1e1a2e 0%, #0d1020 50%, var(--obsidian-black) 100%);
    display: grid;
    place-items: center;
    padding: 1.5rem;
    transition: opacity 0.6s ease;
    animation: ageGateFadeIn 0.5s ease both;
    overflow: hidden;
}

/* Efecto de barrido de luz en el fondo del age gate */
.age-gate::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(197, 160, 89, 0.03) 60deg,
        transparent 120deg,
        rgba(197, 160, 89, 0.02) 180deg,
        transparent 240deg,
        rgba(197, 160, 89, 0.03) 300deg,
        transparent 360deg
    );
    animation: ageGateSweep 12s linear infinite;
    pointer-events: none;
}

@keyframes ageGateSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ageGateFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-gate-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface-light);
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow-raised), 0 0 80px rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.18);
    animation: ageGateSlideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s both;
    position: relative;
    z-index: 1;
}

@keyframes ageGateSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo glow pulsante en el age gate */
.age-gate-content img {
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3)); }
    to   { filter: drop-shadow(0 0 28px rgba(197, 160, 89, 0.7)); }
}

/* ==========================================
   BENTO GRID
   ========================================== */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(110px, auto);
    gap: 1rem;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Desktop Defaults */
.bento-item-iquique { grid-column: span 2; grid-row: span 2; position: relative; overflow: hidden; border: 1px solid rgba(var(--matte-gold-rgb), 0.1); }
.bento-item-large { grid-column: span 2; border: 1px solid rgba(var(--matte-gold-rgb), 0.05); }
.bento-item-vertical { grid-row: span 2; }
.bento-item-standard { grid-column: span 1; border: 1px solid rgba(255,255,255,0.03); }

/* ==========================================
   STAGGERED CARD ENTRANCE — index city cards
   ========================================== */
.bento-container > .bento-item-large.model-card:nth-child(1) { animation: cardEnter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s both; }
.bento-container > .bento-item-large.model-card:nth-child(2) { animation: cardEnter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.22s both; }
.bento-container > .bento-item-large.model-card:nth-child(3) { animation: cardEnter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.34s both; }
.bento-container > .bento-ad-carousel { animation: cardEnter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.46s both; }

/* ==========================================
   MODEL CARD — Hover Reveal Effect
   ========================================== */
.model-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.model-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.model-card:hover .model-card-bg {
    transform: scale(1.05);
}

.model-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    transition: background 0.4s ease;
}

.model-card:hover .model-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.model-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.model-card-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.4rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.model-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
}

.model-card-city {
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

.model-card-cta {
    font-size: 0.75rem;
    color: var(--matte-gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.model-card-tagline {
    font-size: 0.75rem;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(245, 245, 242, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.model-card:hover .model-card-cta {
    opacity: 1;
    transform: translateX(0);
}

.model-card:hover .model-card-tagline {
    opacity: 1;
    max-height: 3rem;
}

/* Touch devices: show cta always */
@media (hover: none) {
    .model-card-cta { opacity: 1; transform: translateX(0); }
    .model-card-tagline { opacity: 1; max-height: 3rem; }
}

/* ==========================================
   SKELETON LOADERS
   ========================================== */
@keyframes shimmer {
    0% { background-position: -800px 0; }
    100% { background-position: 800px 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--surface-dark) 25%,
        var(--surface-light) 50%,
        var(--surface-dark) 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.6s infinite linear;
    border-radius: var(--border-radius);
}

.skeleton-card {
    height: 250px;
    border-radius: var(--border-radius);
}

/* ==========================================
   STICKY BOTTOM NAV — con iconos Lucide
   ========================================== */
.bottom-nav {
    position: fixed !important;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 440px;
    background: var(--glass-background);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--soft-shadow-raised);
    z-index: 10000;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

/* ==========================================
   NAV ITEMS — con indicador activo premium
   ========================================== */
.nav-item {
    color: var(--bone-white);
    text-decoration: none;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s, transform 0.2s;
    flex: 1;
    position: relative;
    padding-bottom: 0.3rem;
}

/* Punto dorado animado para el item activo */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 2px;
    background: var(--matte-gold);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item.active {
    opacity: 1;
    color: var(--matte-gold);
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item:hover {
    opacity: 0.85;
}

/* Lucide icons in nav */
.nav-item svg, .nav-item .nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
    transition: transform 0.2s ease;
}

.nav-item:active svg, .nav-item:active .nav-icon {
    transform: scale(0.9);
}

.nav-item i, .nav-item span:first-child {
    font-size: 1.2rem;
}

/* ==========================================
   AD CAROUSEL — con pausa al hover
   ========================================== */
.bento-ad-carousel {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

/* Pausa al hover — mejora UX (#11) */
.bento-ad-carousel:hover .ad-slide {
    animation-play-state: paused;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2rem;
    background: var(--surface-dark);
    background-size: cover;
    background-position: center;
    animation: adFade 15s infinite;
}

.ad-slide h3, .ad-slide p {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.ad-slide:nth-child(1) { animation-delay: 0s; }
.ad-slide:nth-child(2) { animation-delay: 5s; }
.ad-slide:nth-child(3) { animation-delay: 10s; }

/* FIX #18: Transición suave entre slides — crossfade limpio sin flash */
@keyframes adFade {
    0%        { opacity: 0; z-index: 1;  }
    5%        { opacity: 1; z-index: 10; }
    30%       { opacity: 1; z-index: 10; }
    38%       { opacity: 0; z-index: 1;  }
    100%      { opacity: 0; z-index: 1;  }
}

.ad-label {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.3;
    pointer-events: none;
}

/* ==========================================
   PREMIUM PROFILE STYLES
   ========================================== */
.profile-media-container {
    width: 100%;
    background: #000;
    position: relative;
    margin-top: 80px !important;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
}

.swiper-profile {
    width: 100%;
    height: 65vh;
}

.swiper-slide img, .swiper-slide video, .card-inner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

/* Profile name: escalado fluido para nombres largos */
.profile-name {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.bento-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.detail-card {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
}

.detail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Grouped Stats */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stats-label {
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.stats-value {
    color: var(--bone-white);
    font-weight: 400;
}

.contact-bar-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--glass-background);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding: 1rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    z-index: 1100;
}

.contact-group-static {
    padding: 1.5rem 0.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.8rem 0.3rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-contact i, .btn-contact span {
    pointer-events: none;
}

.btn-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: rgba(197, 160, 89, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-phone {
    background: var(--bone-white);
    color: var(--obsidian-black);
}

.btn-contact:active {
    transform: scale(0.95);
    opacity: 0.9;
}

.price-tag {
    background: rgba(197, 160, 89, 0.1);
    color: var(--matte-gold);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* ==========================================
   FORM STYLES (register.html) — con floating labels
   ========================================== */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Label se resalta al hacer focus en el input */
.form-group:focus-within label {
    color: var(--matte-gold);
    opacity: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--obsidian-black);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 1.2rem;
    color: var(--bone-white);
    border-radius: 1rem;
    box-shadow: var(--soft-shadow-inset);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: var(--soft-shadow-inset), 0 0 0 2px rgba(197, 160, 89, 0.1);
    transform: translateY(-1px);
}

.form-group select option {
    background: var(--obsidian-black);
}

/* Validación visual inline */
.form-group input:not(:placeholder-shown):valid {
    border-color: rgba(37, 211, 102, 0.3);
}

.form-group input:not(:placeholder-shown):invalid {
    border-color: rgba(224, 92, 92, 0.3);
}

.form-feedback {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
    animation: reveal 0.4s ease forwards;
}

.form-feedback.success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    display: block;
}

.form-feedback.error {
    background: rgba(197, 60, 60, 0.1);
    border: 1px solid rgba(197, 60, 60, 0.3);
    color: #e07070;
    display: block;
}

/* ==========================================
   PREMIUM LOADING SPINNER — logo pulsante
   ========================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: #121212;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    transition: opacity 0.5s ease;
}

.spinner-logo {
    width: 60px;
    height: 60px;
    animation: logoPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3)); }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 25px rgba(197, 160, 89, 0.7)); }
}

/* Fallback para el spinner básico */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(197, 160, 89, 0.1);
    border-top-color: #C5A059;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   RESPONSIVE — MOBILE OPTIMIZADO
   ========================================== */
@media (max-width: 768px) {
    :root {
        --bento-gap: 0.5rem;
        --border-radius: 1rem;
    }

    body { font-size: 14px; }

    /* Header más compacto en móvil */
    .main-header, .profile-header {
        height: 64px !important;
        padding: 0 0.75rem !important;
    }
    .main-header .logo,
    .profile-header .logo { width: 52px !important; }
    .tagline { font-size: 0.55rem !important; letter-spacing: 0.15em !important; }

    /* Grid de ciudades (index) */
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(80px, auto);
        padding: 0.5rem;
        gap: 0.5rem;
        padding-bottom: 8rem !important;
        margin: 0;
        max-width: 100%;
    }

    /* City cards en index: altura mayor para ver más imagen */
    .bento-item-large {
        grid-column: span 2 !important;
        min-height: 160px !important;
    }

    /* Hacer las ciudades individuales más chicas para destacar la publicidad */
    #cities .model-card:nth-child(1),
    #cities .model-card:nth-child(2) {
        grid-column: span 1 !important;
        min-height: 120px !important;
    }

    #cities .model-card:nth-child(3) {
        grid-column: span 2 !important;
        min-height: 95px !important;
    }

    /* Tarjetas de modelo en páginas de ciudad */
    .bento-item-standard {
        grid-column: span 1 !important;
        grid-row: auto !important;
        /* Ratio 3:4 — más imagen, menos borde */
        aspect-ratio: 3 / 4 !important;
        min-height: unset !important;
        margin-bottom: 0;
    }

    /* Eliminar margin-bottom en tarjetas antiguas */
    .bento-item-iquique, .bento-item-vertical, .soft-card.bento-item-info {
        grid-column: span 1 !important;
        grid-row: auto !important;
        aspect-ratio: 3 / 4 !important;
        min-height: unset !important;
        margin-bottom: 0;
    }

    /* Info dentro de la card más compacta */
    .model-card-info {
        padding: 0.75rem;
    }
    .model-card-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    /* Secciones de texto reducidas */
    section.reveal {
        padding: 1rem 1rem 0.5rem !important;
    }
    section.reveal p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* Age gate más compacto */
    .age-gate-content {
        padding: 1.5rem 1rem;
    }
    .age-gate-content h1 { font-size: 1.4rem; }
    .age-gate-content p { font-size: 0.85rem; margin-bottom: 1.2rem !important; }

    /* Bottom nav pegado al borde inferior */
    .bottom-nav {
        bottom: 0.75rem;
        padding: 0.55rem 0.25rem;
        width: 96%;
    }
    .nav-item { font-size: 0.62rem; gap: 0.2rem; }
    .nav-item span:first-child { font-size: 1rem; }
    .nav-item svg { width: 18px; height: 18px; }

    /* Profile: media carousel más alto */
    .profile-media-container {
        margin-top: 64px !important;
    }
    .swiper-profile {
        height: 50vh !important; /* Achica el alto de la foto a 50vh para ver más info */
    }

    /* Profile: main content sin padding excesivo y espacios disminuidos */
    .profile-main {
        padding: 0.5rem 0.5rem 7rem !important;
    }
    .profile-main .soft-card {
        padding: 0.9rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .profile-main div[style*="margin-bottom"] {
        margin-bottom: 0.6rem !important;
    }
    .profile-main h3 {
        margin-bottom: 0.4rem !important;
    }
    .profile-name {
        margin-bottom: 0.2rem !important;
    }

    /* Stats más compactas en perfil */
    .stats-item {
        padding-bottom: 0.4rem;
        font-size: 0.8rem;
    }
    .detail-card { padding: 0.8rem; min-height: 70px; }

    /* Formulario register más compacto */
    .form-group { margin-bottom: 1rem; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 0.9rem;
    }

    /* Ad carousel en index: destacado con borde de luz dorada premium */
    .bento-ad-carousel {
        grid-column: span 2 !important;
        min-height: 190px !important;
        border: 1.5px solid rgba(197, 160, 89, 0.4) !important;
        box-shadow: 0 0 25px rgba(197, 160, 89, 0.2), var(--soft-shadow-raised) !important;
    }
    .ad-slide {
        padding: 1.25rem;
    }
    .ad-slide h3 { font-size: 1.25rem !important; margin-bottom: 0.4rem !important; color: var(--matte-gold) !important; }
    .ad-slide p { font-size: 0.85rem !important; opacity: 0.95 !important; }

    /* Footer más pequeño en móvil */
    footer { padding: 3rem 1rem !important; }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes reveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.reveal {
    animation: reveal 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Staggered card entrance animation */
@keyframes cardEnter {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.card-enter {
    animation: cardEnter 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* ===========================================
   ADMIN ACCESS LINK — clase compartida
   =========================================== */
.admin-access {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--matte-gold);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1001;
    display: block; /* siempre en el DOM, la visibilidad se maneja con opacidad */
}

/* FIX #3: visibilidad del admin link con clase, no con display:none */
.admin-access.admin-visible {
    opacity: 0.4;
    pointer-events: auto;
}

.admin-access.admin-visible:hover {
    opacity: 0.9;
}

/* Botón de Administración Premium en Cabecera */
.admin-link-visible {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--matte-gold);
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    background: rgba(197, 160, 89, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.admin-link-visible:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--matte-gold);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.3);
    transform: translateY(-50%) scale(1.03);
}
.admin-link-visible:active {
    transform: translateY(-50%) scale(0.97);
    background: rgba(197, 160, 89, 0.25);
}
@media (max-width: 768px) {
    .admin-link-visible {
        right: 0.75rem;
        padding: 0.3rem 0.65rem;
        font-size: 0.6rem;
    }
}

/* ===========================================
   SITE FOOTER — mejorado con links útiles
   =========================================== */
.site-footer {
    padding: 3rem 2rem 5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: var(--bone-white);
    text-decoration: none;
    opacity: 0.45;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
    opacity: 0.9;
    color: var(--matte-gold);
}

.footer-copy {
    opacity: 0.4;
    margin-top: 1rem;
}

.footer-tagline {
    opacity: 0.3;
    margin-top: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ===========================================
   TOAST NOTIFICATION SYSTEM
   =========================================== */
#eva-toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: 340px;
    width: calc(100% - 3rem);
}

.eva-toast {
    pointer-events: auto;
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    background: var(--surface-light);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    color: var(--bone-white);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    cursor: pointer;
}

.eva-toast.toast-success { border-left: 3px solid #25D366; }
.eva-toast.toast-error   { border-left: 3px solid #e05c5c; }
.eva-toast.toast-info    { border-left: 3px solid var(--matte-gold); }
.eva-toast.toast-warning { border-left: 3px solid #f5a623; }

.eva-toast-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.eva-toast-msg  { flex: 1; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); max-height: 100px; margin-bottom: 0; }
    to   { opacity: 0; transform: translateX(30px); max-height: 0; margin-bottom: -0.75rem; }
}

.eva-toast.removing {
    animation: toastOut 0.35s ease forwards;
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ad-slide {
        animation: none !important;
        opacity: 0;
    }
    .ad-slide:first-child {
        opacity: 1;
    }
}

/* Ensure body doesn't break fixed elements */
.bento-container > * {
    max-width: 100%;
}

img { max-width: 100%; height: auto; }

/* ==========================================
   FORMULARIOS Y PANELES PREMIUM (DRY & NO-TAILWIND)
   ========================================== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group-full {
    grid-column: 1 / -1;
}
.gold-label {
    font-size: 0.72rem;
    color: var(--matte-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.input-luxury {
    background: var(--surface-light);
    border: 1px solid rgba(197, 160, 89, 0.15);
    color: var(--bone-white);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    width: 100%;
    font-size: var(--fs-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.5), inset -3px -3px 6px rgba(255,255,255,0.02);
}
.input-luxury:focus {
    outline: none;
    border-color: var(--matte-gold);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.6), 0 0 12px rgba(197, 160, 89, 0.15);
    background: #242424;
}
select.input-luxury {
    background: var(--surface-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C5A059' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 1rem center / 1.2rem;
    appearance: none;
    padding-right: 2.5rem;
}
select.input-luxury option {
    background-color: #1a1a1a;
    color: white;
}
.input-file-luxury {
    cursor: pointer;
    background: var(--surface-light);
    border: 1px dashed rgba(197, 160, 89, 0.3);
    padding: 1rem;
    border-radius: 12px;
    color: var(--bone-white);
    width: 100%;
    font-size: var(--fs-sm);
    transition: all 0.3s ease;
}
.input-file-luxury:hover {
    border-color: var(--matte-gold);
    background: rgba(197, 160, 89, 0.05);
}
.input-file-luxury::file-selector-button {
    background: var(--matte-gold);
    color: #121212;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    margin-right: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.input-file-luxury::file-selector-button:hover {
    background: #f1e5ac;
    transform: scale(1.03);
}

/* ==========================================
   CARGA PROGRESIVA Y ANIMACIONES SKELETON (SHIMMER)
   ========================================== */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(30, 30, 30, 0.6) 25%,
        rgba(197, 160, 89, 0.15) 50%,
        rgba(30, 30, 30, 0.6) 75%
    );
    background-size: 200% 100%;
    animation: shimmer-pulse 1.8s infinite linear;
}
@keyframes shimmer-pulse {
    from { background-position: -200% 0; }
    to { background-position: 200% 0; }
}

/* Dashboard Tab System */
.tabs-container {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    overflow-x: auto;
}
.tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--bone-white);
    font-size: var(--fs-base);
    font-weight: 500;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.tab-btn:hover {
    opacity: 0.9;
}
.tab-btn.active {
    opacity: 1;
    color: var(--matte-gold);
    border-bottom-color: var(--matte-gold);
}
.tab-content {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}
.tab-content.hidden {
    display: none;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}
.text-center { text-align: center; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
