header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e8d2c3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 1000;
    margin-top: -35px;
    width: 100%;
    

}

.container {
    margin-top: 439px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99%;
    height: 720px;
}

 .slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.slide .item:nth-child(3) {
    left: 50%;
}

.slide .item:nth-child(4) {
    left: calc(50% + 220px);
}

.slide .item:nth-child(5) {
    left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}
button {
    border-radius: 20px;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
    border-radius: 20px;
}

.button button:hover {
    background: #ababab;
    color: #fff;
}


button {
    border-radius: 10px;
    border: none;
    width: 100px;
    background-color: #e8d2c3;
}

.publicacoes {
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    margin-top: -280px;
    margin-top: 30px;
 
}

.publicacao {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    width: 100%;
    margin: 20px 10px 0 10px;
}
.publicacao:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.publicacao-imagem {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.publicacao-conteudo {
    padding: 1.5rem;
}

.publicacao-titulo {
    color: #5c2d2d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.publicacao-texto {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.publicacao-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.publicacao-autor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.autor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.autor-nome {
    color: #ff69b4;
    font-weight: 500;
}

.publicacao-data {
    color: #999;
    font-size: 0.9rem;
}

.publicacao-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #f0e6ef;
    color: #ff69b4;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #ff69b4;
    color: white;
}

/* Animações */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Estilização da barra de rolagem */
.publicacoes::-webkit-scrollbar {
    width: 8px;
}

.publicacoes::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.publicacoes::-webkit-scrollbar-thumb {
    background: #ff69b4;
    border-radius: 4px;
}

.publicacoes::-webkit-scrollbar-thumb:hover {
    background: #ff1493;
}

/* Responsividade */
@media (max-width: 768px) {
    .publicacoes {
        padding: 1rem;
    }

    .publicacao-imagem {
        height: 200px;
    }

    .publicacao-titulo {
        font-size: 1.2rem;
    }
}

.titulo-servicos {
    text-align: center;
    color: #5c2d2d;
    font-size: 1.9rem;
    font-weight: 600;
    margin: 2rem auto;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe6 100%);
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(92, 45, 45, 0.1);
    width: fit-content;
    letter-spacing: 1px;
    border: 2px solid #e8d2c3;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    margin-top: -200px;
    margin-bottom: -40px;
}

.titulo-servicos::before,
.titulo-servicos::after {
    content: '';
    height: 2px;
    background: #e8d2c3;
    flex: 1;
    min-width: 100px;
}

.titulo-servicos::before {
    margin-right: 1rem;
}

.titulo-servicos::after {
    margin-left: 1rem;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}