﻿/* ======================================= */
/* TIPOGRAFÍA BLOSTA — SOLO PARA LOGO      */
/* ======================================= */
@font-face {
    font-family: 'Blosta Script';
    src: url('../fonts/Blosta-Script.woff2') format('woff2'),
         url('../fonts/Blosta-Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Blosta Regular';
    src: url('../fonts/Blosta-Regular.woff2') format('woff2'),
         url('../fonts/Blosta-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ======================================= */
/* TYPOGRAPHY FOR TITLES IN MAIN           */
/* ======================================= */
main h1, main h2, main h3, 
.section-title, .section-label, 
.hero-tagline, .hero-phrase,
.page-title, .post-title,
.project-info h3, .blog-post-info h3,
.timeline-item h3, .stat-item h3,
.contact-info h2 {
    font-family: var(--font-heading) !important;
    text-transform: none !important;
    font-weight: 500 !important;
}

/* ======================================= */
/* VARIABLES                               */
/* ======================================= */
:root {
    --purple-main: #B62288;
    --purple-sec: #B42B89;
    --purple-light: rgba(182, 34, 136, 0.08);
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --border-light: #EBEBEB;
    --black: #111111;
    --text-dark: #1a1a1a;
    --text-body: #444444;
    --text-muted: #888888;
    --font-logo: 'Blosta Script', cursive;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

body.font-prata {
    --font-heading: 'Prata', Georgia, serif;
    --font-body: 'Prata', Georgia, serif;
}

body.font-butler {
    --font-heading: 'Butler Stencil', 'Prata', Georgia, serif;
    --font-body: 'Prata', Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ======================================= */
/* CURSOR CUSTOM                           */
/* ======================================= */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--purple-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}
.custom-cursor-outline {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1.5px solid var(--purple-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.custom-cursor.active { width: 18px; height: 18px; }
.custom-cursor-outline.active { transform: translate(-50%, -50%) scale(1.6); }
.custom-cursor.clicking { transform: translate(-50%, -50%) scale(0.6); }
.custom-cursor-outline.clicking { transform: translate(-50%, -50%) scale(0.8); }

/* ======================================= */
/* TRANSITIONS (Barba)                     */
/* ======================================= */
.transition-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background-color: var(--black);
    z-index: 9000;
    transform: translateY(100%);
}

/* ======================================= */
/* PRELOADER (solo home)                   */
/* ======================================= */
.intro-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: #09090f;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    will-change: transform;
    animation: preloaderAutoOut 0.7s ease-in-out 3.5s forwards;
}
@keyframes preloaderAutoOut {
    to { transform: translateY(-100%); }
}
.preloader-name {
    font-family: var(--font-logo);
    font-size: clamp(1.5rem, 3.8vw, 2.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    letter-spacing: 0.02em;
    width: clamp(180px, 38vw, 340px);
    text-align: center;
    white-space: nowrap;
    text-shadow:
        0 0 24px rgba(255, 255, 255, 0.55),
        0 0 60px rgba(255, 255, 255, 0.18);
    animation: preloaderNameIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes preloaderNameIn {
    from {
        opacity: 0;
        filter: blur(14px);
        letter-spacing: 0.12em;
    }
    to {
        opacity: 1;
        filter: blur(0px);
        letter-spacing: 0.02em;
    }
}
.preloader-bar-wrap {
    width: clamp(180px, 38vw, 340px);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}
.preloader-bar {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    /* Degradado: inicio desvanecido, avanza con magenta sólido en el frente */
    background: linear-gradient(
        to right,
        rgba(182, 34, 136, 0.25) 0%,
        rgba(182, 34, 136, 0.65) 18%,
        #B62288 45%,
        #C9359D 100%
    );
    animation: preloaderBarFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
@keyframes preloaderBarFill {
    to { width: 100%; }
}

/* ── PRELOADER MOBILE ─────────────────────────────── */
@media (max-width: 820px) {
    .intro-preloader {
        /* inset: 0 cubre hasta el borde del viewport real en mobile,
           evita que el contenido de abajo se filtre por la barra del browser */
        top: 0; right: 0; bottom: 0; left: 0;
        width: 100%;
        height: 100%;
        gap: 22px;
    }
    .preloader-name {
        font-size: clamp(2rem, 8vw, 2.8rem);
        width: clamp(260px, 78vw, 340px);
    }
    .preloader-bar-wrap {
        width: clamp(260px, 78vw, 340px);
        height: 3px;
    }
}

/* ======================================= */
/* HEADER                                  */
/* ======================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 0.65rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    --header-height: 54px;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
/* Header visible por defecto en páginas internas */
body:not(.home-page) .site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.site-header.scrolled,
.home-page .site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.8rem 4%;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

/* CSS fallback: header blanco en home cuando hay scroll (sin JS) */
@supports (animation-timeline: scroll()) {
    .home-page .site-header {
        animation: headerScrollBg linear both;
        animation-timeline: scroll();
        animation-range: 80px 120px;
    }
    @keyframes headerScrollBg {
        to {
            background-color: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(14px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.08);
        }
    }
}

.logo a {
    font-family: var(--font-logo);
    font-size: 1.85rem;
    color: var(--black);
}
.logo span {
    color: var(--purple-main);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.main-nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    position: relative;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--black); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background-color: var(--purple-main);
    transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-socials {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.header-socials a {
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s;
}
.header-socials a:hover {
    color: var(--purple-main);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--black);
    border-radius: 999px;
}

/* ======================================= */
/* HERO SECTION – FULLSCREEN VIDEO        */
/* ======================================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: var(--black);
    padding-top: 0;
    color: #fff; /* Asegurar texto blanco global en hero */
}

/* Fullscreen video background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.7) 0%, 
                rgba(0,0,0,0.3) 30%, 
                rgba(0,0,0,0.3) 70%, 
                rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-video-bg-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    pointer-events: none;
}

/* Overlay content on top of video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 110px;
    pointer-events: none;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.5) 0%, 
                transparent 25%, 
                transparent 75%, 
                rgba(0,0,0,0.8) 100%);
}

.hero-overlay > * {
    pointer-events: auto;
}

.hero-top-left-name {
    position: absolute;
    top: 185px;
    left: 64%;
    z-index: 7;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 1vw, 18px);
}

.hero-contact-wrapper {
    position: relative;
    z-index: 7;
}

.hero-top-left-name .hero-contact-wrapper {
    align-self: flex-end;
    margin-top: clamp(14px, 1.6vw, 26px);
    transform: translateX(clamp(10px, 1.8vw, 26px));
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(182,34,136,0.15) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Marquee */
.hero-marquee {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 6;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 0;
    flex-shrink: 0;
    background: rgba(0,0,0,0.5); /* Aumentado de 0.3 */
    backdrop-filter: blur(12px); /* Aumentado de 8px */
}
.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: none;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-bg-name {
    margin-bottom: 14px;
    line-height: 0.86;
}
.hero-bg-name .bg-name-line {
    display: block;
    font-family: var(--font-logo);
    font-size: 8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 25px rgba(0,0,0,0.85);
    line-height: 0.8;
}

.hero-bg-name .bg-name-line:nth-child(2) {
    transform: translateX(20px);
}

/* Contenido central: Ella en grande */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.hero-image-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: none;
    overflow: visible;
    background: transparent;
    pointer-events: auto;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover; /* Cambiado de contain a cover para ocupar toda la pantalla */
    object-position: center center;
    background: transparent;
    transition: filter 0.6s ease, transform 0.6s ease;
}
.hero-img:hover {
    transform: scale(1.02);
}

/* Info lateral izquierda */
.hero-side-left {
    position: absolute;
    left: 4%; bottom: 45%;
    z-index: 5;
    color: var(--white) !important;
    max-width: 360px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.hero-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(182, 34, 136, 0.28);
    border: 1px solid rgba(182, 34, 136, 0.6);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-contact-btn:hover {
    background: var(--purple-main);
    border-color: var(--purple-main);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(182, 34, 136, 0.35);
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-main); /* Cambiado a púrpura para mejor contraste y marca */
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-socials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.hero-socials a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.hero-socials a:hover { 
    color: var(--purple-main);
    filter: drop-shadow(0 0 10px var(--purple-main));
}
.hero-socials a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.hero-phrase {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white) !important;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    border-bottom: 2px solid var(--purple-main);
    padding-bottom: 6px;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}
.hero-cta:hover { 
    color: var(--purple-main);
    border-bottom-color: var(--purple-main);
    filter: drop-shadow(0 0 10px var(--purple-main));
}

/* Secciones de descripción eliminadas */

.scroll-indicator {
    position: absolute;
    bottom: 30px; right: 4%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    z-index: 5;
}
.scroll-indicator .line {
    width: 50px; height: 1px;
    background-color: var(--border-light);
}

/* ======================================= */
/* REDES SOCIALES & STATS                  */
/* ======================================= */
.socials-vip-section {
    position: relative;
    padding: 100px 4%;
    background-color: var(--off-white);
    border-top: 1px solid var(--border-light);
    overflow: hidden;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}
.stats-bg-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    text-align: center;
    line-height: 0.85;
    opacity: 1;
}
.stats-bg-line {
    display: block;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: clamp(7rem, 18vw, 18rem);
    color: rgba(182, 34, 136, 0.10);
    white-space: nowrap;
}
.stats-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.presencia-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.stats-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}
.section-label::after {
    content: none !important;
    display: none !important;
}

/* Stats Table Layout */
.stats-table {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(182, 34, 136, 0.14);
    border-bottom: 1px solid rgba(182, 34, 136, 0.14);
}

.stats-row {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 22px 14px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(182, 34, 136, 0.10);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.stats-row:not(.stats-row--head):hover {
    background-color: rgba(182, 34, 136, 0.035);
    border-bottom-color: rgba(182, 34, 136, 0.18);
}

.stats-row--head {
    background: transparent;
    border: none;
    padding: 0 14px 14px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-row--head .col-vip {
    opacity: 0;
}

/* Col structure */
.stats-row > div {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.col-platform {
    flex: 1.2 !important;
}

.col-platform .platform-icon {
    font-size: 1.6rem;
    color: var(--purple-main);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple-light);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(182, 34, 136, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.stats-row:hover .col-platform .platform-icon {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 14px 34px rgba(182, 34, 136, 0.28);
    filter: saturate(1.1);
}

.col-platform .platform-icon:active {
    transform: translateY(0) scale(1.02);
}

.platform-icon.instagram {
    background-color: var(--purple-light);
    color: var(--purple-main);
}

.platform-icon.onlyfans {
    background-color: var(--purple-light);
    color: var(--purple-main);
}

.platform-icon.onlyfans svg {
    fill: currentColor;
}

.col-male, .col-female {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}

.col-male i, .col-female i {
    font-size: 1.4rem;
    margin-right: 10px;
    color: var(--purple-main);
}

.col-total .counter {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--purple-main);
}

.col-vip {
    justify-content: flex-end;
    flex: 1.5 !important;
    min-width: 0;
}

.btn-vip.pink-hover:hover {
    background-color: #ff66b2 !important;
    border-color: #ff66b2 !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .stats-row--head { display: none; }
    .stats-row {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        gap: 10px;
        padding: 28px 16px;
    }
    /* 1. Icono de red: fila completa */
    .col-platform { flex: 0 0 100% !important; justify-content: center; order: 1; }
    .col-platform .platform-icon {
        width: 132px !important;
        height: 132px !important;
        font-size: 3.6rem !important;
    }
    /* 2. Número de seguidores: fila completa */
    .col-total    { flex: 0 0 100% !important; justify-content: center; order: 2; margin: 4px 0; }
    /* 3. % hombre y % mujer: lado a lado en la misma fila */
    .col-male     { flex: 0 0 auto !important; order: 3; margin: 0 10px; }
    .col-female   { flex: 0 0 auto !important; order: 4; margin: 0 10px; }
    /* 4. Botón VIP: fila completa, grande */
    .col-vip      { flex: 0 0 100% !important; justify-content: center; order: 5; margin-top: 12px; }
    .col-vip .btn-vip {
        width: 94% !important;
        padding: 18px 28px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        min-height: 58px;
        justify-content: center;
        letter-spacing: 0.12em !important;
    }

    /* Biografía: bio-stats padding reducido — evita aplastamiento en 2 columnas */
    .bio-stat { padding: 40px 16px !important; }
}

/* Botón VIP */
.btn-vip {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--purple-main);
    border-radius: 50px;
    transition: all 0.3s;
    max-width: 100%;
    white-space: nowrap;
}
.btn-vip:hover {
    background-color: var(--purple-main);
    color: var(--white);
}

/* Estilo Azul OnlyFans */
.btn-vip.onlyfans-blue {
    background-color: rgba(0, 175, 240, 0.08); /* Azul tenue */
    border-color: #00aff0;
    color: #00aff0;
}

.btn-vip.onlyfans-blue:hover {
    background-color: #00aff0 !important;
    border-color: #00aff0 !important;
    color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(0, 175, 240, 0.3);
}

.btn-vip.vip-pink {
    background-color: rgba(255, 102, 178, 0.1);
    border-color: #ff66b2;
    color: #ff66b2;
}

.btn-vip.vip-pink:hover {
    background-color: #ff66b2 !important;
    border-color: #ff66b2 !important;
    color: var(--white) !important;
    box-shadow: 0 8px 20px rgba(255, 102, 178, 0.28);
}

/* ======================================= */
/* BRANDS CAROUSEL                         */
/* ======================================= */
.brands-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.brands-label {
    text-align: center;
    font-family: var(--font-heading) !important;
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 40px;
    opacity: 0.85;
    position: relative;
    display: block;
}

.brands-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background-color: var(--purple-main);
    margin: 12px auto 0;
    opacity: 0.6;
}

.home-main-content .section-label,
.home-main-content .section-title,
.home-main-content .projects-header .section-label,
.home-main-content .brands-label,
.home-main-content .project-info h3,
.inner-page .page-title,
.inner-page .section-title,
.inner-page .section-label {
    font-family: 'Blosta Regular', var(--font-heading);
    letter-spacing: 0.03em;
}
.brands-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4%;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
}
.brands-carousel::-webkit-scrollbar { display: none; }
.brands-carousel.is-dragging { cursor: grabbing; }
.brands-carousel.is-interactive .brands-track { animation: none; }
.brands-carousel.is-auto { scroll-snap-type: none; }
.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: brandsScroll 20s linear infinite;
    white-space: nowrap;
}
.brands-track .brand-item {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brands-track .brand-item img {
    height: 40px; /* Altura uniforme para logos */
    width: auto;
    max-width: 140px;
    filter: grayscale(100%) brightness(0.5);
    transition: all 0.4s ease;
}
.brands-track .brand-item:hover {
    opacity: 1;
    color: var(--text-dark);
}
.brands-track .brand-item:hover img {
    filter: grayscale(0%) brightness(1);
}
.magazines-section .brands-track {
    animation-duration: 26s;
    animation-direction: reverse;
}
@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================================= */
/* BIO SECTION                             */
/* ======================================= */
.bio-section {
    padding: 140px 4%;
    position: relative;
    background-color: var(--white);
    z-index: 1;
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    overflow: visible;
}
.bio-text {
    position: relative;
    z-index: 5;
    width: 100%;
}
.bio-text .section-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.bio-text .section-title span {
    color: var(--purple-main);
}
.bio-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 40px;
}
.btn-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--purple-main);
    padding-bottom: 5px;
    color: var(--text-dark);
    transition: color 0.3s;
}
.btn-link:hover { color: var(--purple-main); }

