

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #f5f7fa;
            color: #333;
        }

        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, .75);
            backdrop-filter: blur(8px);
            z-index: 999;
        }

        .menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
        }

        .logo {
            color: #fff;
            font-size: 26px;
            font-weight: bold;
        }

        .logo span {
            color: #32d74b;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin-left: 25px;
            transition: .3s;
        }

        nav a:hover {
            color: #32d74b;
        }

        .botao {

            display: inline-block;
            background: #32d74b;
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: .3s;
        }

        .botao:hover {

            background: #22b53b;
            transform: translateY(-3px);
        }

        section {

            padding: 80px 0;
        }

        .titulo {

            text-align: center;
            font-size: 38px;
            margin-bottom: 50px;
            color: #0b4b84;
        }

        .cards {

            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .card {

            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            transition: .3s;
        }

        .card:hover {

            transform: translateY(-8px);
        }

        .card i {

            font-size: 45px;
            color: #32d74b;
            margin-bottom: 15px;
        }

        footer {

            background: #0b4b84;
            color: white;
            text-align: center;
            padding: 35px;
        }

        .whatsapp {

            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
        }

            #parceiros{

                background:#ffffff;
                padding:80px 0;

            }

            .subtitulo{

                text-align:center;
                color:#777;
                margin-top:-25px;
                margin-bottom:45px;
                font-size:17px;

            }

            .parceiros{

                display:grid;
                grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
                gap:30px;

            }

            .patrocinador{

                background:#fff;
                border-radius:15px;
                padding:25px;
                display:flex;
                justify-content:center;
                align-items:center;
                box-shadow:0 8px 20px rgba(0,0,0,.08);
                transition:.3s;

            }

            .patrocinador:hover{

                transform:translateY(-8px);

                box-shadow:0 15px 35px rgba(0,0,0,.15);

            }

            .patrocinador img{

                max-width:200px;
                max-height:160px;
                /**filter:grayscale(100%);/**/
                opacity:.8;
                transition:.3s;

            }

            .patrocinador:hover img{

                filter:none;
                opacity:1;

            }