/* ==========================================================================
   ESTILOS DA PÁGINA DE COLEÇÕES (EDITORIAL)
   ========================================================================== */

.colecao-main {
    background-color: rgba(255, 255, 255, 0.4); /* Fundo escuro para destacar a vibe noturna/urbana */
    color: #fff;
    padding-bottom: 80px;
}

/* 1. CAPA PARALLAX */
.colecao-hero {
    height: 100vh;
    width: 100%;
    /* Usei uma foto escura do lookbook para a capa */
    background-image: url('../img/PRODUTOS-20260225T163230Z-1-001/FOTOS SITE-PRODUTOS/Lookbook/2.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax (a foto fica parada enquanto a tela desce) */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.colecao-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Escurece a foto para o texto aparecer */
    z-index: 1;
}

.hero-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-conteudo h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255);
}

.hero-conteudo p {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #b4b4b4; /* Verde neon da marca */
}

/* 2. MANIFESTO */
.colecao-manifesto {
    padding: 100px 20px;
    background-color: #0c0c0c;
    display: flex;
    justify-content: center;
}

.manifesto-texto {
    max-width: 800px;
    text-align: center;
}

.manifesto-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: 2px;
}

.manifesto-texto p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #aaa;
}

/* 3. VITRINE ZIG-ZAG */
.colecao-editorial {
    display: flex;
    flex-direction: column;
    gap: 0; /* Coladas umas nas outras */
}

.editorial-row {
    display: flex;
    width: 100%;
    min-height: 80vh;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Inverte a ordem: Imagem vai pra direita, camiseta pra esquerda */
.editorial-row.invertido {
    flex-direction: row-reverse;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Lado da foto do ensaio */
.editorial-lifestyle {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.editorial-lifestyle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.8s ease;
}

.editorial-row:hover .editorial-lifestyle img {
    transform: scale(1.05); /* Zoom lento na foto ambiente */
}

/* Lado da camiseta em PNG */
.editorial-produto {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.produto-flutuante {
    width: 100%;
    max-width: 450px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.produto-flutuante img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.8)); /* Dá a sensação de que a camiseta está "flutuando" */
    transition: transform 0.4s ease;
}

/* A camiseta sobe um pouco quando passa o mouse */
.editorial-row:hover .produto-flutuante img {
    transform: translateY(-15px);
}

.produto-textos {
    text-align: center;
    margin-top: 30px;
}

.produto-textos h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.produto-textos p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 30px;
}

.btn-editorial {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-editorial:hover {
    background-color: #646464;
    color: #000;
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 900px) {
    .hero-conteudo h1 { font-size: 3rem; }
    
    /* Quebra o zig-zag, fica a foto do ensaio em cima e a roupa embaixo */
    .editorial-row, .editorial-row.invertido {
        flex-direction: column;
    }

    .editorial-lifestyle, .editorial-produto {
        width: 100%;
    }

    .editorial-lifestyle {
        height: 60vh; /* Foto do ensaio ocupa metade da tela */
    }

    .editorial-produto {
        padding: 60px 20px;
    }
}