body {
    font-family: 'Poppins', sans-serif;
}
.smooth-scroll {
    scroll-behavior: smooth;
}
/* Estilos do Modal */
.modal {
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}
.modal.open {
    pointer-events: auto;
    opacity: 1;
    z-index: 9999;
}
.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}
.modal-body {
    white-space: pre-wrap;
}
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.clickable-post {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.clickable-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* Estilos para links no conteúdo */
.content-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #c7d2fe;
    transition: all 0.3s ease;
}

.content-link:hover {
    color: #3730a3;
    background-color: #eef2ff;
    border-bottom-color: #4f46e5;
}

/* Melhorar a aparência do botão Acessar */
.photos-button {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
}

.photos-button:hover {
    background: linear-gradient(135deg, #3730a3, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}