* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --black: #000000;
    /*grey-group*/
    --background-grey: #F2F2F2;
    --light-grey: #D9D9D9;
    /*brown-group*/
    --dark-brown: #5B3A29;
    --light-brown: #B78B6A;
    /*green-group*/
    --olive-green: #6C8B57;
    --dark-green: #3C5A3B;
    /*beige-group*/
    --dark-beige: #D2C6A9;
    --light-beige: #E8D8C5;
    /*yellow-group*/
    --golden-yellow: #C2A94C;
    --light-yellow: #F2D96A;
    /*blue-group*/
    --dark-blue: #1E3A6D;
    --light-blue: #A2C2D4;
    /*red-group*/
    --dark-red: #A34128;
    --light-red: #D84F3A;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    background-color: var(--background-grey);
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

html {
    scroll-behavior: smooth;
}

/******************************* Header **********************************/

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    transition: background .3s ease;
    user-select: none;
}

.test {
    background: var(--dark-brown);
}

.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
    color: transparent;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
}

.header-btn {
    border: none;
    background-color: transparent;
    color: var(--light-brown);
    cursor: pointer;
}

.language-select {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-select .btn-icon,
.sing-up .btn-icon {
    font-size: 2rem;
}

.language-option {
    font-size: 1.2rem;
}

.header-logo img {
    max-height: 4vh;
    width: auto;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 60px;
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    width: 30%;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(40px);
    border-right: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, rgba(255, 255, 255, .2));
    text-align: center;
    transition: .5s all;
}

.nav-menu.active {
    right: 0;
}

.nav-item {
    margin: 16px auto;
}

.nav-item:first-child {
    margin-top: 100px;
}

.nav-link {
    transition: .5s;
    color: var(--light-brown);
    font-weight: 500;
    font-size: 1.6rem;
}

.nav-link:hover {
    color: var(--dark-brown);
}

.menu-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items:end;
    justify-content: center;
    gap: 5px;
    width: 100px;
}

.menu-icon.active .line:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.line {
    width: 25px;
    height: 3px;
    background-color: var(--light-brown);
    transition: all .5s ease-in-out;
    border-radius: 50px;
}

/******************************* Footer ************************************/

footer {
    margin-top: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-brown);
    height: 30svh;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    width: 70%;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-brown);
}

.footer-link {
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: var(--light-brown);
    font-size: 1rem;
    font-weight: 300;
}

.footer-link:hover {
    font-weight: 600;
}

.social {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 2rem;
}

.fa-brands {
    color: var(--light-brown);
    width: 2.5rem;
    text-align: center;
    transition: color .2s ease-in-out;
}

.fa-whatsapp:hover{
    color: #25d366;
}

.fa-linkedin-in:hover{
    color: #0e76a8;
}

.fa-instagram:hover{
    color: #E1306C;
}

.fa-youtube:hover{
    color: #FF0000;
}

.fa-square-facebook:hover{
    color: #1877F2;
}

.fa-tiktok:hover{
    color: #000000;
}

.footer-btn {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: solid 2px;
}

.discover-brave {
    background-color: var(--dark-brown);
    border-color: var(--light-brown);
    color: var(--light-brown);
    transition: all 0.2s ease;
}

.discover-brave:hover {
    background-color: var(--light-brown);
    border-color: var(--light-brown);
    color: var(--dark-brown);
}

.buy-now {
    background-color: var(--light-brown);
    border-color: var(--light-brown);
    color: var(--dark-brown);
    transition: all 0.2s ease;
}

.buy-now:hover {
    background-color: var(--dark-brown);
    border-color: var(--light-brown);
    color: var(--light-brown);
}

.logo-btn-group {
    display: flex;
    flex-direction: column;
}

.footer-btn-group {
    display: flex;
    gap: 10px;
}

.footer-logo {
    width: 15svw;
    float: right;
    margin: 30px 0;
}

/******************************* PopUp-area ************************************/
/* Login pop-up */

.popup-area {
    display: flex;
    justify-content: center;
    letter-spacing: 0;
}

.login-popup {
    position: fixed;
    visibility: hidden;
    transform: scale(0);
    width: 400px;
    height: 600px;
    background-color: var(--white);
    border-radius: 20px;
    text-align: center;
    transition: .3s ease-in;
    left: calc(50% - 200px);
    z-index: 10;
    top: 8vh;

    /* Alinhando verticalmente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.open-popup {
    visibility: visible;
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-brown);
    cursor: pointer;
    transition: .5s;
}

.close-btn:hover {
    color: var(--light-brown);
}

.popup-logo {
    width: 100px;
}

.popup-title {
    font-weight: 500;
}

.login-btn-group {
    margin: 15px 0 5px 0;
}

.login-option {
    background-color: var(--white);
    border: solid 1px rgba(0, 0, 0, 0.5);
    width: 96px;
    height: 50px;
    border-radius: 10px;
}

.login-option .logo {
    width: 30px;
}

.google-btn {
    margin: 0 10px;
}

.separation {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
}

.separation-text {
    margin: 0 15px;
}

.separation-line {
    height: 1px;
    width: 123px;
    background-color: var(--black);
    opacity: 0.3;
}

.popup-options {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.login-options a {
    text-decoration: underline;
}

.input-section {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input {
    display: flex;
    flex-direction: column;
}

.input-title {
    text-align: left;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
}

.input input {
    padding: 10px;
    font-size: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-chk {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.popup-btn {
    border: none;
    background-color: var(--dark-brown);
    color: var(--light-beige);
    width: 200px;
    height: 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: .5s all;
}

.popup-btn:hover {
    background-color: var(--light-brown);
    color: var(--dark-brown);
}

.forgot-password {
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-weight: 400;
    color: var(--dark-brown);
}

.forgot-password:hover {
    color: var(--light-brown);
}

/* Sing-up pop-up */
.singup-area {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.login-area {
    margin-bottom: 10px;
}

.popup-link {
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-weight: 500;
    color: var(--dark-brown);
}

.popup-link:hover {
    color: var(--light-brown);
}

.singup-popup {
    position: fixed;
    visibility: hidden;
    transform: scale(0);
    width: 400px;
    height: 750px;
    background-color: var(--white);
    border-radius: 20px;
    text-align: center;
    transition: .3s ease-in;
    left: calc(50% - 200px);
    z-index: 10;
    top: 8vh;

    /* Alinhando verticalmente */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.singup-password:first-child{
    margin-bottom: 20px;
}

.password-area {
    margin-bottom: 10px;
}

.open-Singup {
    visibility: visible;
    transform: scale(1);
}

.full-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.name-area input {
    max-width: 142px;
}

.phone-input-area {
    display: flex;
    flex-direction: row;
    max-width: 300px;
    gap: 15px;
}

.ddd-input {
    width: 25%;
}

.phone-input {
    width: 70%;
}

@media (max-width: 1550px) {
    .footer-btn-group {
        flex-direction: column;
    }
}

@media (max-width: 1320px) {
    .footer-enterprise {
        display: none;
    }
}

@media (max-width: 1010px) {
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    footer {
        height: auto;
        padding: 30px 0;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .logo-btn-group {
        align-items: center;

    }

    .footer-btn-group{
        width: 60%;
    }

    .footer-logo {
        width: 50%;
        float: none;
        margin-top: 20px;
    }
}

@media (max-width: 535px) {
    .footer-btn-group {
        width: 90%;;
    }
}