.btn-return-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--background-light);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(44, 139, 176, 0.1);
    position: absolute;
    top: 30px;
    left: 5%;
    z-index: 10;
}

.btn-return-home svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn-return-home:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.btn-return-home:hover svg {
    transform: translateX(-3px);
}

@media screen and (max-width: 768px) {
    .btn-return-home {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
}

