@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --font: 'Montserrat';
    --Cinza: #484848;
    --Cinza-Claro: #9299a5;
    --Vermelho-Claro: #f20505;
    --Vermelho-Escuro: #cb0000; 
    --Preto: #0D0D0D;
    --Branco: #F2F2F2;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
    font-weight: 500;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #ffffff;
}

header{
    padding: 30px 0;
}

.center{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2%;
    display: flex;
    align-items: center;
}

.clear{
    clear: both;
}

.logo{
    width: 30%;
}

.logo img{
    width: 100%;
}

.nav-bar{
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: right;
}

.nav a{
    text-decoration: none;
    color: var(--Cinza);
    display: inline-block;
    padding: 2px 15px;
    position: relative;
}

.nav-item::after{
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--Vermelho-Claro);
    transition: width 0.6s ease 0s, left 0.6s ease 0s;
    width: 0;
}

.nav-item:hover::after{
    width: 100%;
    left: 0;
}

.Menu{
    cursor: pointer;
    display: none;
}

.bar{
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--Cinza);
    margin: 5px auto;
    transition: all 0.5s;
}

.menu a:hover{
    color: var(--Cinza);
}

.topo-1{
    width: 60%;
}

.topo-1 h3{
    color: var(--Cinza);
}

.topo-1 h1{
    color: var(--Preto);
    font-size: 46px;
    margin: 20px 0;
    font-weight: 700;
}

.topo-1 h1 > span{
    color: var(--Vermelho-Escuro);
    font-weight: 700;
}

.topo-1 p{
    color: var(--Cinza);
}

.topo-1 a{
    text-decoration: none;
    background-color: var(--Vermelho-Claro);
    color: white;
    padding: 13px 16px;
    border-radius: 8px;
    display: inline-block;
}

.topo-1 a:hover{
    scale: 1.1;
    transition: 0.45s;
}

.topo-2{
    width: 40%;
}

.topo-2 img{
    max-width: 100%;
}

section.servicos{
    padding: 40px 0;
}

.ser{
    flex-direction: column;
}

.chamada-servicos{
    text-align: center;
    margin-top: 55px;
}

.chamada-servicos h4{
    color: var(--Cinza);
    font-size: 16px;
}

.chamada-servicos h1{
    color: var(--Vermelho-Escuro);
    font-size: 55px;
    font-weight: 700;
}

.descricao-servicos{
    display: flex;
    flex-wrap: wrap;
}

.detalhes-servicos{
    padding: 30px;
    width: 33%;
}

.detalhes-servicos img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.detalhes-servicos h3{
    color: var(--Preto);
    font-size: 26px;
    margin: 10px 0;
}

.detalhes-servicos p{
    color: var(--Cinza);
    font-size: 16px;
}

/****SLICK SLIDER****/

.slick-dotted ul{
    list-style-type: none;
    text-align: center;
    position: relative;
    margin-top:10px;
}
   
.slick-dotted li{
    display: inline-block;
    margin: 0 7px;
}
   
.slick-dotted button:focus{
    outline: 0;
}
   
.slick-dotted li button{
    width: 16px;
    height: 16px;
    border-radius: 8px;
    color: #d8d8d8;
    border-width: 0;
    background: #d8d8d8;
    opacity: 1;
    cursor: pointer;
}
   
li.slick-active button{
    background: var(--Vermelho-Escuro);
    color: var(--Vermelho-Escuro);
}
   
.slick-slide:focus { outline: none; }

/**END SLICK**/

.depoimentos{
    margin: 20px 0;
}

.slider-box{
    margin: 10px auto;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.depoimento-single{
	width: 100%;
    margin-top: 20px;
    display: inline-block;
}

.depoimento-single h3{
	color: var(--Cinza);
	font-size: 33px;
	font-weight: normal;
    text-align: justify;
}

.depoimento-single h4{
	font-size: 22px;
	color: var(--Cinza-Claro);
}

.depoimento-single img{
    width: 150px;
    height: 150px;
    display: block;
    margin: 10px auto;
    border-radius: 50%;
}

.showcase{
    margin-top: 30px;
}

.showcase-single{
    display: inline-block;
    margin: 20px 0;
}

.showcase-information{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.showcase-information img{
    width: 30%;
    filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.5));
}

