.projeto-header {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    justify-content: flex-start; /* sobe conteúdo */
    padding-top: 8rem;           /* controla posição */
}

.projeto-header h4 {
    color: var(--cor-principal);
    letter-spacing: 2px;
    font-weight: 500;
}

.projeto-header h1 {
    font-size: 3rem;
    color: #fff;
}

.projeto-header h1 span {
    color: var(--cor-principal);
}

.projeto-header p {
    color: var(--cor-texto-secundario);
    max-width: 600px;
}

/* --- SETA --- */

.arrow-container-privacidade {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -150px;
}

.scroll-down-arrow {
    font-size: 2rem;
    color: var(--cor-principal);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* --- CONTEÚDO --- */

.secao-detalhe {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;   /* mantém leitura natural */
}

/* Títulos */
.secao-detalhe h2 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
}

/* Linha decorativa sutil */
.secao-detalhe h2::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 8px;
    width: 4px;
    height: 20px;
    background-color: var(--cor-principal);
    border-radius: 5px;
}

/* Texto */
.secao-detalhe p {
    color: var(--cor-texto-secundario);
    margin-bottom: 1rem;
}

/* Destaque para termos importantes */
.secao-detalhe strong {
    color: #fff;
    font-weight: 500;
}

/* --- ESPAÇAMENTO EXTRA ENTRE BLOCOS --- */
.secao-detalhe br {
    display: none; /* remove uso de <br> e deixa o layout mais limpo */
}

.secao-detalhe h2 + p {
    margin-bottom: 1.5rem;
}

/* --- RESPONSIVO --- */

@media (max-width: 768px) {

    .projeto-header h1 {
        font-size: 2.2rem;
    }

    .secao-detalhe {
        padding: 0 1rem;
    }

    .arrow-container-privacidade {
        margin-top: -40px;
    }

    .secao-detalhe h2::before {
        left: -10px;
    }
}