html,body{
	overflow-x: hidden!important;
}

.bubble-wrap{
	position: absolute;
	inset:0;
	width: 100%;
	height: 100%;
}
.bubble{
	--color: rgba(255, 0, 0, 0.5);
	--tam: 16.25em;
	position: absolute;

	width: var(--tam);
	height: var(--tam);
	top: var(--top);
	left: var(--left);

	background: var(--color);
	filter: blur(150px);

	border-radius: 50%;
	filter: blur(0px);
	will-change: transform;
} 
@media (max-width:767px){
	.bubble{
		opacity: 1;
	}
}
body:not(.logged-in) .bubble{
	filter: blur(150px)!important;
	user-select: none;
}
@media (max-width:767px){
	body:not(.logged-in) .bubble{
		opacity: .5!important;
	}
}
/**
* TABLE
* */

.comparativo {
	background: transparent;
	color: white;
	padding: 0rem;
	font-family: sans-serif;

	max-width: 100%;
}

@media screen and (max-width:767px) {
	.comparativo {
		overflow-x: auto;
	}

	.comparativo table td:first-child,
	.comparativo table th:first-child {
		position: sticky;
		left: 0;
		z-index: 1;
	}

}

.comparativo::-webkit-scrollbar-thumb:hover {
	cursor: pointer;
	background: #9552523d;
}

.comparativo::-webkit-scrollbar-thumb {
	background: #290101;
	border-radius: 10px;
}

.comparativo::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.comparativo::-webkit-scrollbar {
	height: 0;
	width: 0;
}

@media screen and (min-width:767px) {
	.comparativo::-webkit-scrollbar {
		height: 9px;
	}
}

.comparativo table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-family: 'Inter';
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 100%;
	letter-spacing: 0%;
	min-width: 300px;
}

@media screen and (max-width:767px) {
	.comparativo table tr td {
		font-size: 1rem;
		line-height: 1.2;
	}
}

.comparativo td,
.comparativo th,
.comparativo tr {
	align-content: center;
}

.comparativo th,
.comparativo td {
	border: 0px solid transparent;
	padding: 1rem;
	min-width: 150px;
}

.comparativo thead {
	border-color: transparent;
}

.comparativo thead th {
	align-content: end;
	text-transform: uppercase;
}

.comparativo thead th:first-of-type {
	width: 40%;
}

.comparativo table thead:first-child tr:first-child th {
	border-block-start: 1px solid transparent;
}

.comparativo thead th span {
	border-radius: 40px;
	background: rgba(10, 10, 22, 1);
	padding: 20px 25px;
	display: inline-block;
	line-height: 1;
	font-family: 'Inter';
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
}

@media screen and (max-width:767px) {
	.comparativo thead th span {
		font-size: 0.85rem;
		line-height: 1.2;
	}
}

table tbody>tr:nth-child(odd)>td,
table tbody>tr:nth-child(odd)>th {
	background-color: unset;
}

.comparativo tbody tr:nth-child(odd) {
	background-color: rgba(0, 0, 0, .4) !important;
	position: relative;
}

.comparativo tbody tr td:first-of-type {
	text-align: left;
}

.comparativo tbody tr:nth-child(odd) td:first-of-type::before,
.comparativo tbody tr:nth-child(odd) td:last-of-type::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0, 0.4);
	top: 0;
	z-index: 0;

}

.comparativo tbody tr:nth-child(odd) td:first-of-type::before {
	transform: translateX(-100%);
}

.comparativo tbody tr:nth-child(odd) td:last-of-type::after {
	transform: translateX(100%);
}

.comparativo p.caption {
	font-family: 'Inter';
	font-weight: 400;
	font-style: Italic;
	font-size: 12px;
	line-height: 100%;
	padding-inline: 15px;
}

	    .linha-vertical {
  position: absolute;
  top: 8%;
  bottom: 0;
  width: 2px;
  background-color: #fff;
  z-index: 1;
  height: 92%;
}

.linha-vertical::before,
.linha-vertical::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
}

.linha-vertical::before {
  top: 0;
}

.linha-vertical::after {
  bottom: 0;
}
