/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-x3sazkop6v5b > .fl-row-content-wrap {
	background-color: rgba(249,249,249,0.74);
}
.fl-node-x3sazkop6v5b .fl-row-content {
	max-width: 1200px;
}
 .fl-node-x3sazkop6v5b > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-x3sazkop6v5b.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:10px;
	padding-left:10px;
}
}






 .fl-node-ufrwp1te396q > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-w21hnbkpi7lq.fl-row-fixed-width, .fl-node-w21hnbkpi7lq .fl-row-fixed-width {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-w21hnbkpi7lq.fl-row > .fl-row-content-wrap {
	margin-top:-20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-w21hnbkpi7lq.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-left:20px;
}
}






.fl-node-vxsnermfg9bi > .fl-row-content-wrap {
	background-color: rgb(245, 245, 245);
}
.fl-node-vxsnermfg9bi .fl-row-content {
	max-width: 1200px;
}




.fl-node-p23t97f0hwuz {
	width: 100%;
}




.fl-node-i89jsahogc32 {
	width: 100%;
}




.fl-node-531epo7jgz4u {
	width: 100%;
}




.fl-node-ky9jlqf1ivrz {
	width: 100%;
}
.fl-node-c7wosqnpt0ra .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-c7wosqnpt0ra .fl-separator {
	border-top-color: rgba(204,204,204,0.49);
	border-top-style: solid;
}
 .fl-node-c7wosqnpt0ra > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-xqki8mlb0p7o.fl-module-html {
	margin-top:40px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-xqki8mlb0p7o.fl-module-html.fl-module {
	margin-top:30px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-27956uca0ltk.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 38px;
	line-height: 1.1;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-27956uca0ltk.fl-module-heading .fl-heading {
		font-size: 28px;
	}
}
 .fl-node-27956uca0ltk > .fl-module-content {
	margin-top:5px;
	margin-right:350px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-27956uca0ltk.fl-module > .fl-module-content {
	margin-top:5px;
}
}
@media (max-width: 768px) { .fl-node-27956uca0ltk > .fl-module-content { margin-right:20px; } } .fl-node-a84flc6edns1.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-a84flc6edns1.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-2u509kpq4swh .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-2u509kpq4swh .fl-module-content .fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-2u509kpq4swh .fl-rich-text, .fl-builder-content .fl-node-2u509kpq4swh .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.5;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-2u509kpq4swh .fl-rich-text, .fl-builder-content .fl-node-2u509kpq4swh .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
 .fl-node-2u509kpq4swh > .fl-module-content {
	margin-right:350px;
}
@media (max-width: 768px) { .fl-node-2u509kpq4swh > .fl-module-content { margin-right:20px; } } .fl-node-bpzhk69jo475.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-bpzhk69jo475.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-h829jf3cdmxb.fl-module-html {
	margin-top:0px;
	margin-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-h829jf3cdmxb.fl-module-html.fl-module {
	margin-bottom:30px;
}
}
 .fl-node-gdlk5es9t4rc.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-gdlk5es9t4rc.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-74dhg06l2t15.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-74dhg06l2t15.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-rjqtpe43l216.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-rjqtpe43l216.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-8vwu7k0bsic3.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8vwu7k0bsic3.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-y8buspah0o4z.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-y8buspah0o4z.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-cmihz432tpfa.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-cmihz432tpfa.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-ry7p8vk3z954.fl-module-html {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ry7p8vk3z954.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-ayknj0u8xhe4.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-ayknj0u8xhe4.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-ayknj0u8xhe4 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-ayknj0u8xhe4 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-zad50mr7uif2 .fl-rich-text, .fl-builder-content .fl-node-zad50mr7uif2 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-zad50mr7uif2 .fl-rich-text, .fl-builder-content .fl-node-zad50mr7uif2 .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-myg1ld0cjkr2.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-myg1ld0cjkr2.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-myg1ld0cjkr2 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-myg1ld0cjkr2 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-u8kmevq0tzjg .fl-rich-text, .fl-builder-content .fl-node-u8kmevq0tzjg .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-u8kmevq0tzjg .fl-rich-text, .fl-builder-content .fl-node-u8kmevq0tzjg .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-w3p1kzuxa5dm.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-w3p1kzuxa5dm.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-w3p1kzuxa5dm > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-w3p1kzuxa5dm > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-v97zf43j1o6s .fl-rich-text, .fl-builder-content .fl-node-v97zf43j1o6s .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-v97zf43j1o6s .fl-rich-text, .fl-builder-content .fl-node-v97zf43j1o6s .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-zaih73lqdvo2.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-zaih73lqdvo2.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-zaih73lqdvo2 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-zaih73lqdvo2 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-3pa6zcxnkvje .fl-rich-text, .fl-builder-content .fl-node-3pa6zcxnkvje .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-3pa6zcxnkvje .fl-rich-text, .fl-builder-content .fl-node-3pa6zcxnkvje .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-1itckxms3np8.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-1itckxms3np8.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-1itckxms3np8 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-1itckxms3np8 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-h4bntzgpyk7a .fl-rich-text, .fl-builder-content .fl-node-h4bntzgpyk7a .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-h4bntzgpyk7a .fl-rich-text, .fl-builder-content .fl-node-h4bntzgpyk7a .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-hrz7ia2ewvg8.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-hrz7ia2ewvg8.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-hrz7ia2ewvg8 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-hrz7ia2ewvg8 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-fbgsluqh4zo0 .fl-rich-text, .fl-builder-content .fl-node-fbgsluqh4zo0 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-fbgsluqh4zo0 .fl-rich-text, .fl-builder-content .fl-node-fbgsluqh4zo0 .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-1j7r9dgn8yea.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-1j7r9dgn8yea.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-1j7r9dgn8yea > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-1j7r9dgn8yea > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-6a14c3y758rg .fl-rich-text, .fl-builder-content .fl-node-6a14c3y758rg .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-6a14c3y758rg .fl-rich-text, .fl-builder-content .fl-node-6a14c3y758rg .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-5w0741dpj83y.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-5w0741dpj83y.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-5w0741dpj83y > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-5w0741dpj83y > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-kj8unyd1hgxp .fl-rich-text, .fl-builder-content .fl-node-kj8unyd1hgxp .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-kj8unyd1hgxp .fl-rich-text, .fl-builder-content .fl-node-kj8unyd1hgxp .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-dvume0cn4olf.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-dvume0cn4olf.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-dvume0cn4olf > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-dvume0cn4olf > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-d87p9cvwx62q .fl-rich-text, .fl-builder-content .fl-node-d87p9cvwx62q .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-d87p9cvwx62q .fl-rich-text, .fl-builder-content .fl-node-d87p9cvwx62q .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-z4jamcl51kfr.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-z4jamcl51kfr.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-z4jamcl51kfr > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-z4jamcl51kfr > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-215bcr64xt8s .fl-rich-text, .fl-builder-content .fl-node-215bcr64xt8s .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-215bcr64xt8s .fl-rich-text, .fl-builder-content .fl-node-215bcr64xt8s .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-dwe1a5kv6zgu.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-dwe1a5kv6zgu.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-dwe1a5kv6zgu > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-dwe1a5kv6zgu > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-na9t7sr120cq .fl-rich-text, .fl-builder-content .fl-node-na9t7sr120cq .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-na9t7sr120cq .fl-rich-text, .fl-builder-content .fl-node-na9t7sr120cq .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
.fl-node-25vlk8cr6efw.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-25vlk8cr6efw.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-25vlk8cr6efw > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-25vlk8cr6efw > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-swdxpn9k7y2h .fl-rich-text, .fl-builder-content .fl-node-swdxpn9k7y2h .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-swdxpn9k7y2h .fl-rich-text, .fl-builder-content .fl-node-swdxpn9k7y2h .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }	.fl-builder-content .fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text * {
		color: #1fd365;
	}
	.fl-node-ik79rwcfjxp3 .fl-icon i,
.fl-node-ik79rwcfjxp3 .fl-icon i:before {
	color: #1fd365;
}




.fl-node-ik79rwcfjxp3 .fl-icon i, .fl-node-ik79rwcfjxp3 .fl-icon i:before {
	font-size: 30px;
}
.fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-ik79rwcfjxp3.fl-module-icon {
	text-align: left;
}
.fl-builder-content .fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text-link * {
	color: #1fd365;
}
.fl-node-ik79rwcfjxp3 .fl-icon-text, .fl-node-ik79rwcfjxp3 .fl-icon-text-link {
	font-weight: 400;
	font-size: 17px;
}
@media(max-width: 1200px) {
	.fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-ik79rwcfjxp3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
 .fl-node-ik79rwcfjxp3 > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ik79rwcfjxp3.fl-module > .fl-module-content {
	margin-bottom:35px;
}
}
.fl-node-vta8p92orjzh.fl-module-heading .fl-heading {
	font-weight: 800;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-vta8p92orjzh.fl-module-heading .fl-heading {
		font-size: 22px;
		line-height: 1.2;
	}
}
 .fl-node-vta8p92orjzh > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-vta8p92orjzh > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-lcawpsh6gb8f .fl-rich-text, .fl-builder-content .fl-node-lcawpsh6gb8f .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-lcawpsh6gb8f .fl-rich-text, .fl-builder-content .fl-node-lcawpsh6gb8f .fl-rich-text *:not(b, strong) {
		line-height: 1.5;
	}
}
@media ( max-width: 768px ) {
 .fl-node-eni8kbmzp59x.fl-module-html.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

@charset "UTF-8";
.fl-node-xqki8mlb0p7o {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-xqki8mlb0p7o .prd-card, .fl-node-xqki8mlb0p7o .prd-card * {
  box-sizing: border-box;
}
.fl-node-xqki8mlb0p7o .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-xqki8mlb0p7o .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-xqki8mlb0p7o .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-xqki8mlb0p7o .prd-rank-mobile {
  display: none;
}
.fl-node-xqki8mlb0p7o .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-xqki8mlb0p7o .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-xqki8mlb0p7o .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-xqki8mlb0p7o .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-xqki8mlb0p7o .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-xqki8mlb0p7o .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-xqki8mlb0p7o .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-xqki8mlb0p7o .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-xqki8mlb0p7o .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-xqki8mlb0p7o .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-xqki8mlb0p7o .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-xqki8mlb0p7o .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-xqki8mlb0p7o .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-xqki8mlb0p7o .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-xqki8mlb0p7o .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-xqki8mlb0p7o .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-xqki8mlb0p7o .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-xqki8mlb0p7o .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-xqki8mlb0p7o .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-xqki8mlb0p7o .prd-score-info:hover, .fl-node-xqki8mlb0p7o .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-xqki8mlb0p7o .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-xqki8mlb0p7o .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-xqki8mlb0p7o .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-xqki8mlb0p7o .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-xqki8mlb0p7o .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-xqki8mlb0p7o .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-xqki8mlb0p7o .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-xqki8mlb0p7o .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-xqki8mlb0p7o .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    padding: 28px 20px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    max-width: 165px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-xqki8mlb0p7o .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-xqki8mlb0p7o {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-xqki8mlb0p7o .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-desktop {
    display: none;
  }
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-xqki8mlb0p7o .prd-content {
    display: contents;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-xqki8mlb0p7o .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-xqki8mlb0p7o .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-xqki8mlb0p7o .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number {
    font-size: 38px;
  }
  .fl-node-xqki8mlb0p7o .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-text {
    margin-top: 0;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number-wrap {
    position: static;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-xqki8mlb0p7o .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-xqki8mlb0p7o .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-xqki8mlb0p7o .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-xqki8mlb0p7o .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-xqki8mlb0p7o .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-xqki8mlb0p7o {
    /* MANTÉM 17PX */
  }
  .fl-node-xqki8mlb0p7o .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-xqki8mlb0p7o .prd-title {
    font-size: 20px;
  }
  .fl-node-xqki8mlb0p7o .prd-description {
    font-size: 17px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number {
    font-size: 34px;
  }
  .fl-node-xqki8mlb0p7o .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-xqki8mlb0p7o .prd-card, .fl-node-xqki8mlb0p7o .prd-card * {
  box-sizing: border-box;
}
.fl-node-xqki8mlb0p7o .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-xqki8mlb0p7o .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-xqki8mlb0p7o .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-xqki8mlb0p7o .prd-rank-mobile {
  display: none;
}
.fl-node-xqki8mlb0p7o .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-xqki8mlb0p7o .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-xqki8mlb0p7o .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-xqki8mlb0p7o .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-xqki8mlb0p7o .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-xqki8mlb0p7o .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-xqki8mlb0p7o .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-xqki8mlb0p7o .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-xqki8mlb0p7o .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-xqki8mlb0p7o .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-xqki8mlb0p7o .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-xqki8mlb0p7o .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-xqki8mlb0p7o .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-xqki8mlb0p7o .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-xqki8mlb0p7o .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-xqki8mlb0p7o .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-xqki8mlb0p7o .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-xqki8mlb0p7o .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-xqki8mlb0p7o .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-xqki8mlb0p7o .prd-score-info:hover, .fl-node-xqki8mlb0p7o .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-xqki8mlb0p7o .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-xqki8mlb0p7o .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-xqki8mlb0p7o .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-xqki8mlb0p7o .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-xqki8mlb0p7o .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-xqki8mlb0p7o .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-xqki8mlb0p7o .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-xqki8mlb0p7o .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-xqki8mlb0p7o .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-xqki8mlb0p7o .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    padding: 28px 20px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    max-width: 165px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-xqki8mlb0p7o .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-xqki8mlb0p7o {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-xqki8mlb0p7o .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-desktop {
    display: none;
  }
  .fl-node-xqki8mlb0p7o .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-xqki8mlb0p7o .prd-content {
    display: contents;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-xqki8mlb0p7o .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-xqki8mlb0p7o .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-xqki8mlb0p7o .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number {
    font-size: 38px;
  }
  .fl-node-xqki8mlb0p7o .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-xqki8mlb0p7o .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-xqki8mlb0p7o .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-xqki8mlb0p7o .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-xqki8mlb0p7o .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-xqki8mlb0p7o .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-xqki8mlb0p7o .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-xqki8mlb0p7o .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-xqki8mlb0p7o .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-xqki8mlb0p7o {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-xqki8mlb0p7o .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-xqki8mlb0p7o .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-xqki8mlb0p7o .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-xqki8mlb0p7o .prd-title {
    font-size: 20px;
  }
  .fl-node-xqki8mlb0p7o .prd-description {
    font-size: 17px;
  }
  .fl-node-xqki8mlb0p7o .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number {
    font-size: 34px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-xqki8mlb0p7o .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-xqki8mlb0p7o .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-xqki8mlb0p7o .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-xqki8mlb0p7o .prd-score-number {
    font-size: 31px;
  }
  .fl-node-xqki8mlb0p7o .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-xqki8mlb0p7o .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-o82rwn9shy7m {
  /* CABEÇALHO */
  /* LISTA */
  /* ITEM */
  /* PERGUNTA */
  /* ÍCONE */
  /* RESPOSTA */
  /* MOBILE */
}
.fl-node-o82rwn9shy7m .gcy-faq, .fl-node-o82rwn9shy7m .gcy-faq * {
  box-sizing: border-box;
}
.fl-node-o82rwn9shy7m .gcy-faq {
  width: 100%;
  padding: 44px;
  background: #ffffff;
  border-radius: 24px;
  font-family: inherit;
}
.fl-node-o82rwn9shy7m .gcy-faq-header {
  max-width: 760px;
  margin-bottom: 32px;
}
.fl-node-o82rwn9shy7m .gcy-faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #777777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fl-node-o82rwn9shy7m .gcy-faq-header h2 {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}
.fl-node-o82rwn9shy7m .gcy-faq-header p {
  margin: 0;
  color: #666666;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-o82rwn9shy7m .gcy-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fl-node-o82rwn9shy7m .gcy-faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fl-node-o82rwn9shy7m .gcy-faq-item:hover {
  border-color: #d7d7d7;
}
.fl-node-o82rwn9shy7m .gcy-faq-item.active {
  border-color: #dcdcdc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
}
.fl-node-o82rwn9shy7m .gcy-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  appearance: none;
  cursor: pointer;
  color: #111111;
  font-family: inherit;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.4;
  text-align: left;
}
.fl-node-o82rwn9shy7m .gcy-faq-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid #dddddd;
  border-radius: 50%;
}
.fl-node-o82rwn9shy7m .gcy-faq-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #111111;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.fl-node-o82rwn9shy7m .gcy-faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fl-node-o82rwn9shy7m .gcy-faq-item.active .gcy-faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.fl-node-o82rwn9shy7m .gcy-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.fl-node-o82rwn9shy7m .gcy-faq-item.active .gcy-faq-answer {
  grid-template-rows: 1fr;
}
.fl-node-o82rwn9shy7m .gcy-faq-answer-inner {
  overflow: hidden;
}
.fl-node-o82rwn9shy7m .gcy-faq-answer-inner p {
  margin: 0 24px 24px;
  color: #555555;
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 650px) {
  .fl-node-o82rwn9shy7m .gcy-faq {
    padding: 28px 18px;
    border-radius: 18px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-header {
    margin-bottom: 24px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-header h2 {
    font-size: 27px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-header p {
    font-size: 17px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-list {
    gap: 8px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-question {
    gap: 14px;
    padding: 19px 17px;
    font-size: 17px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-icon {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }
  .fl-node-o82rwn9shy7m .gcy-faq-answer-inner p {
    margin: 0 17px 19px;
    font-size: 17px;
  }
}
@charset "UTF-8";
.fl-node-a84flc6edns1 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-a84flc6edns1 .prd-card, .fl-node-a84flc6edns1 .prd-card * {
  box-sizing: border-box;
}
.fl-node-a84flc6edns1 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-a84flc6edns1 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-a84flc6edns1 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-a84flc6edns1 .prd-rank-mobile {
  display: none;
}
.fl-node-a84flc6edns1 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-a84flc6edns1 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-a84flc6edns1 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-a84flc6edns1 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-a84flc6edns1 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-a84flc6edns1 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-a84flc6edns1 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-a84flc6edns1 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-a84flc6edns1 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-a84flc6edns1 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-a84flc6edns1 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-a84flc6edns1 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-a84flc6edns1 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-a84flc6edns1 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-a84flc6edns1 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-a84flc6edns1 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-a84flc6edns1 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-a84flc6edns1 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-a84flc6edns1 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-a84flc6edns1 .prd-score-info:hover, .fl-node-a84flc6edns1 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-a84flc6edns1 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-a84flc6edns1 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-a84flc6edns1 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-a84flc6edns1 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-a84flc6edns1 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-a84flc6edns1 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-a84flc6edns1 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-a84flc6edns1 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-a84flc6edns1 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-a84flc6edns1 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-a84flc6edns1 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-a84flc6edns1 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-a84flc6edns1 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-a84flc6edns1 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-a84flc6edns1 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-a84flc6edns1 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-a84flc6edns1 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-a84flc6edns1 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-a84flc6edns1 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-a84flc6edns1 .prd-rank-desktop {
    display: none;
  }
  .fl-node-a84flc6edns1 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-a84flc6edns1 .prd-content {
    display: contents;
  }
  .fl-node-a84flc6edns1 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-a84flc6edns1 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-a84flc6edns1 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-a84flc6edns1 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-a84flc6edns1 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-a84flc6edns1 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-a84flc6edns1 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-a84flc6edns1 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-a84flc6edns1 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-a84flc6edns1 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-a84flc6edns1 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-a84flc6edns1 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-a84flc6edns1 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-a84flc6edns1 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-a84flc6edns1 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-a84flc6edns1 {
    /* MANTÉM 17PX */
  }
  .fl-node-a84flc6edns1 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-a84flc6edns1 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-a84flc6edns1 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-a84flc6edns1 .prd-title {
    font-size: 20px;
  }
  .fl-node-a84flc6edns1 .prd-description {
    font-size: 17px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-a84flc6edns1 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-a84flc6edns1 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-a84flc6edns1 .prd-card, .fl-node-a84flc6edns1 .prd-card * {
  box-sizing: border-box;
}
.fl-node-a84flc6edns1 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-a84flc6edns1 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-a84flc6edns1 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-a84flc6edns1 .prd-rank-mobile {
  display: none;
}
.fl-node-a84flc6edns1 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-a84flc6edns1 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-a84flc6edns1 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-a84flc6edns1 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-a84flc6edns1 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-a84flc6edns1 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-a84flc6edns1 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-a84flc6edns1 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-a84flc6edns1 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-a84flc6edns1 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-a84flc6edns1 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-a84flc6edns1 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-a84flc6edns1 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-a84flc6edns1 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-a84flc6edns1 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-a84flc6edns1 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-a84flc6edns1 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-a84flc6edns1 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-a84flc6edns1 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-a84flc6edns1 .prd-score-info:hover, .fl-node-a84flc6edns1 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-a84flc6edns1 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-a84flc6edns1 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-a84flc6edns1 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-a84flc6edns1 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-a84flc6edns1 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-a84flc6edns1 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-a84flc6edns1 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-a84flc6edns1 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-a84flc6edns1 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-a84flc6edns1 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-a84flc6edns1 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-a84flc6edns1 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-a84flc6edns1 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-a84flc6edns1 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-a84flc6edns1 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-a84flc6edns1 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-a84flc6edns1 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-a84flc6edns1 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-a84flc6edns1 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-a84flc6edns1 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-a84flc6edns1 .prd-rank-desktop {
    display: none;
  }
  .fl-node-a84flc6edns1 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-a84flc6edns1 .prd-content {
    display: contents;
  }
  .fl-node-a84flc6edns1 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-a84flc6edns1 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-a84flc6edns1 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-a84flc6edns1 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-a84flc6edns1 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-a84flc6edns1 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-a84flc6edns1 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-a84flc6edns1 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-a84flc6edns1 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-a84flc6edns1 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-a84flc6edns1 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-a84flc6edns1 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-a84flc6edns1 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-a84flc6edns1 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-a84flc6edns1 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-a84flc6edns1 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-a84flc6edns1 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-a84flc6edns1 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-a84flc6edns1 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-a84flc6edns1 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-a84flc6edns1 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-a84flc6edns1 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-a84flc6edns1 .prd-title {
    font-size: 20px;
  }
  .fl-node-a84flc6edns1 .prd-description {
    font-size: 17px;
  }
  .fl-node-a84flc6edns1 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-a84flc6edns1 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-a84flc6edns1 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-a84flc6edns1 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-a84flc6edns1 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-a84flc6edns1 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-a84flc6edns1 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-a84flc6edns1 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-a84flc6edns1 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-a84flc6edns1 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-a84flc6edns1 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-a84flc6edns1 .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-pa1sjqudwblx {
  /* =========================
   RESET
========================= */
  /* =========================
   BLOCO PRINCIPAL
========================= */
  /* =========================
   CABEÇALHO
========================= */
  /* =========================
   SETAS DO CARROSSEL
========================= */
  /* =========================
   CARROSSEL
========================= */
  /* =========================
   CARD
   3 POR VEZ NO DESKTOP
========================= */
  /* =========================
   TOPO
========================= */
  /* =========================
   PRODUTO + NOTA
========================= */
  /* =========================
   IMAGEM
========================= */
  /* =========================
   NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE INFO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   SETA DO POPUP
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   TEXTO DA NOTA
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   DIVISOR
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   ESPECIFICAÇÕES
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA DOS BOTÕES
========================= */
  /* =========================
   TEXTO DESLIZAR
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
}
.fl-node-pa1sjqudwblx .nb-picks, .fl-node-pa1sjqudwblx .nb-picks * {
  box-sizing: border-box;
}
.fl-node-pa1sjqudwblx .nb-picks {
  width: 100%;
  padding: 42px;
  background: #f5f5f5;
  border-radius: 24px;
  font-family: inherit;
}
.fl-node-pa1sjqudwblx .nb-picks-head {
  max-width: 700px;
  margin-bottom: 28px;
}
.fl-node-pa1sjqudwblx .nb-picks-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fl-node-pa1sjqudwblx .nb-picks-head h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}
.fl-node-pa1sjqudwblx .nb-picks-head p {
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-pa1sjqudwblx .nb-picks-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}
.fl-node-pa1sjqudwblx .nb-picks-arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #111;
  font-family: inherit;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.fl-node-pa1sjqudwblx .nb-picks-arrow:hover:not(:disabled) {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: translateY(-1px);
}
.fl-node-pa1sjqudwblx .nb-picks-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
.fl-node-pa1sjqudwblx .nb-picks-track {
  width: 100%;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 70px 0 12px;
  margin-top: -70px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fl-node-pa1sjqudwblx .nb-picks-track::-webkit-scrollbar {
  display: none;
}
.fl-node-pa1sjqudwblx .nb-pick-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.025);
  overflow: visible;
}
.fl-node-pa1sjqudwblx .nb-pick-top {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.fl-node-pa1sjqudwblx .nb-pick-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-pa1sjqudwblx .nb-pick-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  background: #f1f1f1;
  border-radius: 999px;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.fl-node-pa1sjqudwblx .nb-pick-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  min-height: 130px;
  background: #fff;
  overflow: visible;
}
.fl-node-pa1sjqudwblx .nb-pick-image {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 18px;
  background: #fff;
}
.fl-node-pa1sjqudwblx .nb-pick-image img {
  display: block;
  width: 100%;
  max-width: 165px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-pa1sjqudwblx .nb-pick-rating {
  position: relative;
  min-width: 0;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  background: #fff;
  border-left: 1px solid #eee;
  overflow: visible;
}
.fl-node-pa1sjqudwblx .nb-pick-score-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  z-index: 50;
}
.fl-node-pa1sjqudwblx .nb-pick-score {
  margin-bottom: 7px;
  color: #111;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-pa1sjqudwblx .nb-pick-score-info {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-pa1sjqudwblx .nb-pick-score-info svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-pa1sjqudwblx .nb-pick-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-pa1sjqudwblx .nb-pick-score-info:hover, .fl-node-pa1sjqudwblx .nb-pick-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-pa1sjqudwblx .nb-pick-score-info:active {
  transform: scale(0.94);
}
.fl-node-pa1sjqudwblx .nb-pick-score-tooltip {
  position: absolute;
  right: -6px;
  bottom: calc(100% + 14px);
  z-index: 99999;
  width: 250px;
  padding: 14px 15px;
  background: #111;
  border-radius: 11px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-pa1sjqudwblx .nb-pick-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-pa1sjqudwblx .nb-pick-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-pa1sjqudwblx .nb-pick-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 8px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-pa1sjqudwblx .nb-pick-score-wrap:hover .nb-pick-score-tooltip, .fl-node-pa1sjqudwblx .nb-pick-score-wrap.is-open .nb-pick-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-pa1sjqudwblx .nb-pick-rating small {
  margin-top: 6px;
  color: #666;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
.fl-node-pa1sjqudwblx .nb-mini-stars {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-pa1sjqudwblx .nb-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-pa1sjqudwblx .nb-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-pa1sjqudwblx .nb-pick-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: #eee;
}
.fl-node-pa1sjqudwblx .nb-pick-title {
  margin: 0 0 12px;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.fl-node-pa1sjqudwblx .nb-pick-description {
  margin: 0 0 20px;
  color: #444;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-pa1sjqudwblx .nb-pick-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-pa1sjqudwblx .nb-pick-specs {
  margin-top: auto;
  margin-bottom: 20px;
}
.fl-node-pa1sjqudwblx .nb-pick-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 17px;
}
.fl-node-pa1sjqudwblx .nb-pick-spec:first-child {
  border-top: 1px solid #eee;
}
.fl-node-pa1sjqudwblx .nb-pick-spec span {
  min-width: 0;
  color: #555;
}
.fl-node-pa1sjqudwblx .nb-pick-spec strong {
  flex-shrink: 0;
  max-width: 58%;
  color: #111;
  font-weight: 700;
  text-align: right;
}
.fl-node-pa1sjqudwblx .nb-pick-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.fl-node-pa1sjqudwblx .nb-pick-button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 11px;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.fl-node-pa1sjqudwblx .nb-pick-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.fl-node-pa1sjqudwblx .nb-button-arrow {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-pa1sjqudwblx .nb-pick-button:hover .nb-button-arrow {
  transform: translateX(3px);
}
.fl-node-pa1sjqudwblx .nb-picks-mobile-hint {
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 12px;
  text-align: right;
}
@media (max-width: 1000px) {
  .fl-node-pa1sjqudwblx {
    /* 2 CARDS POR VEZ */
  }
  .fl-node-pa1sjqudwblx .nb-picks {
    padding: 32px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-track {
    gap: 14px;
    padding-top: 65px;
    margin-top: -65px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-card {
    flex: 0 0 calc((100% - 14px) / 2);
    padding: 18px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-badge {
    font-size: 9px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-product {
    grid-template-columns: minmax(0, 1fr) 115px;
    min-height: 125px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-image {
    padding-right: 16px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-image img {
    max-width: 165px;
    max-height: 115px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-rating {
    min-height: 100px;
    padding-left: 16px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score {
    margin-bottom: 6px;
    font-size: 32px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-rating small {
    margin-top: 5px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-title {
    font-size: 18px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-tooltip {
    width: 240px;
  }
}
@media (max-width: 700px) {
  .fl-node-pa1sjqudwblx {
    /* ESCONDE SETAS */
    /* =========================
     CARROSSEL MOBILE
     MAIS ESPAÇO PARA O POPUP
  ========================= */
    /* =========================
     POPUP MOBILE
     CONTINUA ABRINDO PARA CIMA
  ========================= */
  }
  .fl-node-pa1sjqudwblx .nb-picks {
    padding: 28px 0 28px;
    border-radius: 18px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-head {
    padding: 0 18px;
    margin-bottom: 22px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-head h2 {
    font-size: 27px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-head p {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-arrows {
    display: none;
  }
  .fl-node-pa1sjqudwblx .nb-picks-track {
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 150px 18px 10px;
    margin-top: -150px;
    scroll-padding-left: 18px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-card {
    flex: 0 0 calc(88vw - 26px);
    max-width: 380px;
    padding: 20px;
    border-radius: 16px;
    overflow: visible;
  }
  .fl-node-pa1sjqudwblx .nb-pick-product {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: 120px;
    overflow: visible;
  }
  .fl-node-pa1sjqudwblx .nb-pick-image {
    padding: 0 14px 0 0;
  }
  .fl-node-pa1sjqudwblx .nb-pick-image img {
    max-width: 145px;
    max-height: 90px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-rating {
    min-height: 95px;
    padding-left: 14px;
    overflow: visible;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score {
    margin-bottom: 6px;
    font-size: 34px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-rating small {
    margin-top: 5px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-wrap {
    position: relative;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-tooltip {
    right: -6px;
    left: auto;
    top: auto;
    bottom: calc(100% + 14px);
    width: 240px;
    max-width: calc(100vw - 50px);
    transform: translateY(6px);
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-wrap:hover .nb-pick-score-tooltip, .fl-node-pa1sjqudwblx .nb-pick-score-wrap.is-open .nb-pick-score-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-tooltip::after {
    top: 100%;
    right: 8px;
    left: auto;
    border: 7px solid transparent;
    border-top-color: #111;
  }
  .fl-node-pa1sjqudwblx .nb-pick-title {
    font-size: 20px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-description {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-spec {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-spec strong {
    max-width: 55%;
  }
  .fl-node-pa1sjqudwblx .nb-pick-button {
    min-height: 54px;
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-picks-mobile-hint {
    display: block;
    margin-top: 8px;
    padding: 0 18px;
    color: #777;
    font-size: 12px;
    text-align: right;
  }
}
@media (max-width: 390px) {
  .fl-node-pa1sjqudwblx .nb-pick-card {
    flex-basis: calc(91vw - 24px);
  }
  .fl-node-pa1sjqudwblx .nb-pick-product {
    grid-template-columns: minmax(0, 1fr) 95px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score {
    font-size: 29px;
  }
  .fl-node-pa1sjqudwblx .nb-mini-stars {
    font-size: 13px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-rating small {
    font-size: 11px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-description {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-spec {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-button {
    font-size: 17px;
  }
  .fl-node-pa1sjqudwblx .nb-pick-score-tooltip {
    right: -4px;
    width: 220px;
    max-width: calc(100vw - 42px);
  }
}
@charset "UTF-8";
.fl-node-bpzhk69jo475 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-bpzhk69jo475 .prd-card, .fl-node-bpzhk69jo475 .prd-card * {
  box-sizing: border-box;
}
.fl-node-bpzhk69jo475 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-bpzhk69jo475 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-bpzhk69jo475 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-bpzhk69jo475 .prd-rank-mobile {
  display: none;
}
.fl-node-bpzhk69jo475 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-bpzhk69jo475 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-bpzhk69jo475 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-bpzhk69jo475 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-bpzhk69jo475 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-bpzhk69jo475 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-bpzhk69jo475 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-bpzhk69jo475 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-bpzhk69jo475 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-bpzhk69jo475 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-bpzhk69jo475 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-bpzhk69jo475 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-bpzhk69jo475 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-bpzhk69jo475 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-bpzhk69jo475 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-bpzhk69jo475 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-bpzhk69jo475 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-bpzhk69jo475 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-bpzhk69jo475 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-bpzhk69jo475 .prd-score-info:hover, .fl-node-bpzhk69jo475 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-bpzhk69jo475 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-bpzhk69jo475 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-bpzhk69jo475 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-bpzhk69jo475 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-bpzhk69jo475 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-bpzhk69jo475 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-bpzhk69jo475 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-bpzhk69jo475 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-bpzhk69jo475 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-bpzhk69jo475 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-bpzhk69jo475 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-bpzhk69jo475 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-bpzhk69jo475 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-bpzhk69jo475 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-bpzhk69jo475 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-bpzhk69jo475 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-bpzhk69jo475 .prd-rank-desktop {
    display: none;
  }
  .fl-node-bpzhk69jo475 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-bpzhk69jo475 .prd-content {
    display: contents;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-bpzhk69jo475 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-bpzhk69jo475 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-bpzhk69jo475 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-bpzhk69jo475 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-bpzhk69jo475 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-bpzhk69jo475 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-bpzhk69jo475 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-bpzhk69jo475 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-bpzhk69jo475 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-bpzhk69jo475 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-bpzhk69jo475 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-bpzhk69jo475 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-bpzhk69jo475 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-bpzhk69jo475 {
    /* MANTÉM 17PX */
  }
  .fl-node-bpzhk69jo475 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-bpzhk69jo475 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-bpzhk69jo475 .prd-title {
    font-size: 20px;
  }
  .fl-node-bpzhk69jo475 .prd-description {
    font-size: 17px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-bpzhk69jo475 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-bpzhk69jo475 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-bpzhk69jo475 .prd-card, .fl-node-bpzhk69jo475 .prd-card * {
  box-sizing: border-box;
}
.fl-node-bpzhk69jo475 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-bpzhk69jo475 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-bpzhk69jo475 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-bpzhk69jo475 .prd-rank-mobile {
  display: none;
}
.fl-node-bpzhk69jo475 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-bpzhk69jo475 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-bpzhk69jo475 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-bpzhk69jo475 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-bpzhk69jo475 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-bpzhk69jo475 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-bpzhk69jo475 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-bpzhk69jo475 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-bpzhk69jo475 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-bpzhk69jo475 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-bpzhk69jo475 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-bpzhk69jo475 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-bpzhk69jo475 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-bpzhk69jo475 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-bpzhk69jo475 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-bpzhk69jo475 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-bpzhk69jo475 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-bpzhk69jo475 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-bpzhk69jo475 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-bpzhk69jo475 .prd-score-info:hover, .fl-node-bpzhk69jo475 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-bpzhk69jo475 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-bpzhk69jo475 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-bpzhk69jo475 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-bpzhk69jo475 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-bpzhk69jo475 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-bpzhk69jo475 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-bpzhk69jo475 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-bpzhk69jo475 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-bpzhk69jo475 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-bpzhk69jo475 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-bpzhk69jo475 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-bpzhk69jo475 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-bpzhk69jo475 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-bpzhk69jo475 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-bpzhk69jo475 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-bpzhk69jo475 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-bpzhk69jo475 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-bpzhk69jo475 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-bpzhk69jo475 .prd-rank-desktop {
    display: none;
  }
  .fl-node-bpzhk69jo475 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-bpzhk69jo475 .prd-content {
    display: contents;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-bpzhk69jo475 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-bpzhk69jo475 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-bpzhk69jo475 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-bpzhk69jo475 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-bpzhk69jo475 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-bpzhk69jo475 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-bpzhk69jo475 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-bpzhk69jo475 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-bpzhk69jo475 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-bpzhk69jo475 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-bpzhk69jo475 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-bpzhk69jo475 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-bpzhk69jo475 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-bpzhk69jo475 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-bpzhk69jo475 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-bpzhk69jo475 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-bpzhk69jo475 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-bpzhk69jo475 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-bpzhk69jo475 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-bpzhk69jo475 .prd-title {
    font-size: 20px;
  }
  .fl-node-bpzhk69jo475 .prd-description {
    font-size: 17px;
  }
  .fl-node-bpzhk69jo475 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-bpzhk69jo475 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-bpzhk69jo475 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-bpzhk69jo475 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-bpzhk69jo475 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-bpzhk69jo475 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-bpzhk69jo475 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-bpzhk69jo475 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-bpzhk69jo475 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-bpzhk69jo475 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-bpzhk69jo475 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-bpzhk69jo475 .prd-score-text {
    font-size: 11px;
  }
}
.fl-node-h829jf3cdmxb {
  /* =========================
   AUTORA DO ARTIGO
========================= */
  /* =========================
   MOBILE
========================= */
}
.fl-node-h829jf3cdmxb .mp-author, .fl-node-h829jf3cdmxb .mp-author * {
  box-sizing: border-box;
}
.fl-node-h829jf3cdmxb .mp-author {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  font-family: inherit;
}
.fl-node-h829jf3cdmxb .mp-author-photo {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
}
.fl-node-h829jf3cdmxb .mp-author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.fl-node-h829jf3cdmxb .mp-author-name {
  margin: 0 0 3px;
  font-family: inherit;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-h829jf3cdmxb .mp-author-date {
  margin: 0;
  font-family: inherit;
  color: #8d8d8d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .fl-node-h829jf3cdmxb .mp-author {
    gap: 12px;
  }
  .fl-node-h829jf3cdmxb .mp-author-photo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }
  .fl-node-h829jf3cdmxb .mp-author-name {
    font-size: 15px;
  }
  .fl-node-h829jf3cdmxb .mp-author-date {
    font-size: 12px;
  }
}
@charset "UTF-8";
.fl-node-gdlk5es9t4rc {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-gdlk5es9t4rc .prd-card, .fl-node-gdlk5es9t4rc .prd-card * {
  box-sizing: border-box;
}
.fl-node-gdlk5es9t4rc .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-gdlk5es9t4rc .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-gdlk5es9t4rc .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-gdlk5es9t4rc .prd-rank-mobile {
  display: none;
}
.fl-node-gdlk5es9t4rc .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-gdlk5es9t4rc .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-gdlk5es9t4rc .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-gdlk5es9t4rc .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-gdlk5es9t4rc .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-gdlk5es9t4rc .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-gdlk5es9t4rc .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-gdlk5es9t4rc .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-gdlk5es9t4rc .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-gdlk5es9t4rc .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-gdlk5es9t4rc .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-gdlk5es9t4rc .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-gdlk5es9t4rc .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-gdlk5es9t4rc .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-gdlk5es9t4rc .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-gdlk5es9t4rc .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-gdlk5es9t4rc .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-gdlk5es9t4rc .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-gdlk5es9t4rc .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-gdlk5es9t4rc .prd-score-info:hover, .fl-node-gdlk5es9t4rc .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-gdlk5es9t4rc .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-gdlk5es9t4rc .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-gdlk5es9t4rc .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-gdlk5es9t4rc .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-gdlk5es9t4rc .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-gdlk5es9t4rc .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-gdlk5es9t4rc .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-gdlk5es9t4rc .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-gdlk5es9t4rc .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    padding: 28px 20px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    max-width: 165px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-gdlk5es9t4rc .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-gdlk5es9t4rc {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-gdlk5es9t4rc .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-desktop {
    display: none;
  }
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-gdlk5es9t4rc .prd-content {
    display: contents;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-gdlk5es9t4rc .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-gdlk5es9t4rc .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-gdlk5es9t4rc .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number {
    font-size: 38px;
  }
  .fl-node-gdlk5es9t4rc .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-text {
    margin-top: 0;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number-wrap {
    position: static;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-gdlk5es9t4rc .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-gdlk5es9t4rc .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-gdlk5es9t4rc .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-gdlk5es9t4rc .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-gdlk5es9t4rc .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-gdlk5es9t4rc {
    /* MANTÉM 17PX */
  }
  .fl-node-gdlk5es9t4rc .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-gdlk5es9t4rc .prd-title {
    font-size: 20px;
  }
  .fl-node-gdlk5es9t4rc .prd-description {
    font-size: 17px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number {
    font-size: 34px;
  }
  .fl-node-gdlk5es9t4rc .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-gdlk5es9t4rc .prd-card, .fl-node-gdlk5es9t4rc .prd-card * {
  box-sizing: border-box;
}
.fl-node-gdlk5es9t4rc .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-gdlk5es9t4rc .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-gdlk5es9t4rc .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-gdlk5es9t4rc .prd-rank-mobile {
  display: none;
}
.fl-node-gdlk5es9t4rc .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-gdlk5es9t4rc .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-gdlk5es9t4rc .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-gdlk5es9t4rc .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-gdlk5es9t4rc .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-gdlk5es9t4rc .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-gdlk5es9t4rc .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-gdlk5es9t4rc .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-gdlk5es9t4rc .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-gdlk5es9t4rc .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-gdlk5es9t4rc .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-gdlk5es9t4rc .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-gdlk5es9t4rc .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-gdlk5es9t4rc .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-gdlk5es9t4rc .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-gdlk5es9t4rc .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-gdlk5es9t4rc .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-gdlk5es9t4rc .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-gdlk5es9t4rc .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-gdlk5es9t4rc .prd-score-info:hover, .fl-node-gdlk5es9t4rc .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-gdlk5es9t4rc .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-gdlk5es9t4rc .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-gdlk5es9t4rc .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-gdlk5es9t4rc .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-gdlk5es9t4rc .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-gdlk5es9t4rc .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-gdlk5es9t4rc .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-gdlk5es9t4rc .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-gdlk5es9t4rc .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-gdlk5es9t4rc .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    padding: 28px 20px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    max-width: 165px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-gdlk5es9t4rc .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-gdlk5es9t4rc {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-gdlk5es9t4rc .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-desktop {
    display: none;
  }
  .fl-node-gdlk5es9t4rc .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-gdlk5es9t4rc .prd-content {
    display: contents;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-gdlk5es9t4rc .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-gdlk5es9t4rc .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-gdlk5es9t4rc .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number {
    font-size: 38px;
  }
  .fl-node-gdlk5es9t4rc .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-gdlk5es9t4rc .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-gdlk5es9t4rc .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-gdlk5es9t4rc .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-gdlk5es9t4rc .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-gdlk5es9t4rc .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-gdlk5es9t4rc .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-gdlk5es9t4rc .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-gdlk5es9t4rc .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-gdlk5es9t4rc {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-gdlk5es9t4rc .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-gdlk5es9t4rc .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-gdlk5es9t4rc .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-gdlk5es9t4rc .prd-title {
    font-size: 20px;
  }
  .fl-node-gdlk5es9t4rc .prd-description {
    font-size: 17px;
  }
  .fl-node-gdlk5es9t4rc .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number {
    font-size: 34px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-gdlk5es9t4rc .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-gdlk5es9t4rc .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-gdlk5es9t4rc .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-gdlk5es9t4rc .prd-score-number {
    font-size: 31px;
  }
  .fl-node-gdlk5es9t4rc .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-gdlk5es9t4rc .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-74dhg06l2t15 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-74dhg06l2t15 .prd-card, .fl-node-74dhg06l2t15 .prd-card * {
  box-sizing: border-box;
}
.fl-node-74dhg06l2t15 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-74dhg06l2t15 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-74dhg06l2t15 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-74dhg06l2t15 .prd-rank-mobile {
  display: none;
}
.fl-node-74dhg06l2t15 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-74dhg06l2t15 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-74dhg06l2t15 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-74dhg06l2t15 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-74dhg06l2t15 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-74dhg06l2t15 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-74dhg06l2t15 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-74dhg06l2t15 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-74dhg06l2t15 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-74dhg06l2t15 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-74dhg06l2t15 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-74dhg06l2t15 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-74dhg06l2t15 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-74dhg06l2t15 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-74dhg06l2t15 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-74dhg06l2t15 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-74dhg06l2t15 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-74dhg06l2t15 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-74dhg06l2t15 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-74dhg06l2t15 .prd-score-info:hover, .fl-node-74dhg06l2t15 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-74dhg06l2t15 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-74dhg06l2t15 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-74dhg06l2t15 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-74dhg06l2t15 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-74dhg06l2t15 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-74dhg06l2t15 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-74dhg06l2t15 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-74dhg06l2t15 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-74dhg06l2t15 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-74dhg06l2t15 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-74dhg06l2t15 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-74dhg06l2t15 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-74dhg06l2t15 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-74dhg06l2t15 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-74dhg06l2t15 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-74dhg06l2t15 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-74dhg06l2t15 .prd-rank-desktop {
    display: none;
  }
  .fl-node-74dhg06l2t15 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-74dhg06l2t15 .prd-content {
    display: contents;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-74dhg06l2t15 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-74dhg06l2t15 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-74dhg06l2t15 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-74dhg06l2t15 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-74dhg06l2t15 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-74dhg06l2t15 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-74dhg06l2t15 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-74dhg06l2t15 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-74dhg06l2t15 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-74dhg06l2t15 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-74dhg06l2t15 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-74dhg06l2t15 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-74dhg06l2t15 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-74dhg06l2t15 {
    /* MANTÉM 17PX */
  }
  .fl-node-74dhg06l2t15 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-74dhg06l2t15 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-74dhg06l2t15 .prd-title {
    font-size: 20px;
  }
  .fl-node-74dhg06l2t15 .prd-description {
    font-size: 17px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-74dhg06l2t15 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-74dhg06l2t15 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-74dhg06l2t15 .prd-card, .fl-node-74dhg06l2t15 .prd-card * {
  box-sizing: border-box;
}
.fl-node-74dhg06l2t15 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-74dhg06l2t15 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-74dhg06l2t15 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-74dhg06l2t15 .prd-rank-mobile {
  display: none;
}
.fl-node-74dhg06l2t15 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-74dhg06l2t15 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-74dhg06l2t15 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-74dhg06l2t15 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-74dhg06l2t15 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-74dhg06l2t15 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-74dhg06l2t15 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-74dhg06l2t15 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-74dhg06l2t15 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-74dhg06l2t15 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-74dhg06l2t15 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-74dhg06l2t15 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-74dhg06l2t15 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-74dhg06l2t15 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-74dhg06l2t15 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-74dhg06l2t15 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-74dhg06l2t15 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-74dhg06l2t15 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-74dhg06l2t15 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-74dhg06l2t15 .prd-score-info:hover, .fl-node-74dhg06l2t15 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-74dhg06l2t15 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-74dhg06l2t15 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-74dhg06l2t15 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-74dhg06l2t15 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-74dhg06l2t15 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-74dhg06l2t15 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-74dhg06l2t15 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-74dhg06l2t15 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-74dhg06l2t15 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-74dhg06l2t15 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-74dhg06l2t15 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-74dhg06l2t15 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-74dhg06l2t15 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-74dhg06l2t15 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-74dhg06l2t15 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-74dhg06l2t15 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-74dhg06l2t15 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-74dhg06l2t15 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-74dhg06l2t15 .prd-rank-desktop {
    display: none;
  }
  .fl-node-74dhg06l2t15 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-74dhg06l2t15 .prd-content {
    display: contents;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-74dhg06l2t15 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-74dhg06l2t15 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-74dhg06l2t15 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-74dhg06l2t15 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-74dhg06l2t15 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-74dhg06l2t15 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-74dhg06l2t15 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-74dhg06l2t15 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-74dhg06l2t15 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-74dhg06l2t15 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-74dhg06l2t15 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-74dhg06l2t15 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-74dhg06l2t15 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-74dhg06l2t15 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-74dhg06l2t15 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-74dhg06l2t15 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-74dhg06l2t15 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-74dhg06l2t15 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-74dhg06l2t15 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-74dhg06l2t15 .prd-title {
    font-size: 20px;
  }
  .fl-node-74dhg06l2t15 .prd-description {
    font-size: 17px;
  }
  .fl-node-74dhg06l2t15 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-74dhg06l2t15 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-74dhg06l2t15 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-74dhg06l2t15 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-74dhg06l2t15 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-74dhg06l2t15 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-74dhg06l2t15 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-74dhg06l2t15 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-74dhg06l2t15 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-74dhg06l2t15 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-74dhg06l2t15 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-74dhg06l2t15 .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-rjqtpe43l216 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-rjqtpe43l216 .prd-card, .fl-node-rjqtpe43l216 .prd-card * {
  box-sizing: border-box;
}
.fl-node-rjqtpe43l216 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-rjqtpe43l216 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-rjqtpe43l216 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-rjqtpe43l216 .prd-rank-mobile {
  display: none;
}
.fl-node-rjqtpe43l216 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-rjqtpe43l216 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-rjqtpe43l216 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-rjqtpe43l216 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-rjqtpe43l216 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-rjqtpe43l216 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-rjqtpe43l216 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-rjqtpe43l216 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-rjqtpe43l216 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-rjqtpe43l216 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-rjqtpe43l216 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-rjqtpe43l216 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-rjqtpe43l216 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-rjqtpe43l216 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-rjqtpe43l216 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-rjqtpe43l216 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-rjqtpe43l216 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-rjqtpe43l216 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-rjqtpe43l216 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-rjqtpe43l216 .prd-score-info:hover, .fl-node-rjqtpe43l216 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-rjqtpe43l216 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-rjqtpe43l216 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-rjqtpe43l216 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-rjqtpe43l216 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-rjqtpe43l216 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-rjqtpe43l216 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-rjqtpe43l216 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-rjqtpe43l216 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-rjqtpe43l216 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-rjqtpe43l216 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-rjqtpe43l216 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-rjqtpe43l216 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-rjqtpe43l216 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-rjqtpe43l216 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-rjqtpe43l216 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-rjqtpe43l216 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-rjqtpe43l216 .prd-rank-desktop {
    display: none;
  }
  .fl-node-rjqtpe43l216 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-rjqtpe43l216 .prd-content {
    display: contents;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-rjqtpe43l216 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-rjqtpe43l216 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-rjqtpe43l216 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-rjqtpe43l216 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-rjqtpe43l216 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-rjqtpe43l216 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-rjqtpe43l216 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-rjqtpe43l216 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-rjqtpe43l216 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-rjqtpe43l216 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-rjqtpe43l216 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-rjqtpe43l216 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-rjqtpe43l216 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-rjqtpe43l216 {
    /* MANTÉM 17PX */
  }
  .fl-node-rjqtpe43l216 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-rjqtpe43l216 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-rjqtpe43l216 .prd-title {
    font-size: 20px;
  }
  .fl-node-rjqtpe43l216 .prd-description {
    font-size: 17px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-rjqtpe43l216 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-rjqtpe43l216 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-rjqtpe43l216 .prd-card, .fl-node-rjqtpe43l216 .prd-card * {
  box-sizing: border-box;
}
.fl-node-rjqtpe43l216 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-rjqtpe43l216 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-rjqtpe43l216 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-rjqtpe43l216 .prd-rank-mobile {
  display: none;
}
.fl-node-rjqtpe43l216 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-rjqtpe43l216 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-rjqtpe43l216 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-rjqtpe43l216 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-rjqtpe43l216 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-rjqtpe43l216 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-rjqtpe43l216 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-rjqtpe43l216 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-rjqtpe43l216 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-rjqtpe43l216 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-rjqtpe43l216 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-rjqtpe43l216 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-rjqtpe43l216 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-rjqtpe43l216 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-rjqtpe43l216 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-rjqtpe43l216 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-rjqtpe43l216 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-rjqtpe43l216 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-rjqtpe43l216 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-rjqtpe43l216 .prd-score-info:hover, .fl-node-rjqtpe43l216 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-rjqtpe43l216 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-rjqtpe43l216 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-rjqtpe43l216 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-rjqtpe43l216 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-rjqtpe43l216 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-rjqtpe43l216 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-rjqtpe43l216 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-rjqtpe43l216 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-rjqtpe43l216 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-rjqtpe43l216 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-rjqtpe43l216 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-rjqtpe43l216 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-rjqtpe43l216 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-rjqtpe43l216 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-rjqtpe43l216 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-rjqtpe43l216 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-rjqtpe43l216 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-rjqtpe43l216 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-rjqtpe43l216 .prd-rank-desktop {
    display: none;
  }
  .fl-node-rjqtpe43l216 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-rjqtpe43l216 .prd-content {
    display: contents;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-rjqtpe43l216 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-rjqtpe43l216 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-rjqtpe43l216 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-rjqtpe43l216 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-rjqtpe43l216 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-rjqtpe43l216 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-rjqtpe43l216 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-rjqtpe43l216 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-rjqtpe43l216 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-rjqtpe43l216 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-rjqtpe43l216 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-rjqtpe43l216 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-rjqtpe43l216 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-rjqtpe43l216 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-rjqtpe43l216 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-rjqtpe43l216 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-rjqtpe43l216 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-rjqtpe43l216 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-rjqtpe43l216 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-rjqtpe43l216 .prd-title {
    font-size: 20px;
  }
  .fl-node-rjqtpe43l216 .prd-description {
    font-size: 17px;
  }
  .fl-node-rjqtpe43l216 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-rjqtpe43l216 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-rjqtpe43l216 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-rjqtpe43l216 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-rjqtpe43l216 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-rjqtpe43l216 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-rjqtpe43l216 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-rjqtpe43l216 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-rjqtpe43l216 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-rjqtpe43l216 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-rjqtpe43l216 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-rjqtpe43l216 .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-8vwu7k0bsic3 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-8vwu7k0bsic3 .prd-card, .fl-node-8vwu7k0bsic3 .prd-card * {
  box-sizing: border-box;
}
.fl-node-8vwu7k0bsic3 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-8vwu7k0bsic3 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-8vwu7k0bsic3 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-8vwu7k0bsic3 .prd-rank-mobile {
  display: none;
}
.fl-node-8vwu7k0bsic3 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-8vwu7k0bsic3 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-8vwu7k0bsic3 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-8vwu7k0bsic3 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-8vwu7k0bsic3 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-8vwu7k0bsic3 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-8vwu7k0bsic3 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-8vwu7k0bsic3 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-8vwu7k0bsic3 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-8vwu7k0bsic3 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-8vwu7k0bsic3 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-8vwu7k0bsic3 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-8vwu7k0bsic3 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-8vwu7k0bsic3 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-8vwu7k0bsic3 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-8vwu7k0bsic3 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-info:hover, .fl-node-8vwu7k0bsic3 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-8vwu7k0bsic3 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-8vwu7k0bsic3 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-8vwu7k0bsic3 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-8vwu7k0bsic3 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-8vwu7k0bsic3 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-8vwu7k0bsic3 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-8vwu7k0bsic3 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-8vwu7k0bsic3 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-8vwu7k0bsic3 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-8vwu7k0bsic3 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-desktop {
    display: none;
  }
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-8vwu7k0bsic3 .prd-content {
    display: contents;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-8vwu7k0bsic3 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-8vwu7k0bsic3 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-8vwu7k0bsic3 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-8vwu7k0bsic3 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-8vwu7k0bsic3 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-8vwu7k0bsic3 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-8vwu7k0bsic3 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-8vwu7k0bsic3 {
    /* MANTÉM 17PX */
  }
  .fl-node-8vwu7k0bsic3 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-8vwu7k0bsic3 .prd-title {
    font-size: 20px;
  }
  .fl-node-8vwu7k0bsic3 .prd-description {
    font-size: 17px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-8vwu7k0bsic3 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-8vwu7k0bsic3 .prd-card, .fl-node-8vwu7k0bsic3 .prd-card * {
  box-sizing: border-box;
}
.fl-node-8vwu7k0bsic3 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-8vwu7k0bsic3 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-8vwu7k0bsic3 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-8vwu7k0bsic3 .prd-rank-mobile {
  display: none;
}
.fl-node-8vwu7k0bsic3 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-8vwu7k0bsic3 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-8vwu7k0bsic3 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-8vwu7k0bsic3 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-8vwu7k0bsic3 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-8vwu7k0bsic3 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-8vwu7k0bsic3 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-8vwu7k0bsic3 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-8vwu7k0bsic3 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-8vwu7k0bsic3 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-8vwu7k0bsic3 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-8vwu7k0bsic3 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-8vwu7k0bsic3 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-8vwu7k0bsic3 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-8vwu7k0bsic3 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-8vwu7k0bsic3 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-8vwu7k0bsic3 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-info:hover, .fl-node-8vwu7k0bsic3 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-8vwu7k0bsic3 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-8vwu7k0bsic3 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-8vwu7k0bsic3 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-8vwu7k0bsic3 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-8vwu7k0bsic3 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-8vwu7k0bsic3 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-8vwu7k0bsic3 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-8vwu7k0bsic3 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-8vwu7k0bsic3 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-8vwu7k0bsic3 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-8vwu7k0bsic3 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-8vwu7k0bsic3 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-desktop {
    display: none;
  }
  .fl-node-8vwu7k0bsic3 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-8vwu7k0bsic3 .prd-content {
    display: contents;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-8vwu7k0bsic3 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-8vwu7k0bsic3 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-8vwu7k0bsic3 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-8vwu7k0bsic3 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-8vwu7k0bsic3 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-8vwu7k0bsic3 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-8vwu7k0bsic3 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-8vwu7k0bsic3 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-8vwu7k0bsic3 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-8vwu7k0bsic3 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-8vwu7k0bsic3 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-8vwu7k0bsic3 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-8vwu7k0bsic3 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-8vwu7k0bsic3 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-8vwu7k0bsic3 .prd-title {
    font-size: 20px;
  }
  .fl-node-8vwu7k0bsic3 .prd-description {
    font-size: 17px;
  }
  .fl-node-8vwu7k0bsic3 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-8vwu7k0bsic3 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-8vwu7k0bsic3 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-8vwu7k0bsic3 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-8vwu7k0bsic3 .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-y8buspah0o4z {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-y8buspah0o4z .prd-card, .fl-node-y8buspah0o4z .prd-card * {
  box-sizing: border-box;
}
.fl-node-y8buspah0o4z .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-y8buspah0o4z .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-y8buspah0o4z .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-y8buspah0o4z .prd-rank-mobile {
  display: none;
}
.fl-node-y8buspah0o4z .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-y8buspah0o4z .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-y8buspah0o4z .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-y8buspah0o4z .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-y8buspah0o4z .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-y8buspah0o4z .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-y8buspah0o4z .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-y8buspah0o4z .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-y8buspah0o4z .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-y8buspah0o4z .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-y8buspah0o4z .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-y8buspah0o4z .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-y8buspah0o4z .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-y8buspah0o4z .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-y8buspah0o4z .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-y8buspah0o4z .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-y8buspah0o4z .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-y8buspah0o4z .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-y8buspah0o4z .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-y8buspah0o4z .prd-score-info:hover, .fl-node-y8buspah0o4z .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-y8buspah0o4z .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-y8buspah0o4z .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-y8buspah0o4z .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-y8buspah0o4z .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-y8buspah0o4z .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-y8buspah0o4z .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-y8buspah0o4z .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-y8buspah0o4z .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-y8buspah0o4z .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-y8buspah0o4z .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-y8buspah0o4z .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-y8buspah0o4z .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-y8buspah0o4z .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-y8buspah0o4z .prd-media {
    padding: 28px 20px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    max-width: 165px;
  }
  .fl-node-y8buspah0o4z .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-y8buspah0o4z .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-y8buspah0o4z .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-y8buspah0o4z {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-y8buspah0o4z .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-y8buspah0o4z .prd-rank-desktop {
    display: none;
  }
  .fl-node-y8buspah0o4z .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-y8buspah0o4z .prd-content {
    display: contents;
  }
  .fl-node-y8buspah0o4z .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-y8buspah0o4z .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-y8buspah0o4z .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-y8buspah0o4z .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-y8buspah0o4z .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-y8buspah0o4z .prd-score-number {
    font-size: 38px;
  }
  .fl-node-y8buspah0o4z .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-y8buspah0o4z .prd-score-text {
    margin-top: 0;
  }
  .fl-node-y8buspah0o4z .prd-score-number-wrap {
    position: static;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-y8buspah0o4z .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-y8buspah0o4z .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-y8buspah0o4z .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-y8buspah0o4z .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-y8buspah0o4z .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-y8buspah0o4z .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-y8buspah0o4z {
    /* MANTÉM 17PX */
  }
  .fl-node-y8buspah0o4z .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-y8buspah0o4z .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-y8buspah0o4z .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-y8buspah0o4z .prd-title {
    font-size: 20px;
  }
  .fl-node-y8buspah0o4z .prd-description {
    font-size: 17px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-y8buspah0o4z .prd-score-number {
    font-size: 34px;
  }
  .fl-node-y8buspah0o4z .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-y8buspah0o4z .prd-card, .fl-node-y8buspah0o4z .prd-card * {
  box-sizing: border-box;
}
.fl-node-y8buspah0o4z .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-y8buspah0o4z .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-y8buspah0o4z .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-y8buspah0o4z .prd-rank-mobile {
  display: none;
}
.fl-node-y8buspah0o4z .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-y8buspah0o4z .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-y8buspah0o4z .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-y8buspah0o4z .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-y8buspah0o4z .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-y8buspah0o4z .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-y8buspah0o4z .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-y8buspah0o4z .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-y8buspah0o4z .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-y8buspah0o4z .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-y8buspah0o4z .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-y8buspah0o4z .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-y8buspah0o4z .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-y8buspah0o4z .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-y8buspah0o4z .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-y8buspah0o4z .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-y8buspah0o4z .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-y8buspah0o4z .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-y8buspah0o4z .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-y8buspah0o4z .prd-score-info:hover, .fl-node-y8buspah0o4z .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-y8buspah0o4z .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-y8buspah0o4z .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-y8buspah0o4z .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-y8buspah0o4z .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-y8buspah0o4z .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-y8buspah0o4z .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-y8buspah0o4z .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-y8buspah0o4z .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-y8buspah0o4z .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-y8buspah0o4z .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-y8buspah0o4z .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-y8buspah0o4z .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-y8buspah0o4z .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-y8buspah0o4z .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-y8buspah0o4z .prd-media {
    padding: 28px 20px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    max-width: 165px;
  }
  .fl-node-y8buspah0o4z .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-y8buspah0o4z .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-y8buspah0o4z .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-y8buspah0o4z {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-y8buspah0o4z .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-y8buspah0o4z .prd-rank-desktop {
    display: none;
  }
  .fl-node-y8buspah0o4z .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-y8buspah0o4z .prd-content {
    display: contents;
  }
  .fl-node-y8buspah0o4z .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-y8buspah0o4z .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-y8buspah0o4z .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-y8buspah0o4z .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-y8buspah0o4z .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-y8buspah0o4z .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-y8buspah0o4z .prd-score-number {
    font-size: 38px;
  }
  .fl-node-y8buspah0o4z .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-y8buspah0o4z .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-y8buspah0o4z .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-y8buspah0o4z .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-y8buspah0o4z .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-y8buspah0o4z .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-y8buspah0o4z .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-y8buspah0o4z .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-y8buspah0o4z .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-y8buspah0o4z .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-y8buspah0o4z {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-y8buspah0o4z .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-y8buspah0o4z .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-y8buspah0o4z .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-y8buspah0o4z .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-y8buspah0o4z .prd-title {
    font-size: 20px;
  }
  .fl-node-y8buspah0o4z .prd-description {
    font-size: 17px;
  }
  .fl-node-y8buspah0o4z .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-y8buspah0o4z .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-y8buspah0o4z .prd-score-number {
    font-size: 34px;
  }
  .fl-node-y8buspah0o4z .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-y8buspah0o4z .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-y8buspah0o4z .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-y8buspah0o4z .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-y8buspah0o4z .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-y8buspah0o4z .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-y8buspah0o4z .prd-score-number {
    font-size: 31px;
  }
  .fl-node-y8buspah0o4z .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-y8buspah0o4z .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-cmihz432tpfa {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-cmihz432tpfa .prd-card, .fl-node-cmihz432tpfa .prd-card * {
  box-sizing: border-box;
}
.fl-node-cmihz432tpfa .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-cmihz432tpfa .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-cmihz432tpfa .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-cmihz432tpfa .prd-rank-mobile {
  display: none;
}
.fl-node-cmihz432tpfa .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-cmihz432tpfa .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-cmihz432tpfa .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-cmihz432tpfa .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-cmihz432tpfa .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-cmihz432tpfa .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-cmihz432tpfa .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-cmihz432tpfa .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-cmihz432tpfa .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-cmihz432tpfa .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-cmihz432tpfa .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-cmihz432tpfa .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-cmihz432tpfa .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-cmihz432tpfa .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-cmihz432tpfa .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-cmihz432tpfa .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-cmihz432tpfa .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-cmihz432tpfa .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-cmihz432tpfa .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-cmihz432tpfa .prd-score-info:hover, .fl-node-cmihz432tpfa .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-cmihz432tpfa .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-cmihz432tpfa .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-cmihz432tpfa .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-cmihz432tpfa .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-cmihz432tpfa .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-cmihz432tpfa .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-cmihz432tpfa .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-cmihz432tpfa .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-cmihz432tpfa .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-cmihz432tpfa .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-cmihz432tpfa .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-cmihz432tpfa .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-cmihz432tpfa .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-cmihz432tpfa .prd-media {
    padding: 28px 20px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    max-width: 165px;
  }
  .fl-node-cmihz432tpfa .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-cmihz432tpfa .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-cmihz432tpfa .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-cmihz432tpfa {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-cmihz432tpfa .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-cmihz432tpfa .prd-rank-desktop {
    display: none;
  }
  .fl-node-cmihz432tpfa .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-cmihz432tpfa .prd-content {
    display: contents;
  }
  .fl-node-cmihz432tpfa .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-cmihz432tpfa .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-cmihz432tpfa .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-cmihz432tpfa .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-cmihz432tpfa .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-cmihz432tpfa .prd-score-number {
    font-size: 38px;
  }
  .fl-node-cmihz432tpfa .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-cmihz432tpfa .prd-score-text {
    margin-top: 0;
  }
  .fl-node-cmihz432tpfa .prd-score-number-wrap {
    position: static;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-cmihz432tpfa .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-cmihz432tpfa .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-cmihz432tpfa .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-cmihz432tpfa .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-cmihz432tpfa .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-cmihz432tpfa .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-cmihz432tpfa {
    /* MANTÉM 17PX */
  }
  .fl-node-cmihz432tpfa .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-cmihz432tpfa .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-cmihz432tpfa .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-cmihz432tpfa .prd-title {
    font-size: 20px;
  }
  .fl-node-cmihz432tpfa .prd-description {
    font-size: 17px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-cmihz432tpfa .prd-score-number {
    font-size: 34px;
  }
  .fl-node-cmihz432tpfa .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-cmihz432tpfa .prd-card, .fl-node-cmihz432tpfa .prd-card * {
  box-sizing: border-box;
}
.fl-node-cmihz432tpfa .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-cmihz432tpfa .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-cmihz432tpfa .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-cmihz432tpfa .prd-rank-mobile {
  display: none;
}
.fl-node-cmihz432tpfa .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-cmihz432tpfa .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-cmihz432tpfa .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-cmihz432tpfa .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-cmihz432tpfa .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-cmihz432tpfa .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-cmihz432tpfa .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-cmihz432tpfa .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-cmihz432tpfa .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-cmihz432tpfa .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-cmihz432tpfa .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-cmihz432tpfa .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-cmihz432tpfa .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-cmihz432tpfa .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-cmihz432tpfa .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-cmihz432tpfa .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-cmihz432tpfa .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-cmihz432tpfa .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-cmihz432tpfa .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-cmihz432tpfa .prd-score-info:hover, .fl-node-cmihz432tpfa .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-cmihz432tpfa .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-cmihz432tpfa .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-cmihz432tpfa .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-cmihz432tpfa .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-cmihz432tpfa .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-cmihz432tpfa .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-cmihz432tpfa .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-cmihz432tpfa .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-cmihz432tpfa .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-cmihz432tpfa .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-cmihz432tpfa .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-cmihz432tpfa .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-cmihz432tpfa .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-cmihz432tpfa .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-cmihz432tpfa .prd-media {
    padding: 28px 20px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    max-width: 165px;
  }
  .fl-node-cmihz432tpfa .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-cmihz432tpfa .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-cmihz432tpfa .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-cmihz432tpfa {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-cmihz432tpfa .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-cmihz432tpfa .prd-rank-desktop {
    display: none;
  }
  .fl-node-cmihz432tpfa .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-cmihz432tpfa .prd-content {
    display: contents;
  }
  .fl-node-cmihz432tpfa .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-cmihz432tpfa .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-cmihz432tpfa .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-cmihz432tpfa .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-cmihz432tpfa .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-cmihz432tpfa .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-cmihz432tpfa .prd-score-number {
    font-size: 38px;
  }
  .fl-node-cmihz432tpfa .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-cmihz432tpfa .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-cmihz432tpfa .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-cmihz432tpfa .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-cmihz432tpfa .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-cmihz432tpfa .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-cmihz432tpfa .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-cmihz432tpfa .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-cmihz432tpfa .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-cmihz432tpfa .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-cmihz432tpfa {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-cmihz432tpfa .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-cmihz432tpfa .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-cmihz432tpfa .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-cmihz432tpfa .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-cmihz432tpfa .prd-title {
    font-size: 20px;
  }
  .fl-node-cmihz432tpfa .prd-description {
    font-size: 17px;
  }
  .fl-node-cmihz432tpfa .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-cmihz432tpfa .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-cmihz432tpfa .prd-score-number {
    font-size: 34px;
  }
  .fl-node-cmihz432tpfa .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-cmihz432tpfa .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-cmihz432tpfa .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-cmihz432tpfa .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-cmihz432tpfa .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-cmihz432tpfa .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-cmihz432tpfa .prd-score-number {
    font-size: 31px;
  }
  .fl-node-cmihz432tpfa .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-cmihz432tpfa .prd-score-text {
    font-size: 11px;
  }
}
@charset "UTF-8";
.fl-node-ry7p8vk3z954 {
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
   17PX EM TODAS AS TELAS
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS PONTOS POSITIVOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* ABRE POPUP */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   RESET
========================= */
  /* =========================
   CARD
========================= */
  /* =========================
   RANK
========================= */
  /* =========================
   GRID
========================= */
  /* =========================
   IMAGEM DO PRODUTO
========================= */
  /* =========================
   CONTEÚDO
========================= */
  /* =========================
   LABEL
========================= */
  /* =========================
   TÍTULO
========================= */
  /* =========================
   DESCRIÇÃO
========================= */
  /* =========================
   BENEFÍCIOS
========================= */
  /* =========================
   ÍCONE DOS BENEFÍCIOS
========================= */
  /* =========================
   LADO DIREITO
========================= */
  /* =========================
   CARD DA NOTA
========================= */
  /* =========================
   NOTA + INFO
========================= */
  /* =========================
   ÍCONE DE INFORMAÇÃO
========================= */
  /* =========================
   POPUP DA NOTA
========================= */
  /* =========================
   ABRE POPUP
========================= */
  /* =========================
   ESTRELAS
========================= */
  /* =========================
   BOTÕES
========================= */
  /* =========================
   SETA
========================= */
  /* =========================
   TABLET
========================= */
  /* =========================
   TABLET MENOR
========================= */
  /* =========================
   MOBILE
========================= */
  /* =========================
   MOBILE PEQUENO
========================= */
  /* =========================
   MOBILE MUITO PEQUENO
========================= */
}
.fl-node-ry7p8vk3z954 .prd-card, .fl-node-ry7p8vk3z954 .prd-card * {
  box-sizing: border-box;
}
.fl-node-ry7p8vk3z954 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-ry7p8vk3z954 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-ry7p8vk3z954 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-ry7p8vk3z954 .prd-rank-mobile {
  display: none;
}
.fl-node-ry7p8vk3z954 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-ry7p8vk3z954 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-ry7p8vk3z954 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-ry7p8vk3z954 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-ry7p8vk3z954 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-ry7p8vk3z954 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-ry7p8vk3z954 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-ry7p8vk3z954 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-ry7p8vk3z954 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-ry7p8vk3z954 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-ry7p8vk3z954 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-ry7p8vk3z954 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-ry7p8vk3z954 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-ry7p8vk3z954 .prd-side {
  align-self: end;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-ry7p8vk3z954 .prd-score-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-ry7p8vk3z954 .prd-score-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-ry7p8vk3z954 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-ry7p8vk3z954 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-ry7p8vk3z954 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-ry7p8vk3z954 .prd-score-info:hover, .fl-node-ry7p8vk3z954 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-ry7p8vk3z954 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-ry7p8vk3z954 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-ry7p8vk3z954 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-ry7p8vk3z954 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}
.fl-node-ry7p8vk3z954 .prd-stars-base {
  display: block;
  color: #ddd;
}
.fl-node-ry7p8vk3z954 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  overflow: hidden;
  color: #f5b400;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-ry7p8vk3z954 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
}
.fl-node-ry7p8vk3z954 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-ry7p8vk3z954 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-ry7p8vk3z954 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-ry7p8vk3z954 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* =========================
     DESCRIÇÃO MOBILE
     MANTÉM 17PX
  ========================= */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-ry7p8vk3z954 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-desktop {
    display: none;
  }
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-ry7p8vk3z954 .prd-content {
    display: contents;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-ry7p8vk3z954 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-ry7p8vk3z954 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-ry7p8vk3z954 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-ry7p8vk3z954 .prd-star-rating {
    margin-top: 0;
    font-size: 17px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-text {
    margin-top: 0;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number-wrap {
    position: static;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-ry7p8vk3z954 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-ry7p8vk3z954 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-ry7p8vk3z954 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-ry7p8vk3z954 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-ry7p8vk3z954 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-ry7p8vk3z954 {
    /* MANTÉM 17PX */
  }
  .fl-node-ry7p8vk3z954 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-ry7p8vk3z954 .prd-title {
    font-size: 20px;
  }
  .fl-node-ry7p8vk3z954 .prd-description {
    font-size: 17px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    gap: 12px;
    padding: 15px 12px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-ry7p8vk3z954 .prd-star-rating {
    font-size: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
    left: 82px;
  }
}
.fl-node-ry7p8vk3z954 .prd-card, .fl-node-ry7p8vk3z954 .prd-card * {
  box-sizing: border-box;
}
.fl-node-ry7p8vk3z954 .prd-card {
  position: relative;
  width: 100%;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.035);
  font-family: inherit;
}
.fl-node-ry7p8vk3z954 .prd-rank {
  z-index: 10;
  padding: 7px 11px;
  background: #111;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-ry7p8vk3z954 .prd-rank-desktop {
  position: absolute;
  top: 18px;
  left: 18px;
}
.fl-node-ry7p8vk3z954 .prd-rank-mobile {
  display: none;
}
.fl-node-ry7p8vk3z954 .prd-card-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 235px;
  gap: 28px;
  align-items: stretch;
}
.fl-node-ry7p8vk3z954 .prd-media {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 25px;
  background: #f7f7f7;
  border-radius: 16px;
}
.fl-node-ry7p8vk3z954 .prd-media > img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.fl-node-ry7p8vk3z954 .prd-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fl-node-ry7p8vk3z954 .prd-label {
  display: block;
  margin-bottom: 10px;
  color: #767676;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fl-node-ry7p8vk3z954 .prd-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}
.fl-node-ry7p8vk3z954 .prd-description {
  margin: 0 0 24px;
  color: #555;
  font-size: 17px;
  line-height: 1.55;
}
.fl-node-ry7p8vk3z954 .prd-description strong {
  color: #111;
  font-weight: 700;
}
.fl-node-ry7p8vk3z954 .prd-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  padding: 16px;
  background: #f8f8f8;
  border-radius: 14px;
}
.fl-node-ry7p8vk3z954 .prd-benefit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.fl-node-ry7p8vk3z954 .prd-benefit-text {
  min-width: 0;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}
.fl-node-ry7p8vk3z954 .prd-benefit-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1fd365;
  border-radius: 50%;
  overflow: hidden;
}
.fl-node-ry7p8vk3z954 .prd-benefit-icon img {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  max-width: 23px !important;
  object-fit: contain;
  border-radius: 0;
  mix-blend-mode: normal;
}
.fl-node-ry7p8vk3z954 .prd-side {
  align-self: end;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-ry7p8vk3z954 .prd-score-card {
  width: 100%;
  min-width: 0;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-align: center;
}
.fl-node-ry7p8vk3z954 .prd-score-number-wrap {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
}
.fl-node-ry7p8vk3z954 .prd-score-number {
  margin: 0;
  color: #111;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.fl-node-ry7p8vk3z954 .prd-score-info {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.18s ease, transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-score-info svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-ry7p8vk3z954 .prd-score-info svg circle:last-child {
  fill: currentColor;
  stroke: none;
}
.fl-node-ry7p8vk3z954 .prd-score-info:hover, .fl-node-ry7p8vk3z954 .prd-score-info:focus {
  color: #111;
  outline: none;
}
.fl-node-ry7p8vk3z954 .prd-score-info:active {
  transform: scale(0.94);
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip {
  position: absolute;
  right: -4px;
  bottom: calc(100% + 13px);
  z-index: 999;
  width: 260px;
  padding: 15px 16px;
  background: #111;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}
.fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 7px solid transparent;
  border-top-color: #111;
}
.fl-node-ry7p8vk3z954 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-ry7p8vk3z954 .prd-score-number-wrap.is-open .prd-score-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fl-node-ry7p8vk3z954 .prd-star-rating {
  --rating-percent:100%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow: hidden;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
  vertical-align: middle;
}
.fl-node-ry7p8vk3z954 .prd-stars-base {
  display: block;
  width: max-content;
  min-width: max-content;
  color: #ddd;
  line-height: 1;
  white-space: nowrap;
}
.fl-node-ry7p8vk3z954 .prd-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--rating-percent);
  height: 100%;
  overflow: hidden;
  color: #f5b400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.fl-node-ry7p8vk3z954 .prd-score-text {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.35;
}
.fl-node-ry7p8vk3z954 .prd-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  background: #1fd365;
  border: 1px solid #1fd365;
  border-radius: 12px;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-button:hover {
  background: #19bd59;
  border-color: #19bd59;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.fl-node-ry7p8vk3z954 .prd-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease;
}
.fl-node-ry7p8vk3z954 .prd-button:hover .prd-arrow {
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    grid-template-columns: 190px minmax(0, 1fr) 220px;
    gap: 22px;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    padding: 28px 20px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    max-width: 165px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefits {
    grid-template-columns: 1fr;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    white-space: normal;
  }
}
@media (max-width: 850px) and (min-width: 651px) {
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .fl-node-ry7p8vk3z954 .prd-side {
    grid-column: 1 / -1;
    align-self: auto;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    min-height: 58px;
  }
}
@media (max-width: 650px) {
  .fl-node-ry7p8vk3z954 {
    /* CARD */
    /* RANK */
    /* ESTRUTURA */
    /* IMAGEM */
    /* RANK MOBILE */
    /* LABEL */
    /* TÍTULO */
    /* NOTA + BOTÕES */
    /* CARD DA NOTA */
    /* ESTRELAS MOBILE */
    /* TEXTO DA NOTA */
    /* =========================
     POPUP MOBILE
  ========================= */
    /* BOTÕES */
    /* DESCRIÇÃO */
    /* BENEFÍCIOS */
    /* ÍCONE MOBILE */
  }
  .fl-node-ry7p8vk3z954 .prd-card {
    padding: 0 18px 20px;
    border-radius: 18px;
    overflow: visible;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-desktop {
    display: none;
  }
  .fl-node-ry7p8vk3z954 .prd-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .fl-node-ry7p8vk3z954 .prd-content {
    display: contents;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    order: 1;
    position: relative;
    width: calc(100% + 36px);
    min-height: 240px;
    margin: 0 -18px;
    padding: 46px 20px 28px;
    background: #f7f7f7;
    border-radius: 18px 18px 14px 14px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    width: 100%;
    max-width: 230px;
    max-height: 190px;
    object-fit: contain;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-mobile {
    position: absolute;
    display: block;
    top: 18px;
    left: 18px;
    margin: 0;
  }
  .fl-node-ry7p8vk3z954 .prd-label {
    order: 2;
    margin: 4px 0 -7px;
    font-size: 11px;
  }
  .fl-node-ry7p8vk3z954 .prd-title {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
  }
  .fl-node-ry7p8vk3z954 .prd-side {
    order: 4;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 10px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: auto;
    display: grid;
    grid-template-columns: auto max-content minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    column-gap: 14px;
    padding: 17px 18px;
    overflow: visible;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number-wrap {
    position: static;
    flex-shrink: 0;
    min-width: max-content;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number {
    font-size: 38px;
  }
  .fl-node-ry7p8vk3z954 .prd-star-rating {
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin: 0;
    overflow: hidden;
    font-size: 17px;
    letter-spacing: 1px;
  }
  .fl-node-ry7p8vk3z954 .prd-stars-base {
    width: max-content;
    min-width: max-content;
  }
  .fl-node-ry7p8vk3z954 .prd-stars-fill {
    width: var(--rating-percent);
  }
  .fl-node-ry7p8vk3z954 .prd-score-text {
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip {
    position: absolute;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(100% + 12px);
    width: auto;
    max-width: none;
    z-index: 9999;
    margin: 0;
    transform: translateY(6px);
  }
  .fl-node-ry7p8vk3z954 .prd-score-number-wrap:hover .prd-score-tooltip, .fl-node-ry7p8vk3z954 .prd-score-number-wrap.is-open .prd-score-tooltip {
    transform: translateY(0);
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
    display: block;
    left: 92px;
    right: auto;
    transform: none;
  }
  .fl-node-ry7p8vk3z954 .prd-button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
  }
  .fl-node-ry7p8vk3z954 .prd-description {
    order: 5;
    width: 100%;
    margin: 4px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }
  .fl-node-ry7p8vk3z954 .prd-benefits {
    order: 6;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.35;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-icon img {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
  }
}
@media (max-width: 390px) {
  .fl-node-ry7p8vk3z954 {
    /* NOTA MOBILE PEQUENO */
    /* POPUP */
  }
  .fl-node-ry7p8vk3z954 .prd-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-media {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    min-height: 225px;
  }
  .fl-node-ry7p8vk3z954 .prd-rank-mobile {
    top: 15px;
    left: 15px;
  }
  .fl-node-ry7p8vk3z954 .prd-media > img {
    max-width: 210px;
    max-height: 175px;
  }
  .fl-node-ry7p8vk3z954 .prd-title {
    font-size: 20px;
  }
  .fl-node-ry7p8vk3z954 .prd-description {
    font-size: 17px;
  }
  .fl-node-ry7p8vk3z954 .prd-benefit-text {
    font-size: 13px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px 12px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number {
    font-size: 34px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-info {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-info svg {
    width: 18px;
    height: 18px;
  }
  .fl-node-ry7p8vk3z954 .prd-star-rating {
    width: max-content;
    min-width: max-content;
    max-width: none;
    font-size: 15px;
    letter-spacing: 0;
  }
  .fl-node-ry7p8vk3z954 .prd-score-text {
    min-width: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip {
    left: 12px;
    right: 12px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-tooltip::after {
    left: 82px;
  }
}
@media (max-width: 350px) {
  .fl-node-ry7p8vk3z954 .prd-score-card {
    grid-template-columns: auto max-content minmax(0, 1fr);
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }
  .fl-node-ry7p8vk3z954 .prd-score-number {
    font-size: 31px;
  }
  .fl-node-ry7p8vk3z954 .prd-star-rating {
    font-size: 14px;
    letter-spacing: 0;
  }
  .fl-node-ry7p8vk3z954 .prd-score-text {
    font-size: 11px;
  }
}
