/* ======================================= */
/* 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;
}

/* ======================================= */
/* 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);
}

* {
    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); }

/* ======================================= */
/* 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                               */
/* ======================================= */
.intro-preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.intro-image {
    position: absolute;
    width: 100vw; height: 100vh;
    transform: scale(1.2);
}
.intro-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.5;
}
.intro-text-wrapper {
    position: relative;
    z-index: 2;
    width: 90%; margin: 0 auto;
    text-align: center;
}
.intro-text {
    font-family: var(--font-logo);
    font-size: 8vw;
    color: var(--white);
    opacity: 0;
    will-change: transform, opacity;
}

/* ======================================= */
/* HEADER                                  */
/* ======================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.8rem 4%;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.logo a {
    font-family: var(--font-logo);
    font-size: 2.2rem;
    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: color 0.3s;
}
.header-socials a:hover {
    color: var(--purple-main);
}

/* ======================================= */
/* HERO SECTION – WHITE EDITORIAL          */
/* ======================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background-color: var(--white);
    padding-top: 110px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at center, var(--purple-light) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Marquee */
.hero-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    flex-shrink: 0;
}
.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Nombre gigante detrás */
.hero-bg-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    text-align: center;
    line-height: 0.82;
    user-select: none;
    width: 100%;
}
.bg-name-line {
    display: block;
    font-family: var(--font-logo);
    font-size: clamp(12rem, 34vw, 44rem);
    font-weight: 400;
    color: rgba(138, 29, 74, 0.08);
    letter-spacing: 0;
    white-space: nowrap;
    text-transform: none;
    font-style: normal;
    line-height: 0.85;
}

/* Imagen centrada */
.hero-center {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.hero-image-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 576/490;
    overflow: visible;
    background: transparent;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    transition: filter 0.6s ease, transform 0.6s ease;
}
.hero-video {
    /* El clip ya fue generado con canal alpha (VP9 WebM). */
    display: block;
}
.hero-img:hover {
    transform: scale(1.02);
}

/* Info lateral izquierda */
.hero-side-left {
    position: absolute;
    left: 4%; bottom: 18%;
    z-index: 5;
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.hero-socials {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.hero-socials a {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s;
}
.hero-socials a:hover { color: var(--purple-main); }
.hero-socials a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* Info lateral derecha */
.hero-side-right {
    position: absolute;
    right: 4%; bottom: 18%;
    z-index: 5;
    text-align: right;
}
.hero-phrase {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.hero-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    border-bottom: 1.5px solid var(--purple-main);
    padding-bottom: 4px;
    transition: color 0.3s;
}
.hero-cta:hover { color: var(--purple-main); }

/* Descripción inferior */
.hero-bottom {
    position: relative;
    z-index: 3;
    padding: 2.5rem 4%;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}
.hero-description {
    max-width: 650px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.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: var(--text-muted);
    z-index: 5;
}
.scroll-indicator .line {
    width: 50px; height: 1px;
    background-color: var(--border-light);
}

/* ======================================= */
/* REDES SOCIALES & STATS                  */
/* ======================================= */
.socials-vip-section {
    padding: 100px 4%;
    background-color: var(--off-white);
    border-top: 1px solid var(--border-light);
}
.stats-header {
    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;
}
.section-label::after {
    content: '';
    display: block;
    width: 50px; height: 1.5px;
    background-color: var(--purple-main);
    margin: 15px auto 0;
}

/* Stats Table Layout */
.stats-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stats-row {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stats-row:not(.stats-row--head):hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.stats-row--head {
    background: transparent;
    border: none;
    padding-bottom: 5px;
    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;
}

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

.col-platform .platform-icon {
    font-size: 1.6rem;
    color: var(--purple-main);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple-light);
    border-radius: 50%;
}

.col-male, .col-female {
    font-size: 1.1rem;
    font-weight: 500;
    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.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.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: 15px; }
    .col-platform { flex: 100% !important; justify-content: center; }
    .stats-row > div { flex: 0 0 45%; justify-content: center; }
    .col-vip { flex: 100% !important; justify-content: center; margin-top: 15px; }
}

/* 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;
}
.btn-vip:hover {
    background-color: var(--purple-main);
    color: var(--white);
}

/* ======================================= */
/* 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-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.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: opacity 0.3s;
}
.brands-track .brand-item:hover {
    opacity: 1;
    color: var(--text-dark);
}
@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================================= */
/* BIO SECTION                             */
/* ======================================= */
.bio-section {
    padding: 140px 4%;
    position: relative;
    background-color: var(--white);
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}
.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;
}
.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-image img {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: filter 0.5s;
}
.bio-image:hover img {
    filter: brightness(1.05);
}

/* ======================================= */
/* FILMOGRAPHY / PROJECTS                  */
/* ======================================= */
.projects-section {
    padding: 120px 4%;
    background-color: var(--off-white);
    border-top: 1px solid var(--border-light);
    overflow: hidden;
}
.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;
    transition: transform 0.6s;
}
.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;
    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;
    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: 160px 4% 50px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.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 {
    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 {
    padding: 100px 4%;
    background-color: var(--off-white);
}
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.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: 80px;
    position: relative;
}
.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(--off-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);
}
.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 28px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    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;
}
.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 top;
    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);
}
.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); }
.email-box {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--off-white);
    border-left: 3px solid var(--purple-main);
    border-radius: 6px;
}
.email-link {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.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: 6px;
}
.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 (max-width: 1024px) {
    .hero-side-left, .hero-side-right {
        position: relative;
        left: auto; right: auto; bottom: auto;
        text-align: center;
        padding: 0 4%;
    }
    .hero-socials {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    .hero-image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }
    .bg-name-line {
        font-size: clamp(5rem, 16vw, 12rem);
    }
    .hero-bottom { text-align: center; }
    .hero-description { margin: 0 auto; }
    .bio-grid { grid-template-columns: 1fr; }
    .bio-text .section-title { font-size: 3.2rem; }
    .projects-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-marquee { display: none; }
    .hero-section { padding-top: 80px; }
    .main-nav { display: none; }
    .page-title { font-size: 2.5rem; }
    .page-subtitle, .page-title span { margin-left: 0; }
    .blog-post.featured { flex-direction: column; }
    .contact-container, .timeline-item { flex-direction: column; }
    .timeline-year { padding-left: 0; margin-bottom: 15px; }
    .timeline-container::before { display: none; }
    .timeline-item::before { display: none; }
    .timeline-content { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 16px; padding: 22px; }
    .timeline-content img { grid-column: 1; grid-row: 1; width: 100%; height: 380px; object-position: center top; }
    .timeline-content h3 { grid-column: 1; grid-row: 2; }
    .timeline-content p { grid-column: 1; grid-row: 3; }
    .post-gallery { flex-direction: column; }
    .post-gallery img { width: 100%; height: auto; }
    .form-group.double { flex-direction: column; }
    .form-group.double input { width: 100%; }
    .bio-image { height: 400px; }
    .project-img-wrapper { height: 300px; }
    .projects-container { grid-template-columns: 1fr; }
    .social-stats { grid-template-columns: repeat(2, 1fr); }
}
