/* ===== Destinies Map ===== */
.destinies-map {
	padding-top: 144px;
}

/* Título */
.destinies-map__title {
	font-size: 64px;
    line-height: 74px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 43px 0;
    font-family: 'Plaax 6 Ney Heavy';
    text-align: center;
}

/* Contenedor del mapa */
.destinies-map__map {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background: #000;
	overflow: hidden;
}

/* Imagen del mapa (mundo) */
.destinies-map__map-image {
	display: block;
	width: auto;
	height: 600px;
	object-fit: cover;
	pointer-events: none;
	margin: 0 auto;

}

.destinies-map__overlay {
	position: absolute;
	bottom: 64px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	text-align: center;
}

/* Logo corporativo */
.destinies-map__logo {
	width: 158px;
	height: auto;
	display: block;
	filter: none;
}

/* Línea de estado */
.destinies-map__status {
	font-size: 12px;
	line-height: 112%;
	color: #E7E4E2;
}

.destinies-map__status span {
	color: #FF4D2E;
	/* “NOW OPEN” en naranja */
	font-weight: 700;
}

/* Botón */
.destinies-map__button {
	color: #000;
	background: #FFF;

}

.destinies-map__button:hover {
	transform: translateY(-1px);
	opacity: 0.9;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
	.destinies-map {
		padding: 72px 0 0;
	}
	
	.destinies-map__title {
		font-size: 45px;
        line-height: 45px;
	}

	.destinies-map__status {
		font-size: 15px;
	}
}

@media (max-width: 769px) {

	.destinies-map__title {
		font-size: 30px;
        line-height: 35px;
        margin-bottom: 30px;
	}

	.destinies-map__logo {
		width: 146px;
	}

	.destinies-map__status {
		font-size: 14px;
	}
	.destinies-map__map-image {
		height: 480px;
	}

	.destinies-map__button {
		padding: 12px 22px;
		font-size: 13px;
		border-width: 2px;
	}
	.destinies-map__overlay {
		width: 100%;
		max-width: 80%;
		bottom: 16px;
	}
}