@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/****************** GENERALES **********************/
*,li{
	font-family: "Urbanist";
}
.w{
	width: 85%;
	max-width: 1200px;
	margin: auto;
}
.boton1{
	font-style: 1.2rem;
	background-color: #161827;
	color: #FFF;
	text-decoration: none;
	padding: 1.3rem 1.6rem;
}
.boton1:hover{
	transition: all 400ms ease-out;
	box-shadow: 0 0 25px #161827;
}

/***************** NAVBAR *******************/
.navbar {
	background: #07D0F4;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	text-decoration: none;
}
.logo img{
	width: 30px;
	vertical-align: -5px;
}
.logo span{
	margin-left: 5px;
	font-size: 1.5rem;
	font-weight: 900 !important;
	color: #FFF;
}

/* MENÚ ESCRITORIO */
.menu {
	display: flex;
	list-style: none;
}
.menu li {margin-left: 30px;}
.menu a {
	color: white;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
	padding: 5px 0;
	position: relative;
}
.menu a:hover {color: #161827;}
.menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #FF5E19;
	transition: width 0.3s;
}
.menu a:hover::after {width: 100%;}

/* BOTÓN HAMBURGUESA (MÓVIL) */
.hamburger {
	display: none;
	cursor: pointer;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background: white;
	margin: 5px;
	transition: all 0.3s;
}

/* MENÚ MÓVIL */
@media (max-width: 768px) {
	.hamburger {display: block;}
	.menu {
		position: absolute;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: #07D0F4;
		flex-direction: column;
		align-items: center;
		padding: 40px 0;
		transition: left 0.5s;
	}
	.menu.active {left: 0;}
	.menu li {margin: 15px 0;}

	/* Animación hamburguesa a "X" */
	.hamburger.active .line1 {transform: rotate(-45deg) translate(-5px, 6px);}
	.hamburger.active .line2 {opacity: 0;}
	.hamburger.active .line3 {transform: rotate(45deg) translate(-5px, -6px);}
}

/****************** HERO **********************/
#hero{
	width: 100%;
	padding: 10rem 2rem;
	background-color: #EFECD6;
	box-sizing: border-box;
}
#hero h5, #hero h4{
	font-size: 3.15rem;
	line-height: 90%;
	margin: 0;
	color: #161827;
}
#hero h4{
	font-size: 4.15rem;
	color: #FF8200;
}
#hero p{
	font-weight: 300;
	font-size: 1.5rem;
	color: #161827;
	margin-bottom: 2.5rem;
}
#servicios div{
	background-color: #F6F4F3;
	box-sizing: border-box;
	padding: 2rem;
	margin: 1rem 1rem;
	width: 46%;
	display: inline-block;
}
#servicios i{
	background-color: #161827;
	color: #fff;
	padding: 1.5rem;
	float: left;
	margin-right: 1rem;
}
/*general*/








#loggo span{
	color: #31A8DB;
}
.sp1{
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.sp2{
	padding-top: 2rem;
	padding-bottom: 2rem;
}


/*header{
	display: grid;
	grid-template-columns: 1fr auto;
}
nav ul li a{
	display: inline-block;
	padding: 1rem;
	font-weight: 400;
	color: #161827;
	text-decoration: none;
	border-bottom: 3px solid #31A8DB;
}
nav ul li a:hover{
	color: #31A8DB;
}*/