﻿.bg-black {
	background-color: #000; /* Fondo negro */
	color: white; /* Texto blanco */
	padding: 100px 0;
}

.text-white h1, .text-white h2, .text-white p, .text-white h4 {
	color: white;
}

.team-area {
	position: relative;
	z-index: 2;
}

.shadow {
	box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.bg-white {
	background-color: #fff;
	color: #000;
	padding: 100px 0;
}

/* Contenedor de objetivos con separación uniforme */
.objetivos-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* Espaciado uniforme entre tarjetas */
	justify-content: center;
}

/* Tarjetas con altura uniforme y separación */
.objetivo-card {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease-in-out;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 220px; /* Tamaño uniforme */
	margin-bottom: 20px; /* Espaciado extra */
}

.objetivo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Iconos */
.objetivo-card i {
	font-size: 2.5rem;
	color: #007bff;
	margin-bottom: 15px;
}

/* Sección de imagen final */
.final-image-area {
	background-color: #f8f9fa;
	padding: 50px 0;
}

.final-image-area img {
	max-width: 80%;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
	max-width: 50%;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
	display: block;
}

.logosqm-img {
	max-width: 180px;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}

.logocorp-img {
	max-width: 50% !important;
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	margin-left: auto;
	margin-right: auto;
}