@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

body {
    color: #000000;
    background: #ffffff;
    font-size: 16px;
}

body, input, textarea, button {
    font-family: 'Rubik', sans-serif;
}

.total {
    width: 100%;
}

.container {
    width: 1100px;
    margin:0 auto;
    position: relative;
    display: table;
}

#topo {
    padding: 50px 0;
    position: absolute;
    z-index: 1;
}

#logo {
    width: 30%;
    float: left;
}

#redes-sociais {
    padding: 15px 0;
    float: right;
}

#redes-sociais > ul > li {
    display: inline;
    padding: 0 5px;
}

#redes-sociais > ul > li a {
    color: #ffffff;
    font-size: 18px;
}

#redes-sociais > ul > li a:hover {
    color: #ed3237;
}

/*menu desktop*/
#menu-desktop {
    width: auto;
    float: right;
    padding: 15px;
    text-align: center;
}

#menu-desktop ul li {
    position: relative;
    display: inline;
    vertical-align: middle;
}

#menu-desktop ul li a {
    padding: 10px 30px;
    font-size: 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
}

#menu-desktop ul li a:hover {
    color: #ed3237;
}

/*menu mobile*/
/********menu-mobile*********/
#btn-menu-mobile {
    display: none;
    width: 28px;
    height: 33px;
    position: absolute;
    top: 3px;
    right: 0;
    z-index: 199;
}

#btn-menu-mobile span, #btn-menu-mobile:before, #btn-menu-mobile:after {
    content: " ";
    display: block;
    width: 20px;
    height: 4px;
    background-color: #ffffff;
    transform: rotate(0);
    position: absolute;
    left: 7px;
    transition: all 300ms ease-in-out;
    border-radius: 2px;
}

#btn-menu-mobile:before {
}

#btn-menu-mobile span {
    top: 7px;
    opacity: 1;
}

#btn-menu-mobile:after {
    bottom: 16px;
}

#btn-menu-mobile.active span {
    opacity: 0;
    top: 25px;
    transform: rotate(90deg);
}

#btn-menu-mobile.active:before {
    width: 28px;
    top: 5px;
    left: 4px;
    transform: rotate(45deg);
}

#btn-menu-mobile.active:after {
    width: 28px;
    bottom: 24px;
    left: 4px;
    transform: rotate(-45deg);
}

#menu-mobile {
    display: none;
    width: 230px;
    background-color: #FF2E34;
    padding: 10px 0;
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 99999;
    text-align: center;
    font-size: 14px;
    -webkit-transition: opacity .3s ease,top 1s ease,-webkit-box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,-webkit-box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,box-shadow .5s ease,-webkit-box-shadow .5s ease;
}

#menu-mobile a {
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 10px 0;
    background: url(../img/layout/sep-menu.png) no-repeat center bottom;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#menu-mobile a:hover {
    font-weight: 600;
}

#menu-mobile a:last-child {
    background: none;
}

#banner {
    max-width: 1360px;
    margin: 0 auto;
    background: url('../img/layout/bg.jpg') center top no-repeat;
    text-align: center;
    padding-top: 100px;
    background-size: auto 100%;
}

#banner .splide__slide img {
    max-width: 100%;
}

#info {
    background: #ed3237;
    margin: 0;
    color: #ffffff;
    font-style: italic;
    font-size: 36px;
    text-align: center;
    padding-top: 40px;
}

#produtos {
    margin: 40px 0;
}

#produtos h1 {
    width: 50%;
    float: left;
    font-weight: 700;
    font-style: italic;
    color: #ed3237;
    font-size: 40px;
    text-align: left;
}

#produtos .logos {
    width: 50%;
    float: left;
}

#galeria1 {
    max-width: 1360px;
    margin: 0 auto 100px auto;
    text-align: center;
}

#galeria1 .splide__slide img {
    max-width: 100%;
}

#galeria1 ul li span{
    font-weight: 700;
}

#formulario {
    margin: 100px auto 50px auto;
}

#formulario h1 {
    font-size: 40px;
    font-style: italic;
    text-align: center;
    color: #ed3237;
    padding-bottom: 20px;
}

#formulario p {
    text-align: center;
    line-height: 25px;
}

.formBox {
  width: 70%;
  position: relative;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  padding: 0 50px;
  margin: 0 auto;
}

.formBox .inputBox {
  position: relative;
  padding: 0 1% 15px 0;
  text-align: left;
}

.formBox .inputBox.w50 {
  width: 50%;
}

.formBox .inputBox.w100 {
  width: 100%;
}

.formBox .inputBox input,.formBox .inputBox textarea {
  width: 100% !important;
  border: 0;
  border-bottom: 2px solid #ed3237;
  padding: 10px 0;
  margin-top: 30px;
  outline: none;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
}

.formBox .inputBox textarea {
  min-height: 150px;
  margin-bottom: 20px;
}

.formBox .inputBox button[type="submit"] {
    width: 200px;
    background: #ed3237;
    border: 0;
    padding: 15px 30px;
    color: #ffffff;
    display: inline-table;
    cursor: pointer;
    transition: transform .2s;
    border-radius: 5px;
    font-weight: 700;
}

.formBox .inputBox button[type="submit"]:hover {
    transform: scale(1.2);
}

/*alertaMSG*/
.alert{ width:100%; font-size:18px; padding:1.5% 2.5%;margin-top:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;outline:1px solid #fbeed5; float:left; text-align:center}
.alert span{font-size:25px; padding-right:20px; color:#c90000}
.alert-success{background-color:#dff0d8;outline-color:#d6e9c6;color:#468847;}
.alert-error{background-color:#f2dede;outline-color:#eed3d7;color:#b94a48;}
.alert-info{background-color:#d9edf7;outline-color:#bce8f1;color:#3a87ad;}

#rodape {
    padding: 50px 0;
    background: url('../img/layout/bg-rodape.jpg');
    font-size: 18px;
    line-height: 35px;
    color: #ffffff;
    text-align: center;
}

@media (min-width:1500px){
    .total {
        max-width: 1920px;
        margin: 0 auto;
        float: none;
    }
    .container {
        width: 80%;
    }

    #topo.total {
        max-width: none;
    }
    #banner, #galeria1 {
        max-width: 1920px;
    }
}

@media (max-width:768px){
    .container {
        width: 92%;
        margin: 0 4%;
    }
    #topo {
        padding: 25px 0;
    }
    #logo {
        width: 50%;
    }
    #redes-sociais {
        margin-right: 40px;
        padding: 0;
    }
    #btn-menu-mobile {
        display: block;
    }
    #menu-desktop {
        display: none;
    }
    #info {
        font-size: 25px;
    }
    #produtos h1 {
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }
    #produtos .logos {
        width: 100%;
        text-align: center;
    }
    #galeria1 {
        margin-bottom: 50px;
    }
    #galeria1 .splide__slide img {
        
    }
    #formulario {
        margin: 50px 0;
    }
    .formBox {
        width: 100%;
    }
}

@media (min-width:0px) and (max-width:479px){
    #logo {
        width: 40%;
    }
    #logo img {
        width: 80%;
    }
    #banner {
        width: 100%;
    }
    #galeria1 {
        width: 100%;
    }
    .formBox {
        padding: 0 25px;
    }
    .formBox .inputBox.w50 {
        width: 100%;
        padding-right: 0;
    }
}
