@media (min-width: 800px) {
    nav {
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav .logo {
        background-image: url(/assets/images/logo_mapfre.svg) !important;
        width: 200px;
        height: 50px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    nav .phone {
        display: flex;
        color: var(--primary);
        font-weight: bold;
        gap: 10px;
    }

    nav .phone img {
        width: 20px;
    }
}