html, body, div, header, h1{
    margin: 0;
    padding: 0%;
}
body{
    background-color: #4b4a45;
}
a{
    text-decoration: none;
}
.redes{
    position: fixed;
    top: 150px;
    left: 0;
    z-index: 9;
}
#facebook a{
    background-color: #2671bc;
    padding: 10px 25px;
    color: white;
    font-size: 1.3em;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .6s;
}
#facebook a:hover{
    background-color: white;
    color: #2671bc;
    padding: 10px 25px;
}
#instagram a{
    background-color: #6d0e4e;
    padding: 10px 25px;
    color: white;
    font-size: 1.3em;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .6s;
}
#instagram a:hover{
    background-color: white;
    color: #6d0e4e;
    padding: 10px 25px;
}
header{
    background-color: #4b4a457b;
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 10;
}
.top{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}
.logo{
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}
.logo img{
    max-height: 60px;
    width: auto;
}

.menuTop{
    width: 75%;
    height: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menuTop div a{
    color: #d59734;
    text-decoration: none;
    padding: 0 15px;
    text-transform: uppercase;
    font-size: .8em;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
.menuTop div a:hover{
    color: #edd2a8;
}
.banner{
    width: 100%;
    height: 600px;
    background-image: url(../imagenes/img1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.centrar{
    width: 80%;
    margin: 20px auto;
}
.Bienvenido{
    margin: 50px 0 20px 0;
    text-align: justify;
    color: white;
}
.Bienvenido h2{
    text-align: center;
    color: white;
    font-size: 3em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.Bienvenido h3{
    text-align: center;
    color: white;
    font-size: 2em;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.columnas{
    width: 100%;
    height: 100%;
    display: flex;
    margin: 100px 0;
}
.col3{
    width: 33.33%;
    padding: 20px;
    object-fit: cover;
}
.col3 img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.col3 h4{
    font-size: 2.4em;
    color: #d59734;
    margin: 10px 0;
    font-family: 'Times New Roman', Times, serif;
}
.col3 h5{
    font-size: 1.7em;
    color: #edd2a8;
    margin: 0;
}

 .footer{
    background-color: #282828;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 /*Estilo Nosotros*/

 .imageTop{
    padding-top: 60px;
    width: 100%;
    height: 600px;
    object-fit: cover;
 }
 .Nosotros{
     margin: 50px 0 20px 0;
    text-align: justify;
    color: white;
 }
 .Nosotros h2{
    text-align: center;
    color: white;
    font-size: 2.5em;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 }
 .Nosotros h3{
    text-align: center;
    color: white;
    font-size: 1.5em;
    font-family: 'Times New Roman', Times, serif;
 }
 .Nosotros p{
    text-align: center;
    color: white;
    font-size: 1em;
 }
 
 /*Estilos contacto*/

 .titContacto{
    padding-top: 50PX;
    text-align: center;
    color: #edd2a8;
    font-size: 3em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
 }

 .dosColumnas{
    display: flex;
 }

 .formulario{
    width: 100%;
 }
 
 .form{
    width: 85%;
    height: 30px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: #9eaeb7 ;
 }
 .form2{
    height: 200px;
 }
 .textoformulario{
    margin-top: 65px;
    color: #edd2a8;
    font-size: 1.6em;
 }

/*Estilo Proceso*/

#linea-proceso, .linea-proceso {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

#proceso {
  padding-top: 60px;   
  margin-top: 30px;    
  text-align: center;
}

#proceso h2 {
  font-size: 28px;
  justify-content: center;
  margin-bottom: 30px;
  color: #d59734;        
}


.paso {
  background-color: #fff;
  border: 2px solid #746544;
  border-radius: 15px;
  padding: 20px;
  width: 230px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: scale(1.05);
}

.paso i {
  font-size: 35px;
  color: #d59734;
  margin-bottom: 10px;
}

.paso h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #333;
}

.paso p {
  font-size: 14px;
  color: #555;
}


 @media screen and (max-width:760px){
    .redes{
        visibility: hidden;
        display: none;
    }
    header{
        height: auto;
    }
    .top{
        display: flex;
        flex-direction: column;
    }
    .logo{
        width: 100%;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }
    .menuTop{
        width: 100%;
        padding: 10px 0;
        display: flex;
        justify-content: center;
    }
    .banner{
        background-position: left 120px;
        height: 500px;
        margin-bottom: 100px;
    }
    .columnas{
        display: block;
    }
    .col3{
        width: 100%;
    }
    
 }
