body {
    background:rgb(35,31,32);
    text-align: center;
    font-family: 'Signika', sans-serif;
    color: #f5f5f5;
    padding-top: 60px;
    padding-bottom: 25px;
    margin: 0;
}

/*Colors*/
.color1{
    color: #D6B075;
}
.color2{
    color: #D9D9D9;
}


.logo {
    width: 100%;
    background-color: #fdfdfd;
    top: 0;
    padding: 30px 0 260px 0;
    position: absolute;
    z-index: -1;
}

@media (max-width: 767px) {
    .logo {
        position: relative;
        padding: 0;
    }
    .logo img { 
        height: 180px;
        max-width: 100%;
    }
    body {        
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
    }
}

.formulario {   
    margin: auto;
    background-image: url("../img/fundo.png"); /* The image used */
    background-repeat: repeat-y;
    padding: 5px;
    color: #775532;
    max-width: 425px;
    border-radius: 3px;
    font-size: 1.2em;
    

    display: block;
}
.formulario2 {   
    margin: auto;
    background-image: url("../img/fundo2.png"); /* The image used */
    background-repeat: repeat-y;
    padding: 5px;
    color: #775532;
    max-width: 425px;
    border-radius: 3px;
    font-size: 1.2em;
  
    display: block;
}

.form-contato{
    padding-top: 88px;
     padding-bottom: 34px;
     padding-left: 15px;
     padding-right: 15px;
     -webkit-box-shadow: -5px -4px 40px #857C6D;
     -moz-box-shadow: -5px -4px 40px #857C6D;
     box-shadow: -5px -6px 40px #857C6D;
     border-radius: 6px;
    
}

.zoom {
    transition: transform .2s; 
  }
  
  .zoom:hover {
    transform: scale(1.1); 
  }
 

input[type="number"],
input[type="text"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 8px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #000;
    color: #000;
    text-align: left;      
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}
.radio {
    display: flex;
    flex-wrap: wrap;
}
.est1 {
    margin-top: 7px;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 0.1em;
}
.form-check {
    display: flex;
}
input[type="submit"] {
    width: 100%;
    background-color: #775532;
    color: #fff;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #775532;
}
img {
    vertical-align: middle;
}
button {
    font-size: 1.4rem;
    border: 0;
    padding: 4px 30px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    line-height: 50px;
    margin-top: 16px;
}
.botao-contato {
    font-size: 1.4rem;
    background-color: #775532;
    border: 0;
    padding: 4px 30px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    line-height: 50px;
    margin-top: 16px;
    vertical-align: middle;
}
.span {
    display: flex;
    flex-wrap: wrap;
}

/*Redes Sociais*/

ul {
    display: flex;
    position: absolute;
   
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  ul li {
    list-style: none;
  }
  
  ul li a {
    width: 20px;
    height: 20px;
    background-color: #fff;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    margin: 0 10px 25px 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
  }
  
  ul li a .icon {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
  }
  
  ul li a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
  }
  
  ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
  }
  
  ul li a:hover:before {
    top: 0;
  }
  
  ul li:nth-child(1) a:before{
    background: #3b5999;
  }
  
  ul li:nth-child(2) a:before{
    background: #55acee;
  }
  
  ul li:nth-child(3) a:before {
    background: #0077b5;
  }
  
  ul li:nth-child(4) a:before {
    background: #dd4b39;
  }