
body {
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}

/* Mejoras de contraste para texto sobre fondo primary (#0D2F3F) */
.bg-primary,
.bg-primary-dark {
	--text-color: #FFFFFF;
	--text-secondary: #F3F4F6;
	--text-opacity-90: rgba(255, 255, 255, 0.9);
}

.bg-primary *,
.bg-primary-dark * {
	color: var(--text-color) !important;
}

.bg-primary p,
.bg-primary-dark p {
	color: var(--text-secondary) !important;
}

.bg-primary .opacity-90,
.bg-primary-dark .opacity-90 {
	opacity: 1 !important;
	color: var(--text-opacity-90) !important;
}
.bg-primary .text-secondary,
.bg-primary-dark .text-secondary {
	color: #E06924 !important;
}

/* Industries section */
.backdrop-blur-sm {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* Team section */
.team-member img {
	transition: transform 0.3s ease;
}

.team-member:hover img {
	transform: scale(1.05);
}

/* Contact form */
input, textarea {
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
	border-color: #E06924;
	box-shadow: 0 0 0 2px rgba(224, 105, 36, 0.2);
}
/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Footer links */
footer a {
	transition: color 0.2s ease;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}
