:root{
    --colorTextos: #49454567;
}

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

body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

h1{
    text-align: center;
    margin: 10px 0;
    font-weight: 800;
}

form{
  margin-top: 5%;
  background-image: url("../img/fondo.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30%;
  padding: 10px 0;
  border-radius: 40px;
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
  font-family: 'Muli', sans-serif;
}

.form{
    width: 100%;
    margin: auto;
}

form .grupo{
    position: relative;
    margin: 45px;
}

input, textarea{
    background: none;
    color:#c6c6c6;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border:none;
    border-bottom: 1px solid white;
    resize: none;
}

input:focus,textarea:focus{
    outline: none;
    color: white;
}

input:focus~label,
input:valid~label,
textarea:focus~label, textarea:valid~label{
    position: absolute;
    top: -14px;
    font-size: 12px;
    color: rgb(230, 203, 28);
}

label{
    color: white;
    font-size: 16px;
    position: absolute;
    left: 5px;
    top:10px;
    transition: 0.5s ease all;
    pointer-events: none;
}


input:focus~.barra::before, textarea:focus~.barra::before{
    width: 100%;
}
.barra{
    position: relative;
    display: block;
    width: 100%;
}
.barra::before{
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    transition: 0.3s ease all;
    left: 0%;
}
button{
    background: rgb(223, 76, 44);
    display: block;
    width: 50%;
    height: 30%;
    padding: 3%;
    border:none;
    color:#fff;
    border-radius: 40px;
    font-size: 100%;
    margin: 10px auto;
    cursor: pointer;
    font-family: 'Muli', sans-serif;
}

button:hover{
  background-color: rgb(126, 25, 7);
  transition-duration: 0.5s;
  opacity: 0.8;

}

@media screen and (max-width:1100px){
    form{
        width: 50%;
    }
}

@media screen and (max-width:600px){
    form{
        width: 60%;
    }
}

@media screen and (max-width:450px){
    form{
        width: 80%;
    }
}

@media screen and (max-width:300px){
    form{
        width: 90%;
    }
}

.info_items{
  text-align: center;

}

.fa {
  width: 20%;
  padding: 2%;
  margin-bottom: 5%;
  color: white;
  text-decoration: none;
  border-radius: 40px;

}
.fa:hover{
  transition-duration: 0.5s;
  opacity: 0.8;
}


.fa-facebook{
    background-color: rgb(38, 87, 170);

}

.fa-envelope{
    background-color: rgb(237, 93, 31);

}

.fa-tripadvisor{
    background-color: rgb(105, 167, 123);

}

.fa-whatsapp{
  background-color: rgb(1, 213, 48);

}

.logo {
  text-align: center;
  font-family: 'Architects Daughter', cursive;

}

@font-face{
  font-family:themillion;
  src: url("../img/Hand_Of_Sean_Demo.ttf");

}

#logoTop{
    color: white;
    font-size: 400%;
    font-family: themillion;

}

#logoBottom{
  color: rgb(205, 214, 40);
  font-size: 120%;
  margin-bottom: -5%;
  font-family: themillion;

}

/*SUBMIT*/
#submitMensagge{
  width: 100%;
  height: 100%;

}
