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

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

body {
    font-family: var(--font-franklin);
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #ff0080;
    --secondary-color: #00ffff;
    --accent-color: #ff6b00;
    --neon-pink: #ff0080;
    --neon-blue: #00ffff;
    --neon-purple: #8a2be2;
    --text-light: #ffffff;
    --text-dark: #000000;
    --bg-dark: #000000;
    --bg-marble: #1a1a1a;
    --marble-veins: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(255, 0, 128, 0.5);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-franklin: 'Libre Franklin', sans-serif;
}


.scroll-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Asegurar que todas las secciones cubran 100vh */
.anthropological-evaluation,
.anthropological-evaluation-part2,
.character-profile-section-part1,
.narrative-synthesis-part1,
.narrative-synthesis-part2,
.eva-technology,
.awards-section,
.final-gallery {
    min-height: 100vh;
}

.main-header {
    min-height: 100vh;
    height: 100vh;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('assets/images/lobby-dec2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
}


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Glitch Wrapper */
.glitch-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-franklin);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--text-light);
    text-shadow:
        0 0 2px rgba(255,255,255,0.9),
        0 0 6px rgba(255,255,255,0.6);
    letter-spacing: -0.02em;
    animation: titlePulse 3s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes titlePulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.title-byte {
    color: #ff3aa9; /* fucsia principal */
    -webkit-text-stroke: 3px rgba(255,255,255,0.95);
    text-shadow:
        0 0 2px #ffffff,
        0 0 6px #ff3aa9,
        0 0 12px #ff3aa9,
        0 0 24px #ff2b95,
        0 0 48px #ff2b95;
}

.title-prompt {
        color: #08d8ff; /* cian principal */
        -webkit-text-stroke: 3px rgba(255,255,255,0.95); /* borde blanco tipo neón */
        text-shadow:
            0 0 2px #ffffff,
            0 0 6px #08d8ff,
            0 0 12px #08d8ff,
            0 0 24px #00bfff,
            0 0 48px #00bfff;
}

/* Ajustes de neón en móviles para evitar halos excesivos */
@media (max-width: 768px) {
    .title-byte,
    .title-prompt {
        -webkit-text-stroke: 2px rgba(255,255,255,0.95);
        text-shadow:
            0 0 2px #ffffff,
            0 0 6px currentColor,
            0 0 12px currentColor,
            0 0 18px currentColor;
    }
}

.title-sep { display: inline-block; width: 0.2em }

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(-2px, 2px);
    }
    66% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(2px, -2px);
    }
    66% {
        transform: translate(-2px, 2px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    transition: opacity 0.5s ease;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink);
    }
    to {
        text-shadow: 
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 40px var(--neon-pink);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: 400;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px var(--neon-blue);
}


.official-announcement {
    font-family: var(--font-franklin);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 1px;
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    width: 100%;
}

.statement-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-light);
    max-width: 900px;
    line-height: 1.8;
    opacity: 0.9;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 90%;
    text-align: center;
}

.statement-text strong {
    color: var(--neon-pink);
    font-weight: 700;
}

/* Cursor de escritura */
.typing-cursor {
    display: inline-block;
    color: var(--neon-pink);
    animation: blink 0.8s infinite;
    margin-left: 2px;
    font-weight: 400;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* CAMBIAR  */
/* .anthropological-evaluation {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anthropological-evaluation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 0, 128, 0.02) 49%, rgba(255, 0, 128, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 255, 255, 0.01) 49%, rgba(0, 255, 255, 0.01) 51%, transparent 52%);
    background-size: 80px 80px, 120px 120px;
    z-index: 1;
    opacity: 0.6;
} */


.section-frame {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-franklin);
    font-size: 2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-weight: 700;
}

.evaluation-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
}

.evaluation-content p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.evaluation-content strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.profile-container.imagen-container {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.profile-container.second-parrafo {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.profile-container.second-parrafo .quote-bubble-center {
    width: 90%;
    max-width: 700px;
    padding: 2.5rem 3rem;
}


.profile-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.character-image-container {
    text-align: center;
    position: relative;
}


.character-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 0, 128, 0.4) 0%,
        rgba(0, 255, 255, 0.3) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: shadowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatCharacter {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.4;
    }
}

