@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

body {
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to top, #ffe0e9, #d1e0ff);
}

.whatsapp a {
    background-color: transparent;
    border-color: transparent;
    border-radius: 2vw;
    margin: 3vw;
    bottom: 0;
    right: 0;
    z-index: 1000;
    position: fixed;
    scale: 1.5;
}

.whatsapp img {
    width: 48px;
    animation: pulse 2.5s infinite;
}

.menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    display: flex;
    background-color: transparent;
}

#menu {
    padding: 0 5vw 0 3vw;
    width: 100vw;
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
}

#menu-icon img {
    width: 13vw;
}

#menu-btns {
    display: flex;
    align-items: center;
}

#menu-btns button:hover,
#menu-btns a:hover {
    color: lightgray;
}

#menu button {
    margin-left: 3vw;
    color: white;
    font-family: 'Poppins', sans-serif;
    border-color: transparent;
    font-size: 1.65vw;
    background-color: transparent;
}

#menu a,
.demo a {
    text-decoration: none;
    color: white;
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidebar button,
.sidebar a {
    border-color: transparent;
    background-color: transparent;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    margin-bottom: 5vw;
}

.sidebar button:hover,
.sidebar a:hover {
    color: #f1f1f1;
}


footer {
    background: white;
    padding-top: 1.5vw;
    color: black;
    font-size: 0.96vw;
    line-height: 1.6;
    position: relative;
}

.footer-container {
    margin: 0 9vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-infos {
    width: 100%;
}

.infos {
    display: flex;
    justify-content: center;
    margin: 0 2vw;
    font-size: 1vw;
}

.footer-title,
.footer-buttons,
.footer-location,
.footer-message {
    flex: 1;
    width: 15vw;
    margin: 0.6vw;
}

.footer-title h1 {
    font-size: 2.5vw;
}

.footer-buttons ul {
    list-style: none;
    padding: 0;
}

.footer-buttons li,
.footer-location p,
.footer-message p {
    margin: 0.5vw 0;
}

.footer-buttons a {
    text-decoration: none;
    color: black;
}

.demo {
    display: flex;
    justify-content: center;
}

.demo button {
    border-radius: 0.5vw;
    background: black;
    color: white;
    padding: 0.7vw 1.4vw;
    border: none;
    cursor: pointer;
    font-size: 1vw;
    margin: 2vw;
}

.footer-bar {
    border-top: 0.05vw solid #000000;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.bottom-bar {
    padding-top: 1.2vw;
}

.bottom-bar ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.bottom-bar ul li {
    margin: 0 2vw 0 1.5vw;    
}

.social {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0.7vw 1.4vw;
    border-radius: 2vw;
    border: none;
    cursor: pointer;
    font-size: 0.95vw;
}

.social a {
    margin-right: 0.7vw;
}

.social img {
    width: 2vw;
}





.loading {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}

.loading i {
    font-size: 3vw;
    color: white;
}

.centralize {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .whatsapp a {
        margin: 6vw;
    }

    .menu {
        padding: 2vw;
        gap: 54.5vw;
        background-color: rgba(0, 0, 0, 0.7);
    }

    #menu {
        padding: 0;
        height: 15vw;
        width: 100%;
        background-color: transparent;
    }

    #menu-icon img {
        width: 30vw;
    }

    .footer-container {
        margin: 0;
        justify-content: center;
    }

    .infos {
        flex-direction: column;
        font-size: 4vw;
    }

    .footer-title,
    .footer-buttons,
    .footer-location,
    .footer-message {
        width: 100%;
        text-align: center;
    }
    .footer-title h1 {
        font-size: 5vw;
    }

    .bottom-bar,
    .footer-buttons {
        display: none;
    }
    
    .demo button {
        border-radius: 2vw;
        padding: 1.5vw 3vw;
        font-size: 4vw;
        margin: 0 0 6vw 0;
    }
    .footer-bar {
        justify-content: center;
    }

    .social {
        gap: 3vw;
        margin: 3vw 0 -5vw 0;
    }

    .social img {
        width: 8vw;
    }
}

@media (max-width: 480px) {

    /* Mobile-specific adjustments */
    #menu {
        gap: 5vw;
    }

    #menu button {
        font-size: 2.5vw;
        margin-bottom: 1vw;
    }



    footer .social img {
        width: 8vw;
    }

}