:root {
    --main-brand: #25B6DA;
    --aux-brand: #C2F3FF;
    --aux-brand-dark: #89b7c4;
    --tert-brand: #ADFFEF;
    --alt-brand: #A8FFC1;
    --highlight: #FFFFFF;

    --main-text: #242424;
    --aux-text: #727272;
    --tert-text: #AEAEAE;
    --alt-text: #dadada;

    --success: #68CD85;
    --success-highlight: #ddffe7;
    --warning: #D7BC53;
    --warning-highlight: #fff8db;
    --error: #D75353;
    --error-highlight: #ffd9d9;

    --whatsapp: #25d366;
}

* {
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: var(--alt-brand);
    color: var(--main-brand);
}

/* Estilizações de Status */

.btn-indisponivel {
    background-image: none !important;
    background-color: var(--alt-text) !important;
    color: var(--tert-text) !important;
    cursor: not-allowed !important;
}

body {
    margin: 0;
    background-color: var(--highlight);
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    padding: 2em;
    padding-bottom: 0;
    background-color: var(--main-brand);
    color: var(--highlight);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

header h1 {
    color: var(--highlight);
    font-size: 1rem;
    margin: 0;
}

.menu-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 1em;
}

.logo-sintese {
    max-width: 200px;
}

.menu-container ul {
    text-decoration: none;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-container li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.menu-container li:hover {
    transition: all 0.3s ease-in-out;
    color: var(--aux-brand);
}

.menu-container li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.submenu-container {
    align-self: flex-end;
}

.submenu-container ul {
    margin: 0;
    text-decoration: none;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.submenu-container li {
    font-size: 0.8em;
    color: var(--warning-highlight);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.submenu-container li:hover {
    transition: all 0.3s ease-in-out;
}

footer {
    background-color: var(--main-brand);
    color: var(--highlight);
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-text {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.footer-contato {
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer-sobrenos {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#footer-wppIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25d366;
    font-size: 1.2em;
    padding: 5px;
    border-radius: 100%;
}

#footer-phoneIcon {
    background-color: var(--highlight);
    font-size: 1em;
    padding: 5px;
    border-radius: 100%;
    color: var(--aux-text);
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.social-icons i {
    font-size: 1.2em;
    padding: 5px;
    border-radius: 10px;
}

#footer-instaIcon {
    background: linear-gradient(to bottom, #833ab4, #c13584, #fcaf45);
}

#footer-lnkdIcon {
    background: white;
    color: #0077b5;
}

#footer-ytIcon {
    background: white;
    color: #ff0000;
}

@media (max-width: 700px) {
    header {
        align-items: center;
    }

    .header-menu {
        padding: 0;
    }

    .header-menu ul {
        align-items: space-around;
    }

    .header-menu li {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.8em;
    }

    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-container ul {
        justify-content: center;
        gap: 10px;
    }

    .menu-container li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .card-container {
        justify-content: center;
    }

    .footer-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .footer-section>div {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }
}

@media (max-width: 600px) {
}

@media (max-width: 500px) {
    .footer-section {
        align-items: center;
    }

    .footer-section>div {
        flex-direction: column;
    }

    #footer-sobrenos {
        align-items: center;
    }
}