
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --color-texto: #f2f2f2;
  --amarillo: #fff200;
}

html{ 
    scroll-behavior: smooth; 
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  background-color: #000;
  color: var(--color-texto);
}

.background{
    background-image: url('img/Desktop\ -\ 1.png');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 1100px;
}

.navbar{
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.logo{
    padding-left: 40px;
    padding-top: 40px;
}

.navbar ul li a{
    color: var(--color-texto);
    text-decoration: none;
    margin: 0 30px 0 30px;
}

.navbar ul li a:hover{
    color: var(--amarillo);
}

.inicio{
    padding-top: 160px;
    padding-left: 40px;
}

.inicio h1{
    font-size: 5vw;
    margin-bottom: 30px;
    width: 60%;
}

.inicio h2{
    margin-bottom: 30px;
    width: 35%;
    font-size: 2.3vw;
}

.inicio p{
    font-size: 1.2vw;
    opacity: 0.9;
    width: 40%;

}

.inicio input[type=button]{
    background-color: var(--color-texto);
    border: none;
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    width: 20vw;
    font-size: 1.2vw;
}

.inicio input[type=button]:hover{
    background-color: #fff;
    cursor: pointer;;
}

.servicios{
    background-color: var(--color-texto);
    color: #000;
    text-align: center;
    padding-bottom: 100px;
}

.servicios h2{
    padding: 40px 0 20px 0;
    font-size: 3vw;
}

.servicios hr{
    background-color: #ccc200;
    border: none;
    height: 2px;
    width: 100px;
    margin: auto;
}

.servicios .tarjetas{
    margin: 0 300px 0 300px;
    padding: 40px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.servicios .tarjetas img{
    width: 25vw;
    margin: 0 20px 0 20px;
}

.formulario{
    background-image: url("img/Frame\ 12.svg");
    background-size:cover;
    background-position: right;
    background-attachment: fixed;
    width: 100%;
    height: 700px;
    text-align: center;
}

.formulario h2{
    padding: 40px 0 20px 0;
    font-size: 3vw;
}

form{
    display: block;
    margin: auto;
    width: 50vw;
}

form div label{
    display: block;
    text-align: left;
    margin-bottom: 5px;
    margin-top: 10px;
}

form div input{
    display: flex;
    justify-content: left;
    width: 100%;
    height: 3vh;
    border-radius: 5px;
    border: none;
}

form div textarea{
    display: flex;
    justify-content: left;
    width: 100%;
    height: 10vh;
    border-radius: 5px;
    border: none;
}

form input[type=submit]{
    background-color: var(--amarillo);
    margin-top: 30px;
    border: none;
    border-radius: 20px;
    padding: 15px 0px 30px 0px;
    width: 50%;
    display: inline;
    text-align: center;
    align-items: center;
    font-size: 1.2vw;
}

form input[type=submit]:hover{
    background-color: #ccc200;
    color: white;
    cursor: pointer;
}
