
.piePag {
    background-color: #EFF2F5;
    color: #0e3e67;
    padding: 30px 0 20px;
    margin-top: 5%;
    margin-bottom: -6%;
    grid-row: 3;
}

.piePag-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.piePag-logo {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    color: #0e3e67;
}

    .piePag-logo:hover {
        color: #0e3e67;
        transform: translateY(-2px);
    }

    .piePag-logo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #0e3e67;
        transition: width 0.3s ease;
    }

    .piePag-logo:hover::after {
        width: 100%;
    }

.piePag-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.piePag-link {
    color: #0e3e67;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
    animation: unset 200ms;
}

    .piePag-link:hover {
        transform: scale(1.1);
        color: #0e3e67;
    }



.piePag-divider {
    width: 4px;
    height: 4px;
    background-color: #7a8ca0;
    border-radius: 50%;
}

.piePag-copyright {
    color: #a0aec0;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

