/* Logo */
.logo {
	width: 223px;
	height: 50px;
}

/* === MENÚ DESKTOP === */
.mega-menu-clean {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 8px 16px rgba(0,0,0,0.15);
	z-index: 1000;
	min-width: fit-content;
	flex-direction: row;
  }
  
  .mega-menu-clean.show {
	display: flex;
  }
  
  .mega-tabs {
	display: flex;
	flex-direction: column;
	padding: 10px;
  }
  
  .tab-header-link {
	border: none;
	background: none;
	padding: 10px 15px;
	text-align: left;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-width: 220px;
	color: #333;
  }
  
  /* Activa principal */
  .tab-header-link.active {
	background-color: #25476a;
	color: #fff;
  }
  
  .tab-header-link.active .arrow-right {
	border-color: #fff;
  }
  
  .arrow-right {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
	margin-left: 10px;
	transition: transform 0.2s, border-color 0.2s;
  }
  
  .mega-content {
	padding: 10px 15px;
	background: #fff;
	min-width: fit-content;
	display: none;
  }
  
  .mega-content.show {
	display: block;
  }
  
  .tab-header-content {
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .tab-header-content.active {
	display: block;
  }
  
  .tab-header-content li a {
	display: block;
	padding: 6px 0;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s;
  }
  
  /* Subopción seleccionada */
  .tab-header-content li a.selected {
	color: rgba(14, 127, 219, 0.979);
	font-weight: 600;
  }
  
  .tab-header-content li a:hover {
	color: rgba(14, 127, 219, 0.979);
	
  }
  
  /* === RESPONSIVE MÓVIL Y TABLET === */
@media (max-width: 1024px) {
.mega-menu-clean {
	position: static;
	flex-direction: column;
	width: 100%;
	box-shadow: none;
	border: none;
}

.mega-tabs {
	width: 100%;
	flex-direction: column;
}

.tab-header-link {
	width: 100%;
	font-size: 1rem;
	padding: 12px 20px;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
}

.tab-header-link .arrow-right {
	transform: rotate(45deg);
}

.tab-link-header.active .arrow-right {
	transform: rotate(135deg);
}

.mega-content {
	display: block !important;
	padding: 0;
	background-color: #f9f9f9;
	width: 100%;
}

.tab-header-content {
	display: none;
	padding: 0 25px 10px 25px;
	background-color: #f9f9f9;
}

.tab-header-content.active {
	display: block;
}
/* Borde sutil al contenedor del dropdown de funcionalidades */
.tab-header-content  {
	border-bottom: 1px solid #ddd;
	
}

}

/* Flags */
.flags {
	display: flex; 
	justify-content: center; 
	gap: 15px; 
	margin-left: 30px;
}

.flags img { 
	width: 32px; 
	height: auto; 
	cursor: pointer; 
}

/*Seccion de precios*/
.price-inline {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.5rem;
  }
  
  .price-inline i {
	color: #1f71c2;
	font-size: 1.3rem;
  }
