@font-face {
	font-family: "GothamRounded-Bold";
	src: url("/src/fonts/GothamRounded-Bold.woff2") format("woff2"),
		url("/src/fonts/GothamRounded-Bold.woff") format("woff");
}
@font-face {
	font-family: "GothamRounded-Light";
	src: url("/src/fonts/GothamRounded-Light.woff2") format("woff2"),
		url("/src/fonts/GothamRounded-Light.woff") format("woff");
}
@font-face {
	font-family: "GothamRounded-LightItalic";
	src: url("/src/fonts/GothamRounded-LightItalic.woff2") format("woff2"),
		url("/src/fonts/GothamRounded-LightItalic.woff") format("woff");
}

/*-- THEME COLORS --*/
:root {
	/* Colors */
	--azul-claro: #1fadb5;
	--gris-claro: #373737;
}

* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "GothamRounded-Light";
}

body {
	background-color: #ffffff;
	margin: 0px;
	font-family: "Ubuntu-regular";
	background-color: #fff;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: var(--azul-claro);
}

section {
	width: 100%;
	display: flex;
}

a {
	text-decoration: none;
	transition: ease all 0.6s;
}

a:hover {
	transform: scale(1.1);
}

button {
	cursor: pointer;
}

input,
textarea,
select {
	outline: none;
}

ul {
	list-style: none;
}

button {
	border: none;
}

#banner {
	margin-top: 90px;
}
#banner img {
	width: 100%;
}

#banner-interno {
	margin-top: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#banner-interno img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: top;
}
#banner-interno .principal-title {
	align-items: center;
	position: absolute;
}
#banner-interno .principal-title h3 {
	color: #fff;
	font-size: 70px;
}

/* -----------------------------------------Header---------------------------------------- */

header {
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	z-index: 101;
}

#content-header {
	width: 95%;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

#content-header > img {
	height: 120px;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 40px;
	left: 0px;
	top: 0px;
}

header nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

header nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

header nav ul a {
	font-size: 18px;
	color: #000;
	padding: 5px 15px;
	border-radius: 10px;
	transition: ease all 0.3s;
}

header nav ul a.active,
header nav ul a:hover {
	color: #fff;
	background-color: var(--azul-claro);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

header nav ul a.active svg,
header nav ul a:hover svg {
	fill: #fff;
}

#content-redes {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#content-redes.redes-h {
	display: none;
}

#content-redes a svg {
	fill: var(--azul-claro);
	height: 30px;
}

#btn-whatsapp {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 100px;
	right: 10px;
	z-index: 111111;
	padding: 8px;
	background-color: #32ba46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
		0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
	right: 20px;
	transform: scale(1.05, 1.05);
}

.content-sub-items-header:hover ul {
	display: block;
}

.sub-items-header {
	display: none;
	width: 250px;
	position: absolute;
	background-color: #8762a0;
	border-radius: 3px;
	top: 70%;
	z-index: 9999;
}

.sub-items-header > li > a {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	border-bottom: 2px solid var(--negro);
	padding: 10px 30px;
	transition: ease all 0.6s;
	font-weight: 600;
	border-radius: 0px !important;
}

.sub-items-header > li > a:hover {
	transform: unset;
}

.btn-header-sub {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-header-sub svg {
	width: 30px;
	fill: #000;
}
/* -------------------------------------footer--------------------------------------- */

footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: var(--gris-claro);
	padding: 100px;
	position: relative;
}

footer > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

footer h3 {
	font-size: 20px;
	font-weight: bold;
	color: #ff7bd0;
	margin-bottom: 30px;
}

footer p {
	font-size: 18px;
	font-weight: lighter;
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.content-f-2 {
	width: 30%;
}

.content-f-3 {
	width: 25%;
}

.content-f-3 img {
	width: 50%;
	margin-bottom: 25px;
}

#redes-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

#redes-footer a svg {
	fill: var(--azul-claro);
	height: 25px;
}

.content-f-2 a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.content-f-2 svg {
	fill: #fff;
	margin-top: 2px;
	height: 20px;
}
.content-f-2 span {
	width: calc(100% - 20px);
	color: #fff;
}

