@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            color: inherit;
            cursor: url(Img/cursor.png), auto;
        }

        :root {
            --cor1: #F6F6F6;
            --cor2: #E6b800;
            --cor3: #1B3B32;
            --cor4: #4E7358;
            --cor5: #A5C9A1;
        }

        body {
            background-color: #F6F6F6;
            font-family: "Be Vietnam Pro", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 18px;
            color: #1B3B32;
        }

        img  {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    }

        header {
            background-color: #F6F6F6;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            width: 100%;
            height: auto;
            align-items: center;
            justify-content: space-between;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 800;
            font-style: normal;
            padding: 1rem;
            position: relative;
        }

        .logo {
            width: 20%;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .logo img {
            max-width: 100%;
            height: auto;
        }

        nav {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            width: 60%;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            font-family: "Playfair Display", serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
            font-size: 20px;
        }

        nav a {
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--cor2);
        }

        .icons {
            width: 20%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .icons img {
            width: clamp(24px, 2.5vw, 32px);
            height: clamp(24px, 2.5vw, 32px);
            transition: transform 0.3s ease;
        }

        .icons img:hover {
            transform: scale(1.1);
        }

/* Botão Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--cor3);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .logo {
        width: 25%;
    }

    nav {
        width: 50%;
        gap: 1.5rem;
        font-size: 18px;
    }

    .icons {
        width: 25%;
        gap: 1.5rem;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        position: relative;
        z-index: 1001;
    }

    .logo {
        width: 40%;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--cor1);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        font-size: 22px;
    }

    nav.active {
        right: 0;
    }

    .icons {
        position: fixed;
        bottom: 3rem;
        right: -100%;
        width: 70%;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .icons.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 50%;
    }

    nav {
        width: 80%;
        font-size: 20px;
    }

    .icons {
        width: 80%;
    }
}