:root{
    --primary-color: #642a3b;
    --primary-light: #e1acbc5e;
    --primary-extra-light: #e1acbc0f;
    --primary-dark: #4d1021;
    --light-gray: #f6f6f6;
    --dark-gray:#aaa;
    --white: #fff;
    --black: #000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
h1,h2,h3,h4,h5,h6{
    color: var(--primary-color);
    line-height: 150%;
}
p{
    line-height: 150%;
}
a{
    text-decoration: none;
    color: inherit;
}
table{
    color: inherit;
}
header{
    position: fixed;
    top: 0;
    width: 100vw;
    padding: 1rem;
    gap: 2rem;
    z-index: 100;
    transition: top .3s ease-in-out;
}
header, nav{
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
.header-white-bg{
    background-color: #fff;
    box-shadow: 0 0 10px #000;
}
.logo{
    /* color: #fff; */
    font-size: 1.5rem;
}
nav{
    padding: 0 1rem;
    background-color: #000000cc;
    border-radius: 10px;
    color: #fff;
}
nav a{
    padding: 1rem;
    transition: background-color .3s ease-in-out;
}
nav a:hover{
    background-color: var(--primary-color)
}
.mobile-menu{
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    display: none;
    cursor: pointer;
}
.mobile-menu-close-btn{
    display: none;
}
.primary-btn, .secondary-btn{
    border:none;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: fit-content;
    transition: background-color .15s ease-in-out;
    font-size: 18px;
    cursor: pointer;
}
.primary-btn:hover{
    background-color: var(--primary-dark);
}
.secondary-btn{
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 10px;
}
.secondary-btn:hover{
    color: var(--white);
    background-color: var(--primary-color);
}
.nav-primary-btn{
    margin: 0 1rem;
}
.nav-login-btn{
    background: transparent;
    transition: all 0.3s ease-in-out;
}
aside{
    min-width: 300px;
    max-width: 300px;
    background-color: white;
    padding: 2rem 1rem;
    margin: 100px 1rem 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
aside a{
    padding: 1rem;
    transition: all .3s ease-in-out;
    border-radius: 5px;
}
aside a:hover, aside a:focus{
    background-color: var(--primary-color);
    color: var(--white);
}
footer{
    padding: 3rem 1rem;
    background-color: var(--primary-dark);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
footer>*{
    padding: 1rem;
}
footer h3{
    padding: 1rem 0;
    color: #fff;
}
footer table td{
    padding: 5px 0px;
    word-break: break-all;
}
footer table td:not(:first-child){
    padding: 5px;
}
.footer-links{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: all .3s ease-in-out;
}
.footer-links>*{
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .3s ease-in-out;
    position: relative;
}
/* .footer-links>*::before{
    font-family: "Font Awesome 5 Free";
    content: "\f679";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
    transition: color .3s ease-in-out;
} */
.footer-links>*:hover::before{
    color: red;
}
.footer-links>*::after{
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    transition: width .3s ease-in-out;
}
.footer-links>*:hover::after{
    width: 18px;
    border-bottom: 2px solid red;
}
.footer-links>*:hover{
    color: var(--white);
}
.fixed-floating-icons{
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 999;
}
.fixed-floating-icons>*{
    box-shadow: 0 0 10px #666666cc;
    transition: all .3s ease-in-out;
}
.fixed-floating-icons>*:hover{
    transform: scale(110%);
}
.whatsapp-floating-button{
    width: 64px;
    height: 64px;
    background-color: #075e54;
    color: #fff;
    padding: 1rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:1270px) {
    header{
        flex-direction: row-reverse;
        justify-content: flex-end;
        background-color: #0000006b;
        box-shadow: 0 0 10px #000000cc;
        color: #fff;
    }
    .header-white-bg{
        color: unset;
    }
    .header-white-bg .mobile-menu{
        color: unset;
    }
    .mobile-menu{
        display: block;
        color: #fff;
    }
    nav{
        border-radius: 0;
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        position: absolute;
        width: 300px;
        height: 100vh;
        top: 0;
        left: -350px;
        padding: 0;
        background-color: #fff;
        box-shadow: 0px 0px 10px 0px #000000cc;
        transition: all .3s ease-in-out;
    }
    nav a{
        display: block;
        padding: 1rem;
        transition: all .3s ease-in-out;
    }
    nav a:hover{
        background-color: var(--primary-color);
        color: #fff;
    }
    .nav-primary-btn{
        margin: 1rem;
    }
    .mobile-menu-close-btn{
        display: block;
        background-color: transparent;
        border: none;
        font-size: 1.5rem;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
    }

}

@media screen and (max-width:330px) {
    .logo{
        font-size: 1.4rem;
    }
    footer{
        justify-content:flex-start;
    }
}