	.logo {
		max-width: 300px;	
	}
	
	.astrelia {
		margin-top: 0px !important;
		padding: 0px 0 50px 0;
	}
	
@media only screen and (max-width: 480px) {
	
	.logo {
		padding: 50px 0 0 0;
		max-width: 250px;	
	}
	
}
	
	/* lingua */
	
	.language-selector {
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 1000;
	}
	
	.language-button {
		background: #f8f9fa;
		border: 1px solid #e0e0e0;
		padding: 8px 14px;
		border-radius: 6px;
		cursor: pointer;
		font-size: 14px;
		display: flex;
		align-items: center;
		gap: 8px;
		transition: all 0.2s ease;
	}
	
	.language-button:hover {
		background: #ffffff;
		border-color: #667eea;
		box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
	}
	
	.flag {
		font-size: 18px;
	}
	
	.arrow {
		margin-left: 3px;
		font-size: 10px;
		transition: transform 0.3s ease;
		color: #666;
	}
	
	.language-button.active .arrow {
		transform: rotate(180deg);
	}
	
	.language-dropdown {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		background: white;
		border: 1px solid #e0e0e0;
		border-radius: 6px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		min-width: 160px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.2s ease;
		z-index: 1000;
	}
	
	.language-dropdown.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	
	.language-option {
		padding: 10px 14px;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: background 0.15s ease;
		border-bottom: 1px solid #f5f5f5;
		font-size: 14px;
	}
	
	.language-option:last-child {
		border-bottom: none;
		border-radius: 0 0 6px 6px;
	}
	
	.language-option:first-child {
		border-radius: 6px 6px 0 0;
	}
	
	.language-option:hover {
		background: #f8f9fa;
	}
	
	.language-option.selected {
		background: #e8e8e8;
		color: #333;
	}
	
	.language-name {
		flex: 1;
	}
	
	/* fine lingua */