/* Zona de importacion de estilos */
@import url(menu.css);
@import url(banner.css);
@import url(servicios.css);
@import url(proyectos.css);
@import url(footer.css);
@import url(formulario.css);
@import url(galeria.css);
/* ..........................  */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

header img{
    float: left;
    width: 50px;
    height: auto;

}

header{
    width: 100%;
    height: 50px;
    background: #333;
    color:white;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;

}



.contenedor{
    width:98%;
    margin: auto;

}
h1{
    float:left;
}

/* Limpiar los float */
header .contenedor{
    display: table;
}

section{
    width:100%;
    margin-bottom: 25px;
}

#bienvenidos{
    text-align: center;
}

@media (min-width:1024px){
    .contenedor {
        width:1000px;
    }
}


.sin-decoracion {
    text-decoration: none;
    color: inherit; /* Mantiene el color original del texto */
    cursor: pointer; /* Asegura que el cursor cambie a una mano al pasar sobre el enlace */
}
