﻿.ft-os {
    font-family: 'Open Sans', sans-serif;
}

.ft-rb {
    font-family: 'Roboto Slab', sans-serif;
}

.text-gray {
    color: #716F6A;
}

.text-roxo {
    color: #7B2D8F;
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, .2);
}

* {
    font-family: 'Inter', sans-serif;
}

.ps-container {
    max-width: 1320px;
    padding: 0 2rem;
}

.ps-banner {
    border-radius: 16px;
}

.box {
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 18px;
}

    .box .icon {
        width: 48px;
        height: 48px;
        text-align: center;
        border-radius: 14px;
        background-color: rgba(255, 255, 255, .2);
        line-height: 48px;
        font-size: 20px;
    }

        .box .icon.roxo {
            background: linear-gradient(180deg, #7B2D8F 0%, #5A1F6A 100%);
            color: white;
        }

        .box .icon.vermelho {
            background: linear-gradient(180deg, #E4002B 0%, #C20024 100%);
            color: white;
        }

        .box .icon.laranja {
            background: linear-gradient(180deg, #FF863B 0%, #ED3C00 100%);
            color: white;
        }

        .box .icon.roxo2 {
            background: #9B4DAF;
            color: white;
        }

        .box .icon.gray {
            background: #4A4A4A;
            color: white;
        }

    .box.roxo {
        background: linear-gradient(180deg, #7B2D8F 0%, #5A1F6A 100%);
    }

    .box.vermelho {
        background: linear-gradient(180deg, #E4002B 0%, #C20024 100%);
    }

    .box.laranja {
        background: linear-gradient(180deg, #FF863B 0%, #ED3C00 100%);
    }

    .box .subtitulo {
        font-size: 14px;
        font-weight: 400;
        opacity: .9;
    }

    .box .titulo {
        font-size: 26px;
        font-weight: 700;
        line-height: 40px;
    }

    .box .progress {
        background-color: rgba(255, 255, 255, .3);
        height: 7px;
        border-radius: 4px;
    }

    .box .progress-bar {
        background-color: white;
    }

.ps-btn {
    border-radius: 8px;
    text-align: center;
}

    .ps-btn.ps-btn-white {
        background-color: white;
        color: gray;
    }

.box .ps-btn--outline {
    background-color: rgba(255,255,255, .2);
    border-color: rgba(255,255,255,.3);
    color: white;
}

.box.branco {
    color: #4A4A4A;
}

.box.fundo {
    background-color: #f5f5f5;
    background-image: var(--bg);
    background-position: center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
}

.box.branco .icon {
    font-size: 32px;
    width: 72px;
    height: 72px;
    line-height: 72px;
}

.h2 {
    position: relative;
    padding-left: 20px;
    color: #4A4A4A;
    font-family: Inter;
    font-size: 45px;
    font-weight: 700;
}

    .h2 small {
        font-size: 20px;
        display: block;
    }

    .h2:before {
        position: absolute;
        content: '';
        width: 5px;
        top: 5px;
        bottom: 27px;
        border-radius: 3px;
        background: linear-gradient(180deg, #7B2D8F 0%, #E4002B 100%);
        left: 0;
    }

.bg-roxo {
    background-color: rgba(138, 61, 158, .1);
}

.bg-colorido {
    border-radius: 16px;
    background: linear-gradient(92deg, #5F2167 29.08%, #E30613 98.25%);
}

    .bg-colorido .padding {
        padding: 60px;
        color: white;
        line-height: 1.5;
    }

    .bg-colorido .titulo {
        font-size: clamp(1.875rem, 1.1413rem + 3.2609vw, 3.75rem);
    }

    .bg-colorido .subtitulo {
        font-size: clamp(1.25rem, 0.8832rem + 1.6304vw, 2.1875rem);
        line-height: 1.5;
    }

    .bg-colorido .lista {
        padding-left: 30px;
        position: relative;
        font-size: clamp(1.25rem, 1.0054rem + 1.087vw, 1.875rem);
    }

        .bg-colorido .lista:before {
            position: absolute;
            content: '\2713';
            text-align: center;
            line-height: 24px;
            width: 24px;
            height: 24px;
            border-radius: 10px;
            background: rgba(255,255,255,.2);
            color: #fff;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

.slogan {
    color: white;
    font-family: "Barlow Condensed";
    font-size: 33.419px;
    font-weight: 400;
    text-transform: uppercase;
}

    .slogan b {
        font-weight: 800;
        font-family: inherit;
    }

.header {
    background: linear-gradient(180deg, #702082 0%, #52284F 100%);
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    z-index:100;
}

    .header .top-menu {
        
    }

    .header.header--sticky {
        background: linear-gradient(180deg, #702082cc 0%, #52284Fcc 100%);
        backdrop-filter: blur(6px);
    }

        .header.header--sticky .top-menu {
            display: none;
        }

        .header form input[type=text] {
            width: 275px;
            height: 40px;
            padding: 0 16px 0 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.90);
            color: #6A7282;
        }

    .header .form-group {
        position: relative;
    }

        .header .form-group label {
            position: absolute;
            color: #6A7282;
            left: 0;
            top: 50%;
            width: 40px;
            text-align: center;
            transform: translateY(-50%);
            opacity: 1;
            z-index: 1;
            background: none;
            border: none;
        }

    .header .logo {
        display: block;
        margin-bottom: -100px;
        width: 180px;
    }

    .header .soft {
        background-color: rgba(255,255,255,.1);
        border-radius: 10px;
        padding: 4px 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: white;
        line-height: 1.2;
    }

.navigation {
    background: none;
}

.header nav {
    display: flex;
    justify-content: space-between;
}

    .header nav > div {
        flex: 0 1 auto;
    }

    .header nav .dropdown > a {
        color: #fff;
        font-family: 'Roboto Slab', sans-serif;
        display: block;
        padding: 5px 5px 15px;
        border-bottom: 5px solid transparent;
        font-size: 20px;
    }

.header nav .dropdown:hover .dropdown-menu {
    display: block;
}

.header nav .dropdown:hover > a {
border-bottom-color: #EF3B25;
}

.header .dropdown-menu {
    backdrop-filter: blur(6px);
    background-color: rgba(255,255,255,.9);
    font-size: 2rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
}

.header nav .dropdown-item {
    color: #4A4A4A;
    padding: 1.2rem 2rem;
}

.header nav .dropdown-item:active {
    background-color: #7B2D8F;
    color: #fff;
}

    .header nav .dropdown-item:hover {
        background-color: transparent;
        color: black;
    }

.dropdown.profile {
    height: 100%;
}

.dropdown.profile .dropdown-menu {
    border-radius: 10px;    
}

    .dropdown.profile:hover .fa-2x {
        color: #ffc107;
    }

.dropdown.profile:hover .dropdown-menu {
    display: block;
    transform: translateX(calc(-100% + 48px));
    width: 250px;
}

    .dropdown.profile .profile-holder {
        position: relative;
        margin: 10px auto;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        overflow: hidden;
    }

    .dropdown.profile .profile-holder a {
        position: absolute;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 80px;
        height: 80px;
        opacity: 0;
        transition: opacity linear .3s;
        color: #7B2D8F;
    }
        .dropdown.profile .profile-holder a:hover {
            opacity: 1;
        }

        .dropdown.profile .dropdown-item {
            background-color: transparent;
            padding: .85rem 2rem;
        }
            .dropdown.profile .dropdown-item:hover {
                color: #7B2D8F;
            }

a.logo {
    margin-top: 20px;
}

a.logo img {
    height: 130px;
    transition: height linear .3s;
}
.home a.logo img {
    height: 200px;
}

.header.header--sticky a.logo img {
    height: 80px;
}

.header-filler {
    height: 135px;
}

