    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar {
        position: fixed;
        z-index: 1000;
        width: 100%;
    }
    .container {
        margin-top: 80px;
    }
    .fa-solid {
        display: flex;
    }


    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }



    .image-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        width: 90%;
        max-width: 1200px;
        margin: 20px 0;
    }

    .card {
        display: flex;
        flex-direction: column;
        background: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .card img {
        width: 100%;
        height: 90%;
        display: block;
    }

    .card-body {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .card-body .btn {
        margin-left: 5px;
        background-color: #0073e6;
    }


    .card-body .btn:hover {
        background-color: #0260bd;
    }

    .author {
        font-weight: bold;
    }

    .description {
        font-size: 13px;
    }

    .troca-paginas {
        position: fixed;
        bottom: 0;
        z-index: 1000;
        width: 100%;
        text-align: center;
    }

    .text-warning {
        font-weight: bold;
    }