.chamada-showcase{
    width: 70%;
}

.chamada-showcase h2{
    color: var(--Preto);
    font-size: 30px;
    font-weight: 700;
}

.chamada-showcase h3{
    color: var(--Cinza);
    font-size: 22px;
    font-weight: normal;
    padding: 20px 0;
    text-align: left;
}

.chamada-showcase a{
    width: 30%;
    text-align: center;
    text-decoration: none;
    background-color: var(--Vermelho-Claro);
    color: white;
    padding: 13px 16px;
    border-radius: 8px;
    display: inline-block;
}

.chamada-showcase a:hover{
    scale: 1.1;
    transition: 0.45s;
}

.formulario{
    width: 700px;
    margin: 30px auto;
}

.formulario input[type=text]{
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    margin: 10px 0;
    padding-left: 10px;
}

.formulario input[type=submit]{
    background-color: var(--Vermelho-Claro);
    color: white;
    width: 100%;
    padding: 10px 15px;
    cursor: pointer;
    border: 0;
}

.formulario textarea{
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 10px;
}

footer{
    text-align: center;
    padding-top: 30px;
    color: var(--Cinza);
}

footer p{
    font-weight: bold;
}

.icons-menu{
    margin: 10px;
    cursor: pointer;
}

.icons-menu a{
    text-decoration: none;
    color: var(--Cinza);
    font-size: 25px;
    margin: 0 10px;
}

.icon-facebook-sign:hover{
    color: blue;
    transition: 0.5s;
}

.icon-instagram:hover{
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.5s;
}

.icon-youtube-play:hover{
    color: red;
    transition: 0.5s;
}

.icon-tumblr:hover{
    background-image: radial-gradient(circle at 30% 107%, #FE2C55 0%, #FE2C55 5%, #FF69B4 45%, #7c9cee 60%, #0d71ae 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.5s;
}

/*Página Obrigado*/

.obrigado{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.obrigado h1{
    color: var(--Vermelho-Escuro);
    font-size: 38px;
    font-weight: 700;
}

.obrigado p{
    color: var(--Cinza);
    font-size: 25px;
}

@media (max-width: 768px){
    .Menu{
        display: block;
        margin-right: 25px;
    }
    .Menu.ativo .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .Menu.ativo .bar:nth-child(2){
        opacity: 0;
    }
    .Menu.ativo .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav{
        margin-right: 0px;
        position: fixed;
        right: -100%;
        top: 75px;
        width: 50%;
        height: 200px;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--Branco);
        transition: all 0.5s;
    }
    .nav-item{
        margin: 20px;
    }
    .nav.ativo{
        right: 0;
    }
    .menu{
        float: right;
    }
    .menu a{
        display: block;
        text-align: right;
        margin: 8px 10px;
    }
    .tes{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .topo-1,
    .topo-2{
        width: 100%;
        margin: 20px 0;
    }
    .detalhes-servicos,
    .texto-depoimento{
        width: 50%;
        margin: 20px 0;
    }
    .slider-box{
        width: 90%;
    }
    .depoimento-single h3{
        font-size: 26px;
    }
    .chamada-showcase h3{
        font-size: 18px;
    }
}

@media (max-width: 425px){
    .nav{
        width: 70%;
    }
    .logo{
        width: 100%;
    }
    .chamada-servicos h1{
        font-size: 48px;
    }
    .detalhes-servicos,
    .texto-depoimento{
        width: 100%;
        margin: 20px 0;
    }
    .showcase-information{
        flex-direction: column;
        text-align: center;
    }
    .showcase-information img{
        width: 50%;
    }
    .chamada-showcase{
        width: 100%;
    }
}