@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}






:root {
	--fuente-principal: 'Neue Haas Grotesk Display Pro', sans-serif;
	--fuente-secundaria: 'Inter', sans-serif;
	--fuente-parrafo: 'Poppins', sans-serif;
	--fuente-plus: "Plus Jakarta Sans", sans-serif;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	overflow-x: hidden;
}

.hero-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	/*align-items: center;
	justify-content: center;*/
}

.video-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.parrafo-smart {
	color: #fff;
	font-size: 24px;
	text-align: center;
	padding-bottom: 74px;
	font-weight: 400;
	font-family: var(--fuente-plus);
	line-height: 32px;
}

.content-wrapper {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 70px;
}

.logo {
	width: 157px;
	height: 57px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 127px;
}
.logo img {
	width: 100%;
}

.item-logo img {
	width: 109px;
}

.main-title {
	font-size: 70px;
	font-weight: 600;
	font-family: var(--fuente-plus);
	color: white;
	text-align: center;
	margin-bottom: 24px;
	line-height: 86px;
}

/*
.card-container {
	width: 100%;
	max-width: 1100px;
}*/

.items-grid {
	display: flex;
	gap: 34.5px;
	flex-wrap: wrap;
	justify-content: center;
}

/*efectop Glass*/

.item-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 302px;
	height: 161px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	color: white;
	border: 1px solid #e5e7eb;
	padding: 15.5px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
}

.item-text {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 12px;
	font-family: var(--fuente-secundaria);
	padding-top: 12px;
	line-height: 16px;
}

.item-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #00a9e0;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	justify-content: end;
	font-size: 14px;
}

.item-card:hover .item-link {
	gap: 0.75rem;
	color: #00a9e0;
}

.arrow-icon {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
}

.subtitle {
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin-top: 2rem;
	max-width: 700px;
	font-size: 1.125rem;
}

@media (max-width: 1100px) {
	.main-title {
		font-size: 70px;
	}
}

@media (max-width: 991px) {
	.main-title {
		font-size: 58px;
		line-height: 64px;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.main-title {
		font-size: 2rem;
		line-height: 36px;
	}

	.items-grid {
		grid-template-columns: 1fr;
	}

	.card-container {
		padding: 2rem;
	}

	.logo span {
		font-size: 2rem;
	}
	.parrafo-smart {
		font-size: 17px;
		padding-bottom: 30px;
		line-height: 26px;
	}
	.logo {
		margin-bottom: 60px;
	}
}
