/* Container Base do Lookbook */
.lookbook-container {
    width: 100%;
    background-color: #050505; /* Fundo quase preto, bem estética street/dark */
    color: #fff;
}

/* Hero Section - A capa do Lookbook */
.lookbook-hero {
    position: relative;
    width: 100%;
    height: 90vh; /* Ocupa quase a tela toda */
    background-image: url('../img/Piense/4.jpg'); /* Sugestão: a foto de noite no posto de gasolina */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Degrade sobre a capa */
.lookbook-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.lookbook-hero-texto {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lookbook-hero-texto h2 {
    font-size: 6vw; /* Cresce com a tela */
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    -webkit-text-stroke: 1px #fff; /* Contorno no texto */
}

.lookbook-hero-texto p {
    font-size: 20px;
    letter-spacing: 5px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.4); /* Aquele tom de verde neon que tem na bandeira do seu ensaio */
}

/* --- Letreiro Street (Marquee) --- */
.street-marquee {
    width: 100%;
    background-color: #cacaca; /* Verde neon da bandeira */
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Grid Editorial Denso (O Segredo das 25 Fotos) --- */
.lookbook-gallery {
    display: grid;
    /* Cria colunas automáticas de no mínimo 250px. O 'dense' encaixa as fotos nos buracos */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 350px; 
    grid-auto-flow: dense; 
    gap: 15px;
    padding: 30px 15px;
    max-width: 100%;
    margin: 0 auto;
}

/* Estrutura de cada foto no Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    cursor: crosshair; /* Cursor de mira, bem usado no streetwear */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(20%) contrast(1.1); /* Dá uma textura levemente crua/urbana */
}

.gallery-item:hover img {
    transform: scale(1.03); 
    filter: grayscale(0%) contrast(1.2); /* Acende as cores ao passar o mouse */
}

/* Tamanhos variados para a colagem */
.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* --- Responsividade Mobile --- */
@media (max-width: 768px) {
    .lookbook-gallery {
        display: flex; 
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }
    .gallery-item {
        height: 500px; 
    }
    .lookbook-hero-texto h2 {
        font-size: 40px;
    }
}
/* --- Indicador de Rolagem (Scroll Down) --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px; /* Cola o aviso na parte de baixo da capa */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
}

/* Criação da setinha só com CSS */
.arrow-down {
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff; /* Usa o verde neon para destacar */
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite; /* Animação para chamar atenção */
}

/* Animação da setinha "quicando" */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}
/* --- Ajuste de Foco para a Foto 24 (Wide) --- */
.foco-camiseta {
    /* "center" mantém centralizado nas laterais */
    /* "20%" empurra o foco mais para o topo (onde fica a camiseta) */
    object-position: center 20%; 
}