@import url('https://fonts.googleapis.com/css2?family=Monserrat:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600;700;800;900&family=Open+Sans-serif:wght@400;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Merriweather+Sans:wght@300&family=Nanum+Gothic&family=Nunito:wght@400;500;600;700;800&family=Poppins:wght@500&family=Quicksand:wght@300;400;500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700&family=MuseoModerno:wght@200;300;400;500;600;700;800;900&family=Open+Sans:wght@400;700&display=swap');


/*ASPECTOS GENERALES*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
/*	font-family: 'Mukta', sans-serif;*/
	font-family: 'Monserrat', sans-serif;
}

/*---INDEX---*/
/*NAVBAR*/
.barraNav {
	background-color: #c9031a;
}

.nav-link {
	transition: all 0.2s;
	font-weight: 500;
	font-size: 20px;
}

.nav-link:hover {
	text-decoration: underline;
	border-bottom: #f8f8ec;
}

/*BODY-HERO*/
.links {
	text-decoration: none;
	color: black;
}

.links:hover {
	color: #c9031a;
}

.body {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
}

.wrapper {
	width: 80%;
	padding: 30px 0;
	text-align: center;

}

.btn {
	margin-bottom: 10px;
}

.section-header {
	text-transform: uppercase;
	line-height: 70px;
	padding-bottom: 10px;
	font-size: 50px;
	color: black;
	letter-spacing: 1px;
}

.section-header:hover {
	color: #c9031a
}

.content {
	padding: 10%;
}

.content h2 {
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.content p {
	line-height: 1.5;
}

.main-content {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-main-content-gap: 25px;
	grid-column-gap: 15px;
}
/*-- FORMATEO DE IMAGENEES --*/
.main-content .box .imagen-redondeada {
        width: 300px;
        height: auto;
        border-radius: 50px; /* Ajusta el valor según lo redondeado que quieras las esquinas */
    }

.main-content .box {
	position: relative;
	cursor: pointer;
	margin-bottom: 15px;
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
	height: 250px;
	overflow: hidden;
}

.main-content .box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 5px;
	height: 100%;
	transition: all 0.3s ease-in-out;
}

.main-content .box:hover:before {
	top: 0;
	right: calc(100% - 5px);
	z-index: 10;
}

.main-content .box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-content .box .img-text {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	width: 100%;
	height: 100%;
	top: 0;
	right: 100%;
	transition: all 0.5s ease-in-out;
}

.main-content .box:hover .img-text {
	top: 0;
	right: 0;
}

/*BOTON WHATSAPP*/
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 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;
}

/*---SISTEMAS---*/
body {
	background: #ededf2;
}

.wrapper .header {
	width: 100%;
	height: 50px;
	background: #f8f8ec;
	color: black;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 900;
}

.cards_wrap {
	padding: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cards_wrap .card_item {
	padding: 15px 25px;
	width: 25%;
}

.cards_wrap .card_inner {
	background: #fff;
	border-radius: 5px;
	padding: 35px 20px;
	min-width: 225px;
	min-height: 315px;
	max-height: 370px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cards_wrap .card_item img {
	margin-bottom: 5px;
	height: 150px;
}

.cards_wrap .card_item .role_name {
	color: #d7d7b8;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cards_wrap .card_item {
	color: black;
	font-size: 12px;
	font-weight: 100;
	margin: 5px 0 10px;
}

.cards_wrap .card_item .film {
	padding-top: 2px;
	font-size: 15px;
	line-height: 24px;
	font-weight: 300;
	color: black;
}

@media screen and (min-width:1024px) {
	.nav {
		margin-right: 200px;
	}
}

@media screen and (max-width: 1024px) {
	.cards_wrap .card_item {
		width: 33%;
	}

	.mapa {
		width: 240px;
	}
}

@media screen and (max-width: 768px) {
	.cards_wrap .card_item {
		width: 50%;
	}

	.wrapper .header {
		font-size: 16px;
		height: 60px;
	}
}

@media screen and (max-width: 568px) {
	.cards_wrap .card_item {
		width: 100%;
	}

	.wrapper .header {
		font-size: 14px;
	}

	.mapa {
		width: 300px;
	}
}

/*---NOSOTROS---*/
/*CARDS CON VISION, MISION Y OBJETIVO*/
.clientes {
	display: flex;
	justify-content: center;
}

.wrapper .header {
	width: 100%;
	height: 50px;
	background: #e36686;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 900;
}

.cards_wrap {
	padding: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cards_wrap .card_item {
	padding: 15px 25px;
	width: 25%;
}

.cards_wrap .card_inner {
	background: #fff;
	border-radius: 5px;
	padding: 35px 20px;
	min-width: 225px;
	min-height: 315px;
	max-height: 370px;
	width: 100%;
}

.cards_wrap .card_item img {
	width: 250px;
	height: 120px;
	margin-bottom: 5px;
}

.cards_wrap .card_item .role_name {
	color: black;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cards_wrap .card_item .real_name {
	color: #b6c0c2;
	font-size: 12px;
	font-weight: 100;
	margin: 5px 0 10px;
}

.cards_wrap .card_item .film {
	font-size: 14px;
	line-height: 24px;
	color: #7b8ca0;
}

@media screen and (max-width: 1024px) {
	.cards_wrap .card_item {
		width: 33%;
	}
}

@media screen and (max-width: 768px) {
	.cards_wrap .card_item {
		width: 50%;
	}

	.wrapper .header {
		font-size: 16px;
		height: 60px;
	}
}

@media screen and (max-width: 568px) {
	.cards_wrap .card_item {
		width: 100%;
	}

	.wrapper .header {
		font-size: 14px;
	}
}




