

header {
    height: var(--header-height);
    background-color: var(--bg-primary);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid var(--cta);
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

header .logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
}
header .logo svg{
    fill: var(--bg-secondary);
}
header .logo svg:hover{
    fill: var(--cta);
}

nav {
    transition: ease-in-out 500ms;
}

nav ul {
    display: flex;
}

nav ul li:hover {
    color: var(--bg-primary);
    cursor: pointer;
    background-color: var(--cta);
}

nav ul li a, .whatsapp, nav ul li a:visited {
    color: var(--bg-secondary);
    width: 100%;
    height: 100%;
    padding: 10px;
}


nav ul li a:hover, .nav ul li a:visited {
    text-decoration: underline;
    color: var(--bg-primary);
}

.menu {
    display: none;
}

a {
    font-weight: bold;
    border-radius: 5px;
}
header button i {
    font-size: 1.2em;
    padding: 5px 2px;
}

.cta {
    background-color: var(--cta);
    padding: 12px 10px;
    border-radius: 8px;
    color: var(--bg-primary);
    border: 1px solid var(--cta-secondary);
}

.cta:hover {
    background-color: var(--cta-secondary);
    border-color: var(--cta);
}

footer {
    text-align: center;
    background-color: var(--bg-secondary);
    color: var(--bg-primary);
    padding: 3rem 0;
}

footer .copy {
    margin-top: 1em;
    font-size: 1.2em;
    padding: 4rem 0;
    text-decoration: underline;
}
footer .wrapper {
    border-top: 1px solid var(--bg-primary);
}

footer .copy a {
    text-decoration: underline;
    cursor: pointer;
}

@media only screen and (max-width: 1100px) {

:root {
    --header-height: 90px;
}

header nav {
    position: fixed;
    width: 100%;
    background-color: var(--bg-primary)!important;
    padding: 0;
    z-index: 99;
    display: unset;
    border-radius: unset;
    top: var(--header-height);
}

header nav ul{
    flex-direction: column;
    background-color: var(--bg-primary);
    
}

header nav {
    right: 100vw;
}

header nav.active {
    right: 0;
}
header nav ul li{
    text-align: center;
    padding: 0.5rem;
    margin: 0;
}

header nav ul li a,
header nav ul li span {
    display: block;
    width: 100%;
    margin: 0;
}
.menu {
    display: unset;
}

header, .header-wrapper {
    justify-content: space-around;
}

}

@media only screen and (max-width: 500px) {
    .cta {
        font-size: 0.9em;
    }

    footer .copy {
        margin-top: 1em;
        font-size: 0.8em;
    }
}

@media only screen and (max-width: 360px) {
    .cta {
        font-size: 0.6em;
    }
}