.bio-image {
    position: relative;
    width: 100%;
    height: 650px;
    z-index: 1;
}
.bio-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
}
.blob-secondary {
    position: absolute;
    top: 10%; left: -10%;
    width: 35vw; height: 35vw;
    background: radial-gradient(circle, rgba(182,34,136,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.bio-media img {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: filter 0.5s;
}
.bio-media video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-6%) scale(1.14);
    transform-origin: 50% 50%;
    will-change: transform;
    background: transparent;
}
.bio-image:hover .bio-media img,
.bio-image:hover .bio-media video {
    filter: brightness(1.05);
}

@media (min-width: 1025px) {
    .bio-grid {
        align-items: stretch;
    }
    .bio-image {
        grid-column: 1 / -1;
        grid-row: 1;
        height: auto;
        min-height: 650px;
        align-self: stretch;
    }
    .bio-text {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
    }
    .bio-media video {
        transform: translateX(-8%) scale(1.18);
    }
}

/* ======================================= */
/* FILMOGRAPHY / PROJECTS                  */
/* ======================================= */
.projects-section {
    padding: 120px 4%;
    background-color: var(--off-white);
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.projects-section::before {
    content: 'Livia Brito';
    position: absolute;
    top: 25%;
    left: 5%;
    transform: rotate(-12deg);
    font-family: var(--font-logo);
    font-size: 32vw;
    color: rgba(182, 34, 136, 0.07);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.projects-section::after {
    content: 'Livia Brito';
    position: absolute;
    bottom: 8%;
    right: -8%;
    transform: rotate(-10deg);
    font-family: var(--font-logo);
    font-size: 22vw;
    color: rgba(182, 34, 136, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.projects-section > * {
    position: relative;
    z-index: 2;
}
.projects-header {
    text-align: center;
    margin-bottom: 70px;
}
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.project-img-wrapper {
    overflow: hidden;
    height: 400px;
}
.project-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s;
}
.project-card img.project-img--focus-top {
    object-position: center top;
}
.project-card:hover img {
    transform: scale(1.05);
}
.project-info {
    padding: 22px 24px;
}
.project-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.project-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.project-year {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--purple-main);
    margin-bottom: 4px;
}

/* ======================================= */
/* FOOTER                                  */
/* ======================================= */
.site-footer {
    padding: 80px 4% 30px;
    background-color: var(--black);
    color: var(--white);
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}
.footer-logo {
    font-family: var(--font-logo);
    font-size: 3rem;
}
.footer-logo span { color: var(--purple-main); }
.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: #888;
}
.footer-links a:hover { color: var(--white); }
.footer-socials {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.1rem;
}
.footer-socials a {
    color: #666;
    transition: color 0.3s;
}
.footer-socials a:hover { color: var(--purple-main); }
.footer-legal {
    margin-top: 30px;
    font-size: 0.7rem;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ======================================= */
/* INNER PAGES                             */
/* ======================================= */
.page-header {
    padding: 180px 4% 80px; /* Aumentado padding */
    background-color: #fdfafb; /* Tono off-white más notorio */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh; /* Asegurar altura mínima */
    z-index: 1;
}
.header-rotated-text {
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(0,0,0,0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}
.page-title, .page-subtitle {
    opacity: 1;
    visibility: visible;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.page-title span {
    color: var(--purple-main);
    margin-left: 10%;
    display: block;
}
.page-subtitle {
    margin-top: 15px;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-left: 20%;
    position: relative;
    z-index: 2;
}

/* ======================================= */
/* TIMELINE                                */
/* ======================================= */
.timeline-section {
    position: relative;
    padding: 100px 0;
    background: #fdfafb; /* Tono off-white muy tenue */
    overflow: hidden;
}

/* Marca de agua - Firma de Livia gigante */
.timeline-section::before {
    content: 'Livia Brito';
    position: fixed;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
    font-family: var(--font-logo);
    font-size: 35vw;
    color: rgba(182, 34, 136, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

/* Segunda firma para mayor dinamismo */
.timeline-section::after {
    content: 'Livia Brito';
    position: fixed;
    bottom: 10%;
    right: -10%;
    transform: rotate(-10deg);
    font-family: var(--font-logo);
    font-size: 20vw;
    color: rgba(182, 34, 136, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 2;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 20px;
    width: 2px;
    background-color: var(--purple-main);
}
.timeline-item {
    display: flex;
    margin-bottom: 120px;
    position: relative;
    z-index: 5;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 0; left: 10px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background-color: var(--purple-main);
    border: 4px solid var(--white);
    z-index: 2;
}
.timeline-year {
    width: 150px;
    padding-left: 50px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--purple-sec);
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.timeline-content {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 28px;
    border-radius: 10px;
    border: 1px solid rgba(182, 34, 136, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 28px;
    row-gap: 10px;
    align-items: start;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(138, 29, 74, 0.08);
}
.timeline-content img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 180px;
    height: 270px;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    align-self: start;
}
.timeline-content h3 {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: var(--text-dark);
    line-height: 1.25;
    align-self: start;
}
.timeline-content p {
    grid-column: 2;
    grid-row: 2;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
    align-self: start;
}

/* ======================================= */
/* BLOG                                    */
/* ======================================= */
.blog-section {
    padding: 100px 4%;
    background-color: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.blog-post {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.blog-post.featured {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 40px;
}
.blog-post.featured .post-img { flex: 2; }
.blog-post.featured .post-content { flex: 1; padding: 30px; }
.post-img img {
    width: 100%; height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-post:hover .post-img img {
    transform: scale(1.02);
}
.category {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-main);
}
.post-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin: 12px 0;
    color: var(--text-dark);
}
.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 12px 0;
    color: var(--text-dark);
}
.post-content p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}
.read-more {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--text-dark);
    padding-bottom: 2px;
    color: var(--text-dark);
}
.read-more:hover {
    color: var(--purple-main);
    border-color: var(--purple-main);
}

/* ======================================= */
/* CONTACTO                                */
/* ======================================= */
.contact-section {
    padding: 100px 4%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: 'Livia Brito';
    position: absolute;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
    font-family: var(--font-logo);
    font-size: 35vw;
    color: rgba(182, 34, 136, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.contact-section::after {
    content: 'Livia Brito';
    position: absolute;
    bottom: 10%;
    right: -10%;
    transform: rotate(-10deg);
    font-family: var(--font-logo);
    font-size: 20vw;
    color: rgba(182, 34, 136, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.contact-section > * {
    position: relative;
    z-index: 2;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}
.contact-info { flex: 1; }
.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.contact-info span { color: var(--purple-main); }
.contact-info p { 
    color: var(--text-body); 
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.email-box {
    margin-top: 30px;
    padding: 30px;
    background-color: #fdf0f4; /* Tono rosado muy tenue más notorio */
    border-left: 4px solid var(--purple-main);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(182, 34, 136, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.email-box:hover {
    transform: translateX(5px);
    background-color: #fce4ec; /* Un poco más oscuro en hover */
}
.email-box .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--purple-main);
    margin-bottom: 10px;
}
.email-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s;
    word-break: break-all;
}
.email-link:hover { color: var(--purple-main); }
.contact-form { flex: 1; }
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-bottom: 1.5px solid var(--border-light);
    background-color: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--purple-main);
}
.btn-submit {
    padding: 16px 40px;
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    cursor: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
    border-radius: 999px;
}
.btn-submit:hover {
    background-color: var(--purple-main);
}

/* ======================================= */
/* POST INDIVIDUAL                         */
/* ======================================= */
.post-hero {
    position: relative;
    width: 100%; height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 8vw 5vw;
    color: var(--white);
    background-color: var(--black);
    overflow: hidden;
}
.post-hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.post-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
}
.post-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.post-hero-content .category {
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 4px;
    margin-bottom: 15px;
    display: inline-block;
}
.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.post-date {
    font-size: 0.95rem;
    opacity: 0.7;
}

.post-body {
    padding: 8vw 5vw;
    background-color: var(--white);
    color: var(--text-body);
}
.post-container {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
}
.post-container p { margin-bottom: 28px; }
.dropcap {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}
.post-container h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin: 45px 0 25px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.post-gallery {
    display: flex;
    gap: 15px;
    margin: 45px 0;
}
.post-gallery img {
    width: 50%; height: 450px;
    object-fit: cover;
    border-radius: 6px;
}

/* Comentarios */
.comments-section {
    padding: 5vw;
    background-color: var(--off-white);
    border-top: 1px solid var(--border-light);
}
.comments-container {
    max-width: 750px;
    margin: 0 auto;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 35px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--purple-main);
    padding-bottom: 10px;
    display: inline-block;
}
.comments-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
.comment-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}
.comment-author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: uppercase;
}
.comment-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}
.comment-formulator {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}
.comment-formulator h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.form-group.double {
    display: flex;
    gap: 20px;
}
.form-group.double input { width: 50%; }

/* ======================================= */
/* RESPONSIVE                              */
/* ======================================= */
@media (hover: none), (pointer: coarse) {
    * { cursor: auto; }
    .custom-cursor, .custom-cursor-outline { display: none; }
}

@media (max-width: 1024px) {
    .site-header { padding: 1rem 4%; }
    .main-nav ul { gap: 1.6rem; }
    .header-socials { gap: 0.9rem; }

    .page-header { padding: 160px 4% 70px; }
    .page-title { font-size: 3rem; }
    .page-subtitle { margin-left: 0; }

    .hero-top-left-name { left: 45%; }
    .hero-bg-name .bg-name-line { font-size: clamp(4.5rem, 9vw, 7rem); }
    .hero-side-left { max-width: 340px; bottom: 38%; padding: 22px; }

    .contact-container { gap: 40px; }
    .bio-grid { grid-template-columns: 1fr; gap: 50px; }
    .bio-image { height: 520px; }
    .bio-text .section-title { font-size: 3.4rem; }
    .project-img-wrapper { height: 340px; }
}

@media (max-width: 820px) {
    .site-header { z-index: 2100; }
    .nav-toggle { z-index: 2101; }

    .nav-toggle { display: inline-flex; }
    .header-socials { display: none; }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding: 14px 4% 0;
        background: transparent;
        z-index: 2000;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        max-width: 520px;
        padding: 8px 0 16px;
        margin: 0;
        background: rgba(17, 17, 17, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
        max-height: min(60vh, calc(100vh - var(--header-height) - 28px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav li { width: 100%; }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 0.98rem;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.92);
    }

    .main-nav a:hover { color: #fff; }
    .main-nav a::after { background-color: rgba(255, 255, 255, 0.65); }

    body.nav-open .main-nav { display: flex; }
    body.nav-open .site-header { background: transparent; backdrop-filter: none; box-shadow: none; }
    body.nav-open .logo a { color: rgba(255, 255, 255, 0.92); }
    body.nav-open .nav-toggle { background: rgba(0, 0, 0, 0.35); border-color: rgba(255, 255, 255, 0.18); }
    body.nav-open .nav-toggle-bar { background: rgba(255, 255, 255, 0.92); }

    .hero-marquee { display: none; }
    .hero-top-left-name { top: 95px; left: 6%; }
    .hero-bg-name .bg-name-line { font-size: clamp(3.8rem, 12vw, 5.6rem); }
    .hero-top-left-name .hero-contact-wrapper {
        margin-top: clamp(180px, 25vh, 260px);
        transform: translateX(clamp(180px, 55vw, 320px));
        position: relative;
        z-index: 10;
    }
    .hero-side-left {
        left: 6%;
        right: 6%;
        bottom: 60px !important;
        max-width: none;
        width: auto;
        padding: 16px;
        z-index: 5;
    }
    .scroll-indicator { right: 6%; bottom: 26px; }

    .blog-post.featured { flex-direction: column; }
    .blog-post.featured .post-content { padding: 22px; }

    /* Trayectoria: watermarks no fijos en mobile landscape/tablet */
    .timeline-section::before,
    .timeline-section::after { position: absolute; }

    /* ── Hero mobile: animaciones CSS puras (sin depender de GSAP) ── */
    @keyframes _mHeroLeft  { from { opacity:0; transform:translateX(-55px) } to { opacity:1; transform:translateX(0) } }
    @keyframes _mHeroRight { from { opacity:0; transform:translateX( 55px) } to { opacity:1; transform:translateX(0) } }
    @keyframes _mHeroScale { from { opacity:0; transform:scale(0.82) translateY(14px) } to { opacity:1; transform:scale(1) translateY(0) } }
    @keyframes _mHeroUp    { from { opacity:0; transform:translateY(44px) } to { opacity:1; transform:translateY(0) } }

    .hero-bg-name .bg-name-line:first-child  { animation: _mHeroLeft  0.85s cubic-bezier(.16,1,.3,1) 3.6s both; }
    .hero-bg-name .bg-name-line:nth-child(2) { animation: _mHeroRight 0.85s cubic-bezier(.16,1,.3,1) 3.8s both; }
    .hero-contact-btn  { animation: _mHeroScale 0.65s cubic-bezier(.34,1.56,.64,1) 4.05s both; }
    .hero-side-left    { animation: _mHeroUp    0.8s cubic-bezier(.16,1,.3,1) 4.35s both; }
}

@media (max-width: 600px) {
    .site-header { padding: 0.9rem 4%; }
    .logo a { font-size: 1.9rem; }

    .page-header { padding: 140px 4% 24px; }
    .blog-section { padding: 32px 4% 80px; }
    .header-rotated-text { display: none; }
    .page-title { font-size: 2.35rem; }
    .page-subtitle { font-size: 0.9rem; letter-spacing: 2px; }

    .hero-top-left-name { top: 88px; left: 6%; }
    .hero-bg-name .bg-name-line { font-size: clamp(3.2rem, 14vw, 4.8rem); line-height: 0.9; }
    .hero-bg-name .bg-name-line:nth-child(2) { transform: translateX(12px); }
    .hero-top-left-name .hero-contact-wrapper {
        margin-top: clamp(160px, 22vh, 240px);
        transform: translateX(clamp(160px, 50vw, 280px));
        position: relative;
        z-index: 10;
    }
    .hero-phrase { font-size: 1.15rem; margin-bottom: 1.2rem; }
    .hero-cta { font-size: 0.75rem; letter-spacing: 3px; }
    .hero-side-left { bottom: 55px !important; }

    .timeline-section::before {
        position: absolute;
        top: 10%;
        left: -5%;
        font-size: 60vw;
        color: rgba(182, 34, 136, 0.04);
    }
    .timeline-section::after {
        position: absolute;
        bottom: 0;
        right: -25%;
        font-size: 40vw;
        color: rgba(182, 34, 136, 0.02);
    }
    .projects-section::before,
    .contact-section::before {
        top: 10%;
        left: -5%;
        font-size: 60vw;
        color: rgba(182, 34, 136, 0.04);
    }
    .projects-section::after,
    .contact-section::after {
        bottom: 0;
        right: -25%;
        font-size: 40vw;
        color: rgba(182, 34, 136, 0.02);
    }

    .contact-container { flex-direction: column; gap: 40px; }
    .contact-info h2 { font-size: 2.6rem; }
    .email-box { padding: 22px; }
    .bio-section { padding: 110px 4%; }
    .bio-image {
        height: 420px;
        /* Fallback: muestra la foto si el video no carga en mobile */
        background: url('../img/splash.png') center top / cover no-repeat;
    }
    .bio-media video {
        transform: none;
        object-position: center top;
    }
    .bio-text .section-title { font-size: 2.9rem; margin-bottom: 26px; }
    .projects-section { padding: 90px 4%; }
    .project-img-wrapper { height: 280px; }
    .project-card img.project-img--focus-top { object-position: center 10%; }

    .timeline-container::before { left: 14px; }
    .timeline-item { flex-direction: column; margin-bottom: 70px; }
    .timeline-item::before { left: 4px; }
    .timeline-year { width: auto; padding-left: 40px; margin-bottom: 14px; font-size: 2.1rem; white-space: nowrap; }
    .timeline-year br { display: none; }
    .timeline-content { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 14px; padding: 18px; }
    .timeline-content img { grid-column: 1; grid-row: 1; width: 100%; height: 320px; }
    .timeline-content h3 { grid-column: 1; grid-row: 2; font-size: 1.4rem; }
    .timeline-content p { grid-column: 1; grid-row: 3; }

    .post-hero { height: 65vh; padding: 10vw 5vw; }
    .post-title { font-size: clamp(2rem, 7vw, 3.2rem); }
    .post-gallery { flex-direction: column; }
    .post-gallery img { width: 100%; height: auto; }

    .form-group.double { flex-direction: column; }
    .form-group.double input { width: 100%; }
    .comment-formulator { padding: 22px; }

    /* Contacto: emails largos no desbordan */
    .email-link { overflow-wrap: anywhere; word-break: break-word; }

    /* Contacto: botón submit cómodo en mobile */
    .btn-submit { width: 100%; min-height: 48px; }
}

@media (max-width: 420px) {
    .social-stats { grid-template-columns: 1fr; }
    /* Mantener stats-row centrado, no en columna */
    .stats-row { flex-wrap: wrap; flex-direction: row; align-items: center; justify-content: center; }
    /* Platform sigue 100% */
    .col-platform { flex: 0 0 100% !important; justify-content: center; gap: 10px; }
    /* Total 100% */
    .col-total { flex: 0 0 100% !important; justify-content: center; }
    /* Género en la misma fila, auto width */
    .col-male, .col-female { flex: 0 0 auto !important; width: auto !important; margin: 0 12px; }
    /* VIP 100% */
    .col-vip { flex: 0 0 100% !important; justify-content: center; }
    .btn-vip { width: 94% !important; justify-content: center; }

    .footer-links { font-size: 0.7rem; letter-spacing: 1.5px; }
    .footer-socials { gap: 14px; }

    /* Biografía: bio-stats más compacto en pantallas muy pequeñas */
    .bio-stat { padding: 32px 14px !important; }
}

/* ── Blog: featured card igual que los demás en mobile ─── */
@media (max-width: 820px) {
    .blog-post.featured { flex-direction: column; grid-column: auto; }
    .blog-post.featured .post-img { flex: none; width: 100%; }
    .blog-post.featured .post-content { flex: none; padding: 20px; }
    .post-content h2 { font-size: 1.3rem !important; }
    .post-content h3 { font-size: 1.1rem !important; }
    .blog-grid { grid-template-columns: 1fr !important; }
}

/* ── Marquee: desktop vs mobile ────────────────────────── */
.hero-marquee--mobile { display: none; }
@media (max-width: 820px) {
    .hero-marquee--desktop { display: none; }
    .hero-marquee--mobile  { display: block; }
}

/* ── Animaciones scroll home (mobile) ─────────────────── */
@media (max-width: 820px) {
    #sitio-oficial, .stats-section, #brands-section, #revistas-section,
    .bio-section, #podcast-mk-section { overflow-x: hidden; }
    .sitio-line { opacity:0; transform:translateX(-60px); transition:opacity .85s ease,transform .85s ease; display:inline-block; }
    #sitio-oficial h2 .sitio-line:last-child { transform:translateX(60px); transition-delay:.14s; }
    .sitio-btn { opacity:0; transform:translateY(24px); transition:opacity .6s ease,transform .6s ease; }
    .sitio-btn:nth-child(1){transition-delay:.28s} .sitio-btn:nth-child(2){transition-delay:.38s}
    .sitio-btn:nth-child(3){transition-delay:.48s} .sitio-btn:nth-child(4){transition-delay:.58s}
    .presencia-line { opacity:0; transform:translateX(-60px); transition:opacity .85s ease,transform .85s ease; display:inline-block; }
    .presencia-heading .presencia-line:last-child { transform:translateX(60px); transition-delay:.15s; }
    #presencia-subtitle { opacity:0; transform:translateY(20px); transition:opacity .6s ease .3s,transform .6s ease .3s; }
    @keyframes _bLeft  { from{opacity:0;transform:translateX(-65px)} to{opacity:1;transform:none} }
    @keyframes _bRight { from{opacity:0;transform:translateX( 65px)} to{opacity:1;transform:none} }
    #brands-section.animate .brands-tl,
    #revistas-section.animate .brands-tl { animation:_bLeft  0.85s cubic-bezier(.16,1,.3,1) both; }
    #brands-section.animate .brands-tr,
    #revistas-section.animate .brands-tr { animation:_bRight 0.85s cubic-bezier(.16,1,.3,1) 0.15s both; }
    .musa-line { opacity:0; transform:translateX(-60px); transition:opacity .85s ease,transform .85s ease; display:inline-block; }
    #bio-musa-text h2 .musa-line:last-child { transform:translateX(60px); transition-delay:.14s; }
    #bio-musa-p    { opacity:0; transform:translateY(20px); transition:opacity .6s ease .3s,transform .6s ease .3s; }
    #bio-musa-btns { opacity:0; transform:translateY(16px); transition:opacity .6s ease .46s,transform .6s ease .46s; }
    #pmk-left  { opacity:0; transform:translateX(-70px); transition:opacity .85s ease,transform .85s ease; }
    #pmk-right { opacity:0; transform:translateX(70px);  transition:opacity .85s ease .14s,transform .85s ease .14s; }
    #sitio-oficial.visible .sitio-line,
    #sitio-oficial.visible .sitio-btn { opacity:1!important; transform:none!important; }
    .stats-header.visible .presencia-line,
    .stats-header.visible #presencia-subtitle { opacity:1!important; transform:none!important; }
    /* brands/revistas: keyframes con .animate — ver arriba */
    #bio-musa-text.visible .musa-line,
    #bio-musa-text.visible #bio-musa-p,
    #bio-musa-text.visible #bio-musa-btns { opacity:1!important; transform:none!important; }
    #podcast-mk-section.visible #pmk-left,
    #podcast-mk-section.visible #pmk-right { opacity:1!important; transform:none!important; }
}

/* Mobile: hero siempre visible */
@media (max-width: 820px) {
    .hero-video-bg, .hero-poster { opacity:1!important; visibility:visible!important; }
    .hero-marquee, .hero-side-left, .hero-top-left-name, .hero-contact-wrapper,
    .bg-name-line, .stats-header, .stats-row, .platform-icon, .btn-vip, .counter,
    .bio-image, .bio-text, .page-title, .page-subtitle, .page-header {
        opacity:1!important; visibility:visible!important;
    }
    .presencia-heading { text-align:center!important; }
    .presencia-line    { display:block!important; text-align:center!important; }
}

