/* Barra Navegacion */
.navbar{
    padding: 2rem;
    background-color: #f5f6f7;
}

.navbar-collapse{
    align-items: center;
    justify-content: space-between;
}

/*Seccion Hero*/
.hero{
    background-color: #f5f6f7;
    min-height: 450px;
    text-align: center;
}

.hero-principal{
    padding: 2rem;
}

.hero-imagen{
    border-radius: 1%;
}

.hero-principal h1{
    font-size: 2.5rem;
    color: #615151;
}

/*Nosotros*/
.nosotros{
    height: 500px;
    padding: 10px;
}

.nosotros .contenedor{
    max-width: 600px;
    text-align: center;
}
/* Estilos Gnerales*/
section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 2.8rem;
}

.seccion-oscura{
    color: white;
    background-color: #1b1b32;
}

.seccion-clara{
    color:black;
    background-color: white;
}

.seccion-titulo{
    font-size: 2rem;
    padding: 15px;

}
.seccion-texto{
    font-size: 1.2rem;

}

.seccion-descripcion{
    font-size: 1.2rem;
    color: #584e4e;
}


.texto-negro{
    color:black;
}

.texto-blanco{
    color:white;
}

/*Experiencia*/
.experiencia{
    padding: 40px 40px 60px 40px;
}

.proximidad{
    font-size: 25px;
    font-weight: bold;
    margin: 10px;
}
.experiencia .columna{
    padding: 40px;
    border: 2px solid #8080804d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.2s ease-in;
}
.experiencia .columna:hover{
    color:white;
    background-color: #2C3E50;
}
.experiencia i{
    font-size: 2.5rem;
    color: #94C1E5;
    background-color: #f5f6f7;
    padding: 8px 19px;
    border-radius: 50%;
}

/*Proyectos*/
.proyectos-recientes{
    padding: 40px;
}

.proyectos-recientes img{
    height: 100%;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}

.proyectos-contenedor{
    padding-top: 60px;
    margin-bottom: 40px;
}

.overlay{
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay p{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0;
}
.proyecto{
    position: relative;
}
.proyecto:hover img{
    opacity: 0.2;
}
.proyecto:hover .overlay{
    opacity: 1;
}

/* Contacto */
.contacto .container{
    max-width: 1100px;
    min-height: 60px;
    padding: 18px;
}

.contacto .rectangulo{
    margin-top: -4rem;
    background-color: rgb(13, 110, 253);
    border-radius: 10px;
    box-shadow: 0px 1px 4px 2px white;
}

.contacto .row{
    width: 100%;
    display: flex;
    align-items: center;

}

.contacto .descripcion{
    color:white;
    font-size: 1rem;
}

.contacto button{
    color: white;
    font-weight: bolt;
    background-color: transparent;
    border: 2px solid white;
    padding: 1em 1.5em;
    margin: 5px;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}
.contacto button:hover{
    background-color: white;
    color: black;
}
.contacto button i{
    color:white;
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;
}
.contacto button:hover i{
    color: black;
}

/* Pie de Pagina*/

footer{
    min-height: 300px;
    padding: 20px;
}

.derechos-de-autor{
    font-size: 15px;
    color:#aeaeae;
    padding: 30px;
    text-align: center;
}


/* Adaptacion responsiva*/
@media screen and (max-width: 767px) {
    .navbar-brand{
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .hero-inferior-imagen{
        max-width: 600px;
    }
}


/* watsap bottom */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
    background-color:#fff;
}

.my-float{
	margin-top:16px;
}