.image-placeholder {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.8); */
    color: var(--text-light);
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    display: none; /* Ocultamos el placeholder ya que la imagen se muestra completa */
}

/* .character-content {
    /* background: rgba(255, 255, 255, 0.05); */
    /* padding: 3rem; */
    /* border-radius: 20px; */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
/* } */


.character-signature {
    text-align: right;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* Burbuja centrada para las nuevas secciones */
.quote-bubble-center {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    max-width: 550px;
    width: 85%;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    position: relative;
}

/* Comillas grandes para el párrafo */
.quote-bubble-center::before {
    content: '"';
    position: absolute;
    top: -23px;
    left: 4px;
    font-size: 5rem;
    color: #00bfff;
    font-family: serif;
    font-weight: bold;
    opacity: 0.8;
    z-index: 4;
}

.quote-bubble-center::after {
    content: '"';
    position: absolute;
    bottom: 1px;
    right: 120px;
    font-size: 5rem;
    color: #00bfff;
    font-family: serif;
    font-weight: bold;
    opacity: 0.8;
    z-index: 4;
}

.quote-bubble-center p {
    color: var(--text-light);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.quote-bubble-center strong {
    color: var(--text-light);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sección de síntesis narrativa */
.narrative-synthesis-part1,
.narrative-synthesis-part2,
.eva-technology {
    background-image: url('assets/images/JORDI\ SALA\ DE\ EDICION.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
}

.narrative-synthesis-part1 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.narrative-synthesis-part2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.synthesis-content {
    padding: 3rem;
}

.section-title-center {
    font-family: var(--font-franklin);
    font-size: 2.5rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.synthesis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 1rem 2rem;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.objective-text {
    flex: 1;
    min-width: 300px;
}

.objective-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.narrative-synthesis-part1 p,
.narrative-synthesis-part2 p {
    color: var(--text-light);
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 1200px;
}

.narrative-synthesis-part1 strong,
.narrative-synthesis-part2 strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Sección 7 - E.V.A - Estilo futurista con efectos de neón */
.eva-technology {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 4rem 2rem;
    z-index: 1;
}

.eva-container {
    max-width: 500px;
    width: 100%;
}

.eva-visual {
    text-align: center;
}

.byte-logo-large {
    font-family: var(--font-franklin);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-byte {
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-pink);
    animation: neonPink 3s ease-in-out infinite alternate;
}

.logo-prompt {
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 30px var(--neon-blue);
    animation: neonBlue 3s ease-in-out infinite alternate;
}

@keyframes neonPink {
    from { text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink); }
    to { text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 40px var(--neon-pink); }
}

@keyframes neonBlue {
    from { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue); }
    to { text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--neon-blue); }
}

@keyframes neonPulse {
    from { 
        text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
        opacity: 0.9;
    }
    to { 
        text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 40px var(--neon-pink);
        opacity: 1;
    }
}

.eva-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.red-dot {
    width: 25px;
    height: 25px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 30px #ff0000;
}

@keyframes pulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
        box-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000;
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    }
}

.eva-office-image {
    text-align: center;
    position: relative;
}


@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.eva-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 128, 0.3);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 50px rgba(0, 255, 255, 0.1);
}

.eva-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.eva-description {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.eva-description strong {
    color: var(--neon-blue);
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-blue);
}

