

/* --- ESTILOS SECCIÓN INTERACTIVA (FOTOS MOUSE) --- */
#seccion-fotos {
    position: relative;
    height: 100vh;
    background-color: #1d413d;
    color: #fff;
    overflow: hidden;
    cursor: crosshair;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#seccion-fotos h2 {
    font-size: 4rem;
    z-index: 10;
    margin: 0;
    text-transform: uppercase;
    pointer-events: none;
    mix-blend-mode: difference;
}

#seccion-fotos p {
    font-size: 1.2rem;
    z-index: 10;
    margin-top: 20px;
    opacity: 0.8;
    pointer-events: none;
}

.trail-image {
    position: absolute;
    width: 350px;
    height: auto;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: popFade 3.5s ease-out forwards;
}
