/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0d0d0d;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    padding-top:85px;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:95%;
    max-width:1500px;
    margin:auto;
}

.secao{
    margin-top:45px;
}

/* ===========================
   TITULOS
=========================== */

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.section-title h2{
    font-size:30px;
}

.section-title a{
    color:#00bfa5;
    font-weight:bold;
}

/* ===========================
   HERO
=========================== */

#hero{

    width:95%;
    max-width:1500px;

    height:70vh;

    margin:25px auto;

    border-radius:18px;

    overflow:hidden;

    background-size:cover;
    background-position:center;

}
transition:opacity .5s ease;

}

.hero-overlay{

    width:100%;
    height:100%;

    display:flex;
    align-items:flex-end;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.35),
        rgba(0,0,0,.15)
    );

}

.hero-content{

    max-width:700px;

    padding:50px;

}

#hero-tag{

    display:inline-block;

    background:#00bfa5;

    color:#000;

    padding:7px 18px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:18px;

}

#hero-title{

    font-size:58px;

    margin-bottom:20px;

}

#hero-description{

    line-height:1.8;

    color:#ddd;

    margin-bottom:30px;

}

.hero-buttons{

    display:flex;

    gap:15px;

}

.hero-buttons button{

    padding:14px 28px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

}

#btnDetalhes{

    background:#00bfa5;

    color:#000;

}

/* ===========================
   SLIDER
=========================== */

.slider{

    position:relative;

}

.carrossel{

    display:flex;

    gap:18px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:10px 5px;

}

.carrossel::-webkit-scrollbar{

    display:none;

}

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.7);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:5;

    transition:.25s;

}

.slider-btn:hover{

    background:#00bfa5;

    color:#000;

}

.slider-btn.prev{

    left:-20px;

}

.slider-btn.next{

    right:-20px;

}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:1024px){

    #hero{

        height:60vh;

    }

    #hero-title{

        font-size:42px;

    }

}

@media(max-width:768px){

    #hero{

        height:50vh;

    }

    .hero-content{

        padding:25px;

    }

    #hero-title{

        font-size:34px;

    }

    #hero-description{

        font-size:15px;

    }

    .section-title h2{

        font-size:24px;

    }

    .slider-btn{

        display:none;

    }

}

@media(max-width:480px){

    #hero{

        height:45vh;

    }

    #hero-title{

        font-size:28px;

    }

    #hero-description{

        font-size:14px;

        -webkit-line-clamp:4;
        display:-webkit-box;
        -webkit-box-orient:vertical;
        overflow:hidden;

    }

}

.seo-home{

    margin:80px auto;

    max-width:1100px;

    line-height:1.9;

    color:#cfcfcf;

}

.seo-home h2{

    font-size:34px;

    margin-bottom:20px;

    color:#fff;

}

.seo-home h3{

    margin-top:35px;

    margin-bottom:15px;

    font-size:24px;

    color:#fff;

}

.seo-home p{

    margin-bottom:18px;

}
.seo-links{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;

}

.seo-links a{

    color:#00b8a6;

    text-decoration:none;

    padding:10px 18px;

    border:1px solid #00b8a6;

    border-radius:30px;

    transition:.3s;

}

.seo-links a:hover{

    background:#00b8a6;

    color:#fff;

}
