.wrap {
    margin: auto;
    max-width: 1510px;
    width: calc(100% - 40px);
}

* {
    font-family: "Work Sans", sans-serif;
}


body {
    margin: 0;
    padding: 0;
    background-color: #ff9500;
    /* Naranja igual al diseño */
}


.main-header {
    background-color: #f6f6f6;
    margin: 32px 75px;
    padding: 0 px 20px;
}


.header-container {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}


.logo img {
    height: 100px;
    margin-bottom: 2px;
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: color .3s ease;
}

.nav-menu a:hover {
    color: #000;
}

footer {
    background-color: #0F385B;
    text-align: center;
    padding: 40px 0;
}