.eva-signature {
    text-align: right;
    font-size: 1.1rem;
    color: var(--neon-blue);
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* === ESTILO TIPO GALARDÓN (como imagen de referencia) === */
.awards-section {
    background: url('assets/images/background_section_2.webp') center/cover no-repeat;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  /* ===== Ajustes finos para tarjetas de premios (sin tocar HTML) ===== */
  
  /* Mejora contraste del card sobre el mármol */
  .award-item{
    background: rgba(0,0,0,.28);
    backdrop-filter: brightness(.95) blur(1px);
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,.28);
    padding: .25rem .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Estilos para las imágenes de premios */
  .award-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
  }
  
  
  /* === Awards Carousel (layout con áreas + 1/2/3 visibles) === */
  .awards-carousel{
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    grid-template-areas:
      "prev viewport next"
      "dots  dots    dots";
    align-items: center;
    gap: 0.75rem 0.75rem;
    max-width: min(1200px, 92vw);
    margin-inline: auto;
    margin-bottom: 1.5rem;
  }
  .awards-nav.prev{ grid-area: prev; justify-self: center; }
  .awards-viewport{ grid-area: viewport; overflow: hidden; border-radius: 16px; outline: none; }
  .awards-nav.next{ grid-area: next; justify-self: center; }
  .awards-dots{ grid-area: dots; display:flex; gap:.55rem; justify-content:center; padding-top:.25rem; }
  
  /* Track: FLEX + gap variable */
  .awards-track{
    --gap: 1.25rem;
    display: flex;
    gap: var(--gap);
    padding: 0.5rem 0.25rem;
    transition: transform 400ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
  }
  
  /* Slides: base 1 por vista (mobile) */
  .awards-slide{
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
  
  /* Tablet: 2 por vista */
  @media (min-width: 768px){
    .awards-slide{
      flex-basis: calc((100% - var(--gap)) / 2);
    }
  }
  
  /* Desktop: 3 por vista */
  @media (min-width: 1024px){
    .awards-slide{
      flex-basis: calc((100% - (2 * var(--gap))) / 3);
    }
  }
  
  /* Flechas: tamaño consistente + focus ring custom */
  .awards-nav{
    appearance: none;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    width: 48px; height: 48px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    outline: none;
  }
  .awards-nav:hover{ transform: scale(1.05); background: rgba(255,255,255,.12); }
  .awards-nav:active{ transform: scale(.96); }
  .awards-nav:focus{ outline: none; }
  .awards-nav:focus-visible{
    box-shadow:
      0 0 0 2px rgba(255,255,255,.9),
      0 0 0 6px rgba(255,255,255,.25);
  }
  
  /* Dots */
  .awards-dot{
    width: 12px; height: 12px; border-radius: 999px;
    background: rgba(255,255,255,.3);
    border: 1px solid rgba(255,255,255,.5);
    cursor: pointer;
    transition: transform .15s ease;
  }
  .awards-dot:hover{ transform: scale(1.1); }
  .awards-dot[aria-selected="true"]{ background: #fff; }
  
  /* Snap centrado */
  .awards-viewport{ scroll-snap-type: x mandatory; }
  
  /* ===== Responsive adicionales ===== */
  @media (max-width: 900px){
    .awards-carousel{ grid-template-columns: 44px 1fr 44px; }
    .awards-nav{ width: 44px; height: 44px; }
  }
  @media (max-width: 640px){
    .awards-carousel{ grid-template-columns: 40px 1fr 40px; }
    .awards-nav{ width: 40px; height: 40px; }
  }
  
  /* Título de la sección */
  .awards-main-title{
    color:#fff; text-align:center; font-weight:900; letter-spacing:.01em;
    margin-bottom: clamp(18px, 3.2vw, 36px);
    text-shadow: 0 2px 18px rgba(0,0,0,.55);
    font-size: 5rem;
  }

  
  
  
  
  

/* Sección de galería final */
.final-gallery {
    background-image: url('assets/images/end_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    z-index: 1;
}

/* Contenedor (puedes dejar tu posicionamiento) */
.social-media-icons{
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
  
  /* Botón tipo “glass” neutro (sin tintes por marca) */
  .social-icon{
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 15px; box-sizing: border-box; overflow: hidden;
    background: rgba(255,255,255,.08);                /* vidrio sutil */
    border: 2px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    outline: none;
  }
  .social-icon:hover{
    transform: translateY(-1px) scale(1.05);
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
  }
  .social-icon:active{ transform: scale(.96); }
  .social-icon:focus{ outline: none; }
  .social-icon:focus-visible{
    box-shadow:
      0 0 0 2px rgba(255,255,255,.95),
      0 0 0 6px rgba(255,255,255,.28),
      0 8px 24px rgba(0,0,0,.35);
  }
  
  /* La imagen real del icono: SIN filtros para mantener colores oficiales */
  .social-icon img{
    width: 50px; height: auto; display: block; object-fit: contain;
    filter: none !important;              /* <- clave */
    -webkit-filter: none !important;      /* <- Safari */
    mix-blend-mode: normal;               /* evita mezclas raras */
    image-rendering: auto;
  }
  
  /* Si querías mantener variantes por red, solo para el marco (sin teñir el icono): */
  .social-icon.instagram{ border-color: rgba(225,48,108,.45); }
  .social-icon.tiktok{    border-color: rgba(255,0,80,.40); }
  .social-icon.x,
  .social-icon.twitter{   border-color: rgba(29,161,242,.40); }
  .social-icon.email{     border-color: rgba(0,255,200,.35); }
  
  /* Mobile: un toque más chico */
  @media (max-width: 640px){
    .social-icon{ width: 52px; height: 52px; }
    .social-icon img{ width: 24px; height: 24px; }
  }
  
  /* Por si aún te queda el placeholder antiguo en el HTML */
  .icon-placeholder{ display:none !important; }
  

/* Footer legal */

.legal-content {
    text-align: center;
    max-width: 1200px;
    margin: -4rem auto;
    padding: 2rem;
    font-weight: bold;
}

/* === FONDOS RESPONSIVOS POR SECCIÓN === */

/* Sección 2 - Evaluación Antropológica Parte 1 */
.anthropological-evaluation {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/images/lobby-dec2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
}

/* Sección 3 - Evaluación Antropológica Parte 2 */
.anthropological-evaluation-part2 {
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/images/lobby-dec2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
}

/* Sección 4 - Perfil de Jordi La Mola */
.character-profile-section-part1 {
    background-image: url('assets/images/Jordi\ sala\ de\ reuniones.webp');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
    height: 150vh;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Secciones 6 ya definidas arriba con EVA */

/* Sección 7 - E.V.A (ya tiene fondo asignado) */
/* Sección 8 - Premios (ya tiene fondo asignado) */
/* Sección 9 - Galería Final (ya tiene fondo asignado) */

/* Fondos mobile específicos */
@media (max-width: 768px) {
    .main-header {
        background-image: url('assets/images/looby_2\ \(1\).webp');
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        min-height: 100vh;
        height: 100vh;
        padding: 3rem 1rem;
    }
    
    .anthropological-evaluation,
    .anthropological-evaluation-part2 {
        background-image: url('assets/images/looby_2\ \(1\).webp');
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        min-height: 100vh;
    }
    
    .character-profile-section-part1 {
        background-image: url('assets/images/Diseño\ sin\ título.jpg');
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        /*background-color: #000; */
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        position: relative;
    }
    
    .profile-container.imagen-container {
        position: absolute;
        bottom: 30%;
        right: 0;
        left: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        pointer-events: none;
    }
    
    .profile-container.imagen-container .quote-bubble-center {
        max-width: 400px;
        width: auto;
        padding: 1rem 1.25rem;
        margin: 0;
        margin-bottom: -12rem;
    }
    
    .profile-container.imagen-container .quote-bubble-center p {
        font-size: clamp(0.85rem, 2.8vw, 1rem);
        line-height: 1.5;
    }
    
    /* Comillas más pequeñas en móviles */
    .quote-bubble-center::before {
        font-size: 2.5rem;
        top: -5px;
        left: 5px;
    }
    
    .quote-bubble-center::after {
        font-size: 2.5rem;
        bottom: -15px;
        right: 5px;
    }
    
    .profile-container.second-parrafo {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        /*background-color: #000;*/
    }
    
    .profile-container.second-parrafo .quote-bubble-center {
        width: 100%;
    }
    
    .profile-container.second-parrafo .quote-bubble-center p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.7;
    }
    
    .narrative-synthesis-part1,
    .narrative-synthesis-part2,
    .eva-technology {
        background-image: url('assets/images/Jordi\ oficina.webp');
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        min-height: 100vh;
    }
    
    .eva-technology {
        align-items: center;
        justify-content: center;
        padding: 3rem 1rem;
    }
    
    .awards-section {
        background-image: url('assets/images/background_section_2.webp');
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
    
    .final-gallery {
        background-image: url('assets/images/Adam museo.webp');
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scroll-nav {
        right: 1rem;
    }
    
    .profile-container,
    .eva-container,
    .gallery-container {
        gap: 2rem;
        display: flex;
        flex-direction: column-reverse;
    }

    
    /* Ajustes para hero section en tablet/laptop pequeño */
    .official-announcement {
        top: 70%;
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }
    
    .statement-text {
        bottom: 8rem;
        font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    }
    
    .scroll-indicator {
        bottom: 2.5rem;
    }
}

/* Ajuste específico para pantallas entre 790-900px */
@media (max-width: 900px) {
    .official-announcement {
        top: 70%;
        font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    }
    
    .statement-text {
        bottom: 8rem;
        top: auto;
        font-size: clamp(1rem, 2.6vw, 1.4rem);
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 768px) {
    /* Asegurar que el contenido no se salga en mobile */
    .anthropological-evaluation,
    .anthropological-evaluation-part2,
    .narrative-synthesis-part1,
    .narrative-synthesis-part2,
    .awards-section {
        padding: 3rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .character-profile-section-part1 {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 100vh;
    }
    
    .synthesis-header {
        flex-direction: column;
        text-align: center;
    }
    
    .character-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .character-image-placeholder {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/3;
    }
    
    .character-shadow {
        width: 160px;
        height: 35px;
    }

    /* Ajustes para perfil de Jordi en móviles - ya definidos arriba */
    .scroll-nav {
        right: 0.5rem;
        gap: 0.5rem;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-dot.active {
        width: 12px;
        height: 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .shape {
        filter: blur(40px);
    }
    
    .shape-1,
    .shape-3 {
        width: 300px;
        height: 300px;
    }
    
    .shape-2,
    .shape-4 {
        width: 200px;
        height: 200px;
    }
    
    .section-title,
    .section-title-center,
    .awards-main-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .evaluation-content,
    .character-content,
    .eva-content {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .evaluation-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .character-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-media-icons {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1.5rem;
        gap: 1rem;
    }
    .legal-content {
        text-align: center;
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    .official-announcement {
        font-size: 2rem;
        top: 70%;
        width: 90%;
    }
    
    .statement-text {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        line-height: 1.6;
        bottom: 5rem;
        top: auto !important;
        width: 85%;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 3rem;
    }
    
    .section-title,
    .section-title-center {
        font-size: clamp(1.3rem, 4vw, 2rem);
        padding: 0 1rem;
        line-height: 1.3;
    }
    
    .evaluation-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .evaluation-content p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.7;
    }
    
    .eva-content {
        margin: 0 auto;
        padding: 2rem 1.5rem;
        max-width: 90%;
        width: 100%;
    }
    
    .eva-container {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }
    
    .eva-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .eva-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.7;
    }
    
}


@media (max-width: 480px) {
    .main-header {
        padding: 2rem 0.75rem;
        min-height: 100vh;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .anthropological-evaluation,
    .anthropological-evaluation-part2,
    .narrative-synthesis-part1,
    .narrative-synthesis-part2,
    .awards-section {
        padding: 2rem 0.75rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .eva-technology {
        padding: 2rem 0.75rem;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
    }
    
    .final-gallery {
        padding: 2rem 0.75rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .section-frame {
        padding: 0;
    }
    
    .evaluation-content {
        padding: 1.25rem;
        margin: 0.5rem;
    }
    
    .evaluation-content p {
        font-size: clamp(0.85rem, 2.8vw, 1rem);
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    
    .evaluation-content strong {
        font-size: inherit;
        font-weight: 700;
    }
    
    .character-image-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .character-image-placeholder {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-icon img {
        width: 24px;
        height: 24px;
    }
    
    .official-announcement {
        font-size: 1.5rem;
        top: 64%;
        width: 90%;
    }
    
    .statement-text {
        font-size: clamp(0.95rem, 3.8vw, 1.3rem);
        line-height: 1.6;
        bottom: 5rem;
        top: auto !important;
        width: 90%;
    }
    
    .hero-content {
        padding: 1.5rem 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .section-title,
    .section-title-center,
    .awards-main-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .scroll-indicator {
        margin-top: 1.5rem;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
    
    .eva-content {
        padding: 1rem;
        margin: 0 auto;
        max-width: 95%;
        width: 100%;
    }
    
    .eva-container {
        max-width: 100%;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .eva-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .eva-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.65;
    }
    
    .character-shadow {
        width: 120px;
        height: 25px;
    }
    
    .character-profile-section-part1 {
        background-image: url('assets/images/Diseño\ sin\ título.jpg');
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        /*background-color: #000; la */
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        position: relative;
    }
    
    .profile-container.imagen-container {
        position: absolute;
        bottom: 30%;
        right: 0;
        left: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 0.75rem 1.5rem 0.75rem;
        pointer-events: none;
    }
    
    .profile-container.imagen-container .quote-bubble-center {
        pointer-events: auto;
        margin-bottom: -12rem;
    }
    
    .profile-container.imagen-container .quote-bubble-center p {
        font-size: clamp(0.8rem, 2.6vw, 0.95rem);
        line-height: 1.45;
        margin-top: 11px;
    }
    
    /* Comillas aún más pequeñas en pantallas muy pequeñas */
    .quote-bubble-center::before {
        font-size: 4rem;
        top: 14rem;
        left: 14rem;
    }
    
    .quote-bubble-center::after {
        font-size: 4rem;
        top: -7px;
        left: 7px;
    }
    
    .profile-container.second-parrafo {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 50vh;
        padding: 1.5rem 0.75rem;
    }
    
    .profile-container.second-parrafo .quote-bubble-center {
        width: 95%;
        max-width: 250px;
        padding: 2rem 1.5rem;
    }
    
    .profile-container.second-parrafo .quote-bubble-center p {
        font-size: clamp(0.95rem, 3.2vw, 1.1rem);
        line-height: 1.65;
    }
    
    .character-signature {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .legal-content {
        padding: 1.5rem 0.75rem 0px 0.75rem;
        margin: 2rem auto 0px auto;
    }
    
    .legal-content p {
        font-size: 10px;
        line-height: 1.6;
        margin-bottom: 110px;
    }
}

/* Estilos específicos para desktop */
@media (min-width: 769px) {
    /* Sección de EVA - posicionada más a la izquierda */
    .eva-technology {
        align-items: flex-end;
        justify-content: center;
        padding: 4rem 2rem;
    }
    
    .eva-container {
        max-width: 500px;
        margin-right: 15%;
    }
    
    .eva-content {
        padding: 2rem;
    }
    
    .eva-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .eva-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .eva-signature {
        font-size: 1rem;
    }
    
    /* Sección de Jordi - párrafos más pequeños y a la izquierda */
    .character-profile-section-part1 .profile-container.imagen-container {
        position: absolute;
        bottom: 25%;
        left: 15%;
        min-height: auto;
        padding: 0 2rem;
    }
    
    .character-profile-section-part1 .profile-container.imagen-container .quote-bubble-center {
        width: auto;
        padding: 1.2rem;
        margin-left: 32rem;
        margin-bottom: -7rem;
    }
    
    .character-profile-section-part1 .profile-container.imagen-container .quote-bubble-center p {
        font-size: 1.2rem;
        line-height: 1.6;
    }
    
    .character-profile-section-part1 .profile-container.second-parrafo {
        position: absolute;
        bottom: 3%;
        left: 25%;
        min-height: auto;
        padding: 0 2rem;
    }
    
    .character-profile-section-part1 .profile-container.second-parrafo .quote-bubble-center {
        max-width: 500px;
        width: auto;
        padding: 1.5rem 2rem;
    }
    
    .character-profile-section-part1 .profile-container.second-parrafo .quote-bubble-center p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}
