

/* ===== HOME ===== */
.home {
	background: #001151 url(https://safetyconsulting-tamaulipas.com/img/fondos/fondo7.jpg?v=9) no-repeat center right;
	background-size: cover;
	position: relative;
	padding: 100px 0;
}

.home::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 40, 0.6);
	backdrop-filter: blur(2px);
}

.home .presentation {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 0 30px;
	z-index: 1;
}

/* ===== INTRO TEXT ===== */
.home .intro {
	width: 55%;
	color: #fff;
	animation: fadeInLeft 1.2s ease;
}

.home .intro .alth1 {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 20px;
	color: #a3b8ff;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.home .intro h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.home .intro p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #e7eaf6;
}

.home .intro .button {
	background: linear-gradient(135deg, #007bff, #0056d6);
	padding: 16px 35px;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.home .intro .button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	background: linear-gradient(135deg, #0056d6, #003fb3);
}

/* ===== VIDEO ===== */
.video_presentacion {
	width: 45%;
	animation: fadeInRight 1.2s ease;
}

.video-responsive {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.video-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

/* ===== CLIENTES ===== */
.nuestros_clientes {
	max-width: 1100px;
	margin: 70px auto;
	text-align: center;
}

.nuestros_clientes h2 {
	font-size: 28px;
	font-weight: 500;
	color: #333;
	margin-bottom: 25px;
}

.nuestros_clientes ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nuestros_clientes ul li {
	width: 16.66%;
	display: inline-block;
	vertical-align: middle;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.nuestros_clientes ul li:hover {
	opacity: 1;
	transform: scale(1.05);
}

.nuestros_clientes ul li img {
	width: 80%;
	max-width: 150px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
	from { opacity: 0; transform: translateX(-40px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
	.home .presentation {
		flex-direction: column;
		padding: 50px 20px;
	}

	.home .intro, .video_presentacion {
		width: 100%;
	}

	.home .intro h1 {
		font-size: 46px;
	}

	.home .intro p {
		font-size: 16px;
	}

	.video-responsive {
		margin-top: 30px;
	}
}

@media (max-width: 600px) {
	.home {
		padding: 60px 0;
	}
	.home .intro h1 {
		font-size: 30px;
	}
	.home .intro .button {
		padding: 14px 28px;
		font-size: 16px;
	}
}
