@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;&display=swap');

* {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal; */

    padding: 0;
    margin: 0;
}

.whatsapp-content{
    bottom: 5rem;
}

.whatsapp-button {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-button:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    width: 45px;
    height: auto;
}

/* navbar */

#logo {
    width: 70px;
    height: auto;
}

.navbar-nav {
    text-align: center;
}

.custom-nav-link {
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

.custom-nav-link:hover {
    text-decoration: none;
    color: black;
    padding: 8px 15px;
    border-radius: 10px;
    background-color: white;
}

@media (max-width: 992px) {

    .custom-nav-link {
        text-decoration: none;
        color: white;
        border-radius: 10px;
        transition: 0.3s;
        border: 1px solid white;
        width: 100%;
        display: block !important;
    }

}

/* Footer/rodapé */

.footer {
    background-color: #2C2F33;
    color: #FFFFFF;
    padding: 40px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    color: #00A650;
}

.footer .social-icons a {
    margin: 0 10px;
    font-size: 1.5rem;
}

.copyright {
    background-color: #00A650;
    color: #FFFFFF;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00A650;
    color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    cursor: pointer;
}

#logo-footer {
    width: 100px;
    height: auto;
}

#desenvolvedor {
    color: white;
}