.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
}

 *{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family:'Roboto', sans-serif;
            background:#f3f3f3;
            overflow-x:hidden;
        }

        :root{
            --primary:#a21a1e;
            --secondary:#5BA6E6;
            --light:#f7f7f7;
        }

        /* =========================
            TOP HEADER
        ==========================*/

        .top-header{
            background:#fff;
            padding:20px 0;
        }

        .top-header span {
            margin-top: 0.5em;
            color: #a21a1e;
            font-weight: 600;
        }

        .logo img {
            width: 150px;
            height: auto;
        }

        .social-icons a{
            width:42px;
            height:42px;
            background:var(--primary);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            border-radius:8px;
            text-decoration:none;
            transition:.3s;
        }

        .social-icons a:hover{
            background:var(--secondary);
        }

        /* =========================
            NAVBAR
        ==========================*/

        .main-navbar{
            background:var(--primary);
            height:70px;
            display:flex;
            align-items:center;
            position:sticky;
            top:0;
            z-index:999;
        }

        .navbar-nav .nav-link {
            color:#fff !important;
            font-family:'Oswald', sans-serif;
            font-size:14px;
            margin-right:20px;
            position:relative;
            transition:.3s;
        }

        .navbar-nav .nav-item.active .nav-link::after{
            width:100%;
            border-bottom: 4px solid #00a747;
        }

        .navbar-nav .nav-link::after{
            content:'';
            position:absolute;
            bottom:-10px;
            left:0;
            width:0%;
            height:3px;
            background:#00a747;
            transition:.3s;
        }

        .navbar-nav .nav-link:hover::after{
            width:100%;
        }

        #active {
            position:absolute;
            bottom:-10px;
            left:0;
            width:0%;
            height:3px;
            background:#00a747;
        }

        .resultado-btn{
            background:#00a747;
            border:none;
            padding:14px 35px;
            border-radius:40px;
            color:#fff;
            font-family:'Oswald', sans-serif;
            font-size:18px;
        }

        /* =========================
            HERO
        ==========================*/

        .hero{
            position:relative;
            height:auto;
            overflow:hidden;
        }

        .hero .splide__slide{
            position:relative;
            height:auto;
        }

        .hero .splide__slide img{
            width:100%;
            height: auto;
            object-fit:cover;
        }

        .hero-overlay{
            position:absolute;
            inset:0;
            z-index:2;
        }

        .hero-content{
            position:absolute;
            z-index:5;
            top:50%;
            transform:translateY(-50%);
            width:100%;
            color:#fff;
        }

        .hero-title{
            font-size:80px;
            font-family:'Oswald', sans-serif;
            line-height:0.9;
            text-transform:uppercase;
            font-weight:700;
            opacity:.95;
        }

        .hero-title span{
            color: #fff100;
        }

        .hero-subtitle{
            font-size:24px;
            font-weight:400;
            margin-top:20px;
            max-width:600px;
        }

        .hero-button{
            margin-top:10px;
            display:inline-flex;
            align-items:center;
            gap:12px;
            border:2px solid #fff;
            padding:16px 30px;
            border-radius:60px;
            color:#fff;
            text-decoration:none;
            font-size:16px;
            transition:.3s;
        }

        .hero-button:hover{
            background:#fff;
            color:var(--primary);
        }

        /* =========================
            RESULTADO
        ==========================*/

        .resultado-section{
            background:var(--primary);
            padding:35px 0;
            margin-top:-5px;
        }

        .resultado-title{
            color:#fff;
            font-family:'Oswald', sans-serif;
            font-size:40px;
            line-height:1;
        }

        .resultado-title span{
            color:#00a747;
            font-weight:300;
        }

        .resultado-sub{
            color:#ffffff;
            font-size:18px;
        }

        .resultado-form input{
            height:60px;
            border:none;
            border-radius:16px;
            padding-left:20px;
            outline:none;
        }

        .resultado-form button{
            height:60px;
            border:none;
            background:#00a747;
            color:#fff;
            border-radius:40px;
            font-family:'Oswald', sans-serif;
            font-size:20px;
            transition:.3s;
        }

        .resultado-form button:hover{
            opacity:.9;
        }

        /* =========================
            SERVIÇOS
        ==========================*/

        .services{
            margin-top: 2em;
            padding:50px 0;
            background:#f5f5f5;
            position:relative;
        }

        .section-title{
            text-align:center;
            font-family:'Oswald', sans-serif;
            font-size:42px;
            color:var(--primary);
            margin-bottom:15px;
        }

        .section-subtitle{
            text-align:center;
            color:#888;
            margin-bottom:70px;
        }

        .service-card{
            background:#fff;
            border:2px solid #a21a1e;
            border-radius:18px;
            padding:70px 35px 40px;
            margin-bottom: 2em;
            position:relative;
            height:100%;
            transition:.3s;
            box-shadow:0 10px 30px rgba(0,0,0,.08);
        }

        .service-card:hover{
            transform:translateY(-10px);
        }

        .service-icon{
            width:110px;
            height:110px;
            background:#fff;
            border-radius:50%;
            position:absolute;
            top:-55px;
            left:50%;
            transform:translateX(-50%);
            border:2px solid #a21a1e;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:42px;
            color:var(--primary);
            box-shadow:0 10px 25px rgba(0,0,0,.12);
        }

        .service-card h3{
            font-family:'Oswald', sans-serif;
            font-size:42px;
            color:var(--primary);
            margin-bottom:20px;
        }

        .service-card h4 {
            color:#a21a1e;
        }

        .service-card span{
            color:#00a747;
        }

        .service-card p{
            color:#777;
            font-size:14px;
            line-height:1.8;
        }

        .service-card a{
            color:#a21a1e;
            text-decoration:none;
            font-weight:600;
        }

        /* =========================
            CONTATO
        ==========================*/

        .contact{
            background:#efefef;
            padding:50px 0;
            position:relative;
            overflow:hidden;
        }

        .contact-bg{
            position:absolute;
            font-size:240px;
            color:#d9f1ff;
            top:40px;
            left:50%;
            transform:translateX(-50%);
            font-family:'Oswald', sans-serif;
            z-index:1;
        }

        .contact-content{
            position:relative;
            z-index:5;
        }

        .contact h2{
            font-family:'Oswald', sans-serif;
            font-size:70px;
            color:var(--primary);
            margin-bottom:30px;
        }

        .contact-form input,
        .contact-form textarea{
            border:none;
            border-radius:30px;
            padding:18px 25px;
            margin-bottom:18px;
            width:100%;
            outline:none;
        }

        .contact-form button{
            border:none;
            background:#00a747;
            color:#fff;
            width:100%;
            padding:18px;
            border-radius:40px;
            font-size:22px;
            font-family:'Oswald', sans-serif;
        }

        /* =========================
            FOOTER
        ==========================*/

        footer{
            background:#bdbdbd;
            padding:50px 0;
            color:#000000;
        }

        footer img {
            width: 150px;
            height: auto;
        }

        /* =========================
            WHATSAPP
        ==========================*/

        .whatsapp{
            position:fixed;
            right:25px;
            bottom:25px;
            width:70px;
            height:70px;
            background:#00a747;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            color:#fff;
            font-size:34px;
            z-index:999;
            text-decoration:none;
            box-shadow:0 10px 30px rgba(0,0,0,.2);
        }


.resultado-mobile-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:60px;
}

        

        /* =========================
            RESPONSIVO
        ==========================*/

        @media(max-width:992px){

            .hero{
                height:auto;
            }

            .hero .splide__slide{
                height:650px;
            }

            .hero-title{
                font-size:65px;
            }

            .hero-subtitle{
                font-size:28px;
            }

            .section-title{
                font-size:48px;
            }

            .contact h2{
                font-size:48px;
            }

            
    .navbar-collapse{
        background:#a21a1e;
        padding:20px;
        margin-top:15px;
        border-radius:16px;
    }

    .navbar-nav{
        gap:0;
    }

    .navbar-nav .nav-link{
        padding:14px 10px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .resultado-btn{
        margin-top:20px;
        width:100%;
        text-align:center;
        display:flex;
        align-items:center;
        justify-content:center;
    }

        }

        @media(max-width:768px){

               .resultado-section{
        text-align:center;
        padding:30px 0;
    }

    .splide.is-initialized, .splide.is-rendered {
    visibility: visible;
    height: 160px;
}

    .resultado-title{
        font-size:34px;
    }

    .resultado-sub{
        font-size:15px;
    }

    .resultado-mobile-btn{
        margin-top:10px;
    }

            .hero .splide__slide{
                height:580px;
            }

            .hero-title{
                font-size:48px;
            }

            .hero-subtitle{
                font-size:22px;
            }

            .contact-bg{
                font-size:120px;
            }

        }
