:root {
    --moreschi: #7A75B5;
    --moreschi-dark: #625d9c;

    --text: #343434;
    --text-light: #777777;

    --background: #f7f7f8;
    --white: #ffffff;

    --whatsapp: #25D366;
    --whatsapp-dark: #20bd5a;

    --page-padding: clamp(20px, 3.5vw, 65px);
}


/* =========================================================
   GERAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    color: var(--text);

    background-color: var(--background);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: var(--background);
}

.site-header .navbar {
    min-height: 82px;

    padding-top: 10px;
    padding-bottom: 10px;

    padding-left: var(--page-padding);
    padding-right: var(--page-padding);

    background: var(--background);
}

.navbar-brand img {
    width: 175px;
    max-height: 62px;

    object-fit: contain;
}

.site-header .nav-link {
    padding-left: 14px !important;
    padding-right: 14px !important;

    color: #444444 !important;

    font-size: 13px;
    font-weight: 400;

    transition: color .2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--moreschi) !important;
}

.dropdown-menu {
    border: 0;

    border-radius: 6px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.dropdown-item {
    padding: 10px 20px;

    font-size: 13px;
}


/* =========================================================
   TÍTULOS PADRÃO
   ========================================================= */

.section-header {
    margin-bottom: 42px;

    text-align: center;
}

.section-header h1,
.section-header h2 {
    margin: 0;

    font-size: 30px;
    font-weight: 400;

    letter-spacing: .5px;
}

.section-line {
    width: 48px;
    height: 3px;

    margin: 14px auto 0;

    background: var(--moreschi);
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn-moreschi,
.btn-moreschi-outline {
    min-width: 180px;

    padding: 12px 22px;

    margin-right: 8px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 400;

    letter-spacing: .3px;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}


/* BOTÃO ROXO */

.btn-moreschi {
    color: var(--white);

    background: var(--moreschi);

    border: 1px solid var(--moreschi);
}

.btn-moreschi:hover {
    color: var(--white);

    background: var(--moreschi-dark);

    border-color: var(--moreschi-dark);

    text-decoration: none;
}


/* BOTÃO CONTORNO */

.btn-moreschi-outline {
    color: var(--moreschi);

    background: transparent;

    border: 1px solid var(--moreschi);
}

.btn-moreschi-outline:hover {
    color: var(--white);

    background: var(--moreschi);

    text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-principal {
    padding: 65px 0 45px;

    background: var(--white);
}

.footer-col {
    margin-bottom: 25px;
}

.footer-logo {
    display: block;

    width: 175px;
    max-width: 100%;

    margin-bottom: 20px;
}

.footer-certificado {
    max-width: 120px;
}

.footer-col h5 {
    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 500;
}

.footer-col p,
.footer-link {
    color: #666666;

    font-size: 13px;
    font-weight: 300;

    line-height: 1.8;
}

.footer-link:hover {
    color: var(--moreschi);

    text-decoration: none;
}

.footer-col p i,
.footer-link i {
    width: 20px;

    color: var(--moreschi);
}


/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.footer-social {
    display: flex;

    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--moreschi);

    border-radius: 50%;

    text-decoration: none;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.footer-social a:hover {
    color: var(--white);

    background: var(--moreschi-dark);

    transform: translateY(-2px);
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copy {
    padding: 18px 0;

    color: var(--white);

    background: var(--moreschi);

    text-align: center;

    font-size: 12px;
    font-weight: 300;
}

.footer-copy a {
    color: var(--white);
}

.footer-copy a:hover {
    color: var(--white);
}


/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1200;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--whatsapp);

    border-radius: 50%;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .25);

    font-size: 30px;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.whatsapp-float:hover {
    color: var(--white);

    background: var(--whatsapp-dark);

    text-decoration: none;

    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    :root {
        --page-padding: 20px;
    }


    .site-header .navbar {
        min-height: 74px;
    }


    .navbar-brand img {
        width: 150px;
    }


    .navbar-collapse {
        padding-top: 15px;
        padding-bottom: 15px;
    }


    .site-header .nav-link {
        padding: 10px 5px !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 767px) {

    :root {
        --page-padding: 18px;
    }


    .site-header .navbar {
        padding-left: var(--page-padding);
        padding-right: var(--page-padding);
    }


    .navbar-brand img {
        width: 140px;
    }


    .section-header {
        margin-bottom: 32px;
    }


    .section-header h1,
    .section-header h2 {
        font-size: 24px;
    }


    .footer-principal {
        padding-top: 50px;
    }


    .footer-col {
        text-align: center;
    }


    .footer-logo,
    .footer-certificado {
        margin-left: auto;
        margin-right: auto;
    }


    .footer-social {
        justify-content: center;
    }


    .footer-copy {
        padding-left: 15px;
        padding-right: 15px;

        line-height: 1.7;
    }


    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;

        font-size: 27px;
    }

}