/* Footer */
footer {
    background: #d9b176;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 22px 0;
    border-top: 3px solid #b98a55;
    font-size: 0.9rem;
}

.icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 30px;
    color: white;
    background-color: #333;
    border-radius: 50%;
    margin: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
    transition: transform 0.5s ease;
}

.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook:hover {
    background-color: #1877f2;
}

.whatsapp:hover {
    background: radial-gradient(circle at 30% 100%, #20bd5a 100%);
}

@media (max-width: 820px) {
    footer {
        height: 150px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    footer p {
        font-size: 0.6rem;
    }
}