body {
	background: url('/resources/img/bg_transporte.jpg') no-repeat center center fixed;
	background-size: cover;
	min-height: 100vh;
	color: white;
	font-family: Arial, sans-serif;
}

.container-card {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 50px;
}

.card {
	width: 100%;
	max-width: 300px;
	margin: 15px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.contenido-card {
	padding: 15px;
	text-align: center;
}

.contenido-card h3 {
	margin-bottom: 15px;
	font-size: 1.5rem;
	color: #000000;
}

.contenido-card p {
	font-size: 1rem;
	margin-bottom: 15px;
	color: #000000;
}

.button-86 {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
}

.button-86:hover {
	background-color: #0056b3;
}

/* Media queries */
@media (max-width: 1200px) {
	.card {
		max-width: 45%;
	}
}

@media (max-width: 768px) {
	.card {
		max-width: 100%;
	}
}

.card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}