#form-footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#form-footer input {
	width: 100%;
	border-radius: 10px;
	background-color: #fff;
	padding: 10px 20px;
	margin-bottom: 15px;
	border: none;
}

#form-footer input::placeholder {
	font-style: italic;
}

#form-footer a {
	background-color: var(--azul-claro);
	border-radius: 25px;
	color: #fff;
	padding: 8px 30px;
}

#btn-top {
	width: 50px;
	height: 50px;
	background-color: #8762a0;
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

#btn-top svg {
	width: 100%;
	fill: #fff;
}

.principal-title {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
	margin-bottom: 20px;
}

.principal-title h3 {
	font-size: 30px;
	text-transform: uppercase;
	color: #000;
}

.principal-title span {
	width: 30%;
	height: 3px;
	background-color: var(--azul-claro);
}

#s-servicios {
	flex-direction: column;
	padding: 60px;
	justify-content: center;
	align-items: center;
}

/* --------------------------------------btn carousel------------------------------------- */
.bnn {
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: calc(50% - 40px);
	border-radius: 50%;
	background-color: var(--azul-claro);
}

#content-btn-carousel {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}
.bnn-2 {
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: var(--azul-claro);
}

#btn-menu {
	display: none;
}

.redes-h {
	display: none;
}

#s-contadores {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0px;
	background-color: #ff8288;
}

#s-contadores > div {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0px 80px;
}

.content-card-contador {
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.content-card-contador p {
	font-size: 100px;
	font-family: "GothamRounded-Bold";
	line-height: 80px;
	letter-spacing: -8px;
}
.content-card-contador span {
	font-family: "GothamRounded-LightItalic";
	font-size: 25px;
}

.line-separator {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 70px 60px;
}
.line-separator span {
	width: 100%;
	height: 2px;
	background-color: #9e9e9e;
}

#politicas-footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#politicas-footer a {
	background-color: var(--azul-claro);
	border-radius: 25px;
	color: #fff;
	padding: 8px 30px;
}

@media screen and (max-width: 1280px) {
	#content-header {
		width: 100% !important;
	}

	#content-header > img {
		height: 90px !important;
	}

	header nav ul {
		gap: 20px !important;
	}

	#content-redes {
		gap: 15px !important;
	}

	#content-redes a svg {
		height: 26px !important;
	}
}
@media screen and (max-width: 1024px) {
	#btn-menu {
		display: flex;
		padding-right: 20px;
	}
	#content-header > img {
		height: 85px;
	}

	#content-header {
		width: 100%;
	}

	header nav {
		display: none;
	}

	header nav.active {
		width: 100%;
		position: absolute;
		display: flex;
		top: 90px;
		left: 0px;
		flex-direction: column;
		background-color: #eeeeee;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
			0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	}

	header nav ul {
		width: 100%;
		padding: 15px 0px;
		flex-direction: column;
	}

	#content-redes {
		display: none;
	}
	#content-redes.redes-h {
		display: flex;
		padding: 8px 0px;
	}

	#banner img {
		width: 100%;
		height: 350px;
		object-fit: cover;
	}

	footer {
		justify-content: center;
		align-items: center;
		padding: 20px;
		flex-direction: column;
	}

	.content-f-3 {
		width: 100%;
	}

	footer > div {
		align-items: center;
	}

	footer p {
		text-align: center;
	}

	.content-f-2 {
		width: 100%;
	}

	#redes-footer {
		margin-bottom: 15px;
	}

	#redes-footer a svg {
		height: 45px;
	}

	#form-footer button {
		margin-bottom: 50px;
	}
	#banner-interno .principal-title h3 {
		font-size: 30px;
	}

	.content-card-contador {
		border-bottom: 1px solid var(--azul-claro);
		padding: 20px 0px;
	}

	.content-f-2 a {
		width: 100%;
		justify-content: flex-start;
	}

	#s-contadores > div {
		width: 95%;
		flex-direction: column;
		gap: 15px 0px;
	}
	.principal-title h3 {
		font-size: 22px;
	}
	.line-separator {
		padding: 20px;
	}
	.sub-items-header {
		position: unset;
	}
}
