/**
 * 1977 Popup Idioma - Estilos
 */

/* Contenedor general */
.popup-idioma-container {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	z-index: 9999;
}

/* Overlay */
.popup-idioma-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9998;
}

/* Modal */
.popup-idioma-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
	max-width: 500px;
	width: 90%;
}

/* Contenido del modal */
.popup-idioma-content {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	text-align: center;
	animation: slideIn 0.3s ease-out;
}

/* Animación de entrada */
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

/* Título */
.popup-idioma-content h2 {
	margin: 0 0 15px 0;
	font-size: 28px;
	color: #333333;
	font-weight: 600;
}

/* Descripción */
.popup-idioma-content p {
	margin: 0 0 30px 0;
	font-size: 16px;
	color: #666666;
	line-height: 1.5;
}

/* Contenedor de opciones */
.popup-idioma-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	justify-items: center;
}

/* Botones */
.popup-idioma-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background-color: #f9f9f9;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	font-weight: 500;
	color: #333333;
	min-width: 120px;
}

.popup-idioma-btn:hover {
	border-color: #0073aa;
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.2);
}

.popup-idioma-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 115, 170, 0.2);
}

/* Bandera */
.popup-idioma-btn .bandera {
	font-size: 32px;
	display: block;
	margin-bottom: 8px;
}

/* Nombre del idioma */
.popup-idioma-btn .nombre {
	display: block;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
	.popup-idioma-content {
		padding: 30px 20px;
	}

	.popup-idioma-content h2 {
		font-size: 24px;
	}

	.popup-idioma-content p {
		font-size: 14px;
	}

	.popup-idioma-options {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 12px;
	}

	.popup-idioma-btn {
		padding: 15px 10px;
		min-width: 100px;
	}

	.popup-idioma-btn .bandera {
		font-size: 28px;
		margin-bottom: 5px;
	}

	.popup-idioma-btn .nombre {
		font-size: 12px;
	}
}

/* Accesibilidad */
.popup-idioma-btn:focus {
	outline: 2px solid #0073aa;
	outline-offset: 2px;
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
	.popup-idioma-content {
		background-color: #2d2d2d;
		color: #ffffff;
	}

	.popup-idioma-content h2 {
		color: #ffffff;
	}

	.popup-idioma-content p {
		color: #cccccc;
	}

	.popup-idioma-btn {
		background-color: #3d3d3d;
		border-color: #555555;
		color: #ffffff;
	}

	.popup-idioma-btn:hover {
		background-color: #4d4d4d;
		border-color: #0073aa;
	}
}
