:root {

    --fluo: #ccff00; 
    --fluo-dark: #b3e600;
    --black: #050505;
    --black-soft: #111111;
    --white: #ffffff;
    --gray: #333333;
    --gray-dark: #1a1a1a;
    --gray-light: #888888;
    
    /* Tipografía */
    --font-heading: 'Chelsea Market', cursive;
    --font-body: 'Roboto', sans-serif;
    --transition-speed: 0.3s;
}

body { 
   
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-family: var(--font-heading);
    line-height: 0.85;
    color: var(--white);
    text-transform: uppercase;
}

.hero-title .highlight {
    color: var(--fluo);
    display: block;
}
.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 1rem;
    text-transform: uppercase;
    margin-top: 3rem;
}
.text-line {
    overflow: hidden;
}
.highlight {
    color: #ff3366;
}
.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin: 1rem 0;
}
.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.8;
    margin-bottom: 2rem;
}
.hero-cta {
    display: flex;
    gap: 1.5rem;
}
.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
}
.btn-primary {
    background: #fff;
    color: #000;
}
.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* Manifesto Section */
.manifesto-section {
    padding: 15vh 5%;
    overflow: hidden;
    background-color: transparent;
}
.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20vh;
}
.statement-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}
.statement-block:nth-child(even) {
    align-self: flex-end;
    text-align: right;
}
.huge-text {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.03em;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.statement-desc {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.5;
    opacity: 0.8;
    max-width: 600px;
}
.statement-block:nth-child(even) .statement-desc {
    margin-left: auto;
}
.char { display: inline-block; }

/* ----- PROYECTOS ESTILO STICKY ----- */
.projects-manifesto {
    padding: 10vh 0 20vh;
    position: relative;
}
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    padding: 0 5%;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.projects-container {
    display: flex;
    flex-direction: column;
}
.project-block {
    position: relative;
    /* Altura extra para permitir scroll mientras el título está sticky */
    min-height: 150vh; 
    padding-top: 15vh;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.project-content {
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

/* Contenedor del título que queda pegado */
.project-title-wrapper {
    position: sticky;
    top: 25vh; /* Altura donde se queda pegado */
    z-index: 1; /* Nivel Z más bajo que la información para ser tapado */
    pointer-events: none; /* No roba clicks */
}
.project-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.03em;
    color: #333333; /* Color apagado inicial */
    word-break: break-word;
    will-change: color;
}

/* Contenedor fluido que pisa al título */
.project-info-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 60vh; /* Empuja el texto hacia abajo forzando el scroll */
    /* Degradado difuminado con el color del fondo (body #0a0a0a) 
       Esto crea el efecto de que borra al título al pasar por encima */
    background: linear-gradient(180deg, transparent 0%, #0a0a0a 15%, #0a0a0a 100%);
    padding: 15vh 0 10vh 0;
    pointer-events: auto;
}
.project-info {
    max-width: 700px;
}
.project-description {
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    line-height: 1.4;
    margin: 0 0 2rem;
}
.project-link {
    margin-top: 2rem;
}
.btn-project {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    transition: all 0.2s ease;
    pointer-events: auto;
}
.btn-project.inactive {
    color: #888;
    border-bottom-color: #888;
    cursor: default;
}
.btn-project:hover:not(.inactive) {
    padding-bottom: 8px;
}
.project-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .project-block {
        min-height: 120vh;
        padding-top: 10vh;
    }
    .project-title-wrapper {
        top: 15vh;
    }
    .project-info-wrapper {
        margin-top: 50vh;
        padding-top: 10vh;
    }
}
/* =========================================
   7. FOOTER UNIFICADO
   ========================================= */
footer {
    background: var(--black);
    border-top: 22px solid var(--fluo);
    padding: 4rem 5% 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--fluo);
    background: var(--black-soft);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-left: 4px solid var(--fluo);
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(204, 255, 0, 0.2);
}

.footer-section h4 {
    color: var(--fluo);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section a {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-section a:hover { color: var(--fluo); }
