:root {
	--primary-color: #f37a02;
	--secondary-color: #779947;
	--third-color: #ffc107;
	--fourth-color: #a3d063;
	--primary-color-light: #fd8e21;
	--primary-color-dark: #cb6602;
	--secondary-color-light: #8cb158;
	--secondary-color-dark: #617d3a;
	--contrast-color: yellow;
	--text-color: black;
	--light-color: #eaf0e3;
}

#video {
	position: relative;
}

@media(max-width: 991px) {
	#video h2 {
		font-size: 30px;
	}
}

/* #video::after {
	content: '';
	position: absolute;
	top: -50px;
	width: 100%;
	height: 162px;
	background: url('/assets/pages/home/img/ondas.png') center center no-repeat;
	background-size: cover;
	opacity: 0.1;
} */

.logos {
	max-width: 900px;
	margin: 10px auto;
}

.logos img {
	max-width: 130px;
	height: auto;
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

#fbcomments {
	margin-top: 30px !important;
}

/*--------------------strip3------------------*/
.strip3 {
    padding: 0;
    color: #fff;
    margin-bottom: 0px;
}

@media(max-width: 991px) {
    .strip3 {
        margin-bottom: 0px;
    }
}

ul.strip3-list {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: no-wrap;
    margin: 0;
}

@media(max-width: 991px) {
    ul.strip3-list {
        padding-left: 0;
        gap: 20px;
    }
}

ul.strip3-list li {
    padding: 0 22px;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    list-style: none;
    margin: 1rem 0;
}

ul.strip3-list li:nth-child(1):before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 4px 0;
    width: 10px;
    height: 10px;
    background: #13ac41;
    border-radius: 50%;
    content: "";
    animation: fade 1s ease-in-out infinite;
}

@media(max-width: 991px) {
    ul.strip3-list li {
        font-size: 14px;
        line-height: 20px;
        padding: 0;
    }

    ul.strip3-list li:nth-child(1):after {
        display: block !important;
        height: 100%;
        top: 0;
        right: -9px;
    }
}

ul.strip3-list li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    height: 18px;
    background: #e6dede;
    width: 2px;
}

ul.strip3-list li:last-child::after {
    display: none;
}

@keyframes fade {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 30%;
    }

    70% {
        opacity: 100%;
    }

    100% {
        opacity: 100%;
    }
}

.hourglass {
    display: inline-block;
    vertical-align: middle;
    margin: -5px 8px 0 0;
    animation: rotateP 2.5s ease-in-out forwards infinite;
    max-width: 18px;
    filter: invert(1);
}

@keyframes rotateP {
    0% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(180deg)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(00deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.clock {
    margin: 0 8px -5px 0;
    display: inline-block;
    animation: fade 1s ease-in-out infinite;
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid #555;
}

.triangle-down {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 18px solid var(--primary-color-dark);
}

.shipbx {
	width: 710px;
	height: 90px;
	border: 2px solid var(--secondary-color);
	border-radius: 14px;
	margin: 0 auto 0 auto;
	display: block;
	position: relative;
	padding: 17px 25px 15px 150px;
	margin-top: 0px;
	margin-bottom: 10px;
	color: #000;
}

.shipiconbx {
	background: var(--secondary-color);
	padding: 19px 5px 19px 7px;
	border-radius: 12px 0 0 12px;
	position: absolute;
	left: 0;
	top: 0;
}

.shipiconbx img {
	margin: 0 auto;
	display: block;
	max-width: 100%;
}

.shipiconbx::after {
	content: "";
	position: absolute;
	right: -13px;
	top: 0;
	width: 0;
	height: 0;
	border-top: 45px solid transparent;
	border-left: 15px solid var(--secondary-color);
	border-bottom: 45px solid transparent;
}

.shipbx.light {
	border: 2px solid var(--primary-color-dark);
}

.shipbx.light .shipiconbx {
	background: var(--primary-color-dark);
}

.shipbx.light .shipiconbx::after {
	border-left: 15px solid var(--primary-color-dark);
}

.shipbx-txt1 {
	font-size: 22px;
	line-height: 30px;
	text-align: left;
	margin: 0;
	font-weight: 700;
}

.shipbx.light .shipbx-txt1 {
	color: #fff;
}

.shipbx-txt1 .red {
	color: var(--secondary-color);
	font-weight: 700;
}

.shipbx.light .shipbx-txt1 .red {
	color: var(--primary-color-dark);
}

.shipbx-txt2 {
	font-size: 16px;
	line-height: 24px;
	text-align: left;
}

.shipbx.light .shipbx-txt2 {
	color: #fff;
}

.item-img {
	position: relative;
}

@media(max-width: 991px) {
	.shipbx {
		width: 370px;
		max-width: 100%;
		/*height: 118px;*/
		height: auto;
		padding: 10px 5px 10px 98px;
	}

	.shipbx-txt1 {
		font-size: 18px;
		line-height: 26px;
	}

	.shipbx-txt2 {
		font-size: 13px;
		line-height: 21px;
	}

	.shipiconbx {
		/*height: 116px;*/
		height: 100%;
        width: 70px;
	}

	.shipiconbx img {
		width: 65px;
        position: absolute;
        display: block;
        top: calc(50% - 20px);
	}

	.shipiconbx::after {
		border-top: 58px solid transparent;
		border-left: 15px solid var(--secondary-color);
		border-bottom: 58px solid transparent;
		top: calc(50% - 60px);
	}

	#video h2 {
		font-size: 30px;
	}

	#video h2 span:first-child {
		font-size: 12px !important;
	}


	#fbcomments {
		margin-top: 0px !important;
	}

	.logos img {
		max-width: 90px;
		margin-bottom: 10px;
	}
}

/*Bonus*/
#bonus {
	/* background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color)); */
	max-width: 100%;
	overflow: hidden;
	/* background-image: radial-gradient(var(--secondary-color-light), var(--secondary-color)); */
	background-color: #fff;
}

#bonus h2 {
	color: var(--primary-color);
	text-align: center;
	font-size: 37px;
	font-weight: 700;
	text-shadow: 0px 2px #000000a3;
}

@media(max-width: 991px) {
	#bonus h2 {
		font-size: 30px;
	}
}

#bonus p.subtitle {
	font-size: 18px;
	line-height: 20px;
	color: var(--primary-color);
	text-align: center;
	font-style: italic;
	margin-top: 0px;
	margin-bottom: 0px;
}

#bonus .ebook {
	margin-top: 150px;
	width: 100%;
	border-radius: 12px;
	padding: 10px;
	background: var(--primary-color-dark);
	text-align: center;
	height: calc(100% - 150px);
	border: 5px double #ffffff8e;
}

#bonus .ebook p {
	font-size: 17px;
	line-height: 22px;
	text-align: center;
	color: #fff;
	margin-top: 0px;
}

#bonus .ebook .strikeout {
	position: relative;
}

#bonus .ebook .strikeout::after {
	border-bottom: 0.12em solid #ff0202;
	content: "";
	left: 0;
	margin-top: calc(0.120em / 2* -1);
	position: absolute;
	right: 0;
	top: 54%;
	transform: rotate(-10deg);
}

#bonus .ebook .s7lhding2 {
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	margin-top: 15px;
	text-shadow: 0px 2px #000000a3;
}

#bonus .ebook .s7lhding2 span.span1 {
	font-weight: bold;
	text-transform: uppercase;
	color: #ffd200;
}

#bonus .ebook .s7ltxt {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	margin-top: 11px;
	color: #fff;
}

#bonus .ebook h3 {
	color: #fff;
}

#bonus .img-mockup {
	position: relative;
	max-width: 200px;
	margin: 0px auto;
	margin-top: -150px;
}

#bonus .img-mockup img {
	max-width: 200px;
	margin: 0 auto;
	display: flex;
}

#bonus .img-mockup .bonusbx {
	height: 133px;
	width: 134px;
	background: transparent url('../img/selo3.png') center top no-repeat;
	background-size: 100%;
	position: absolute;
	right: -50%;
	top: -10px;
	padding: 20px 0 0 0;
}

@media (max-width: 400px) {
	#bonus .img-mockup .bonusbx {
		right: -36%;
	}
}

#bonus .img-mockup .bonusbx .bonusbx-txt1,
#bonus .img-mockup .bonusbx .bonusbx-txt2,
#bonus .img-mockup .bonusbx .bonusbx-txt3 {
	font-weight: bold;
	font-size: 25px;
	line-height: 7px;
	color: #ffd200;
	text-align: center;
	text-transform: uppercase;
	margin-top: 12px;
	text-shadow: 0px 2px #000000a3;
}

#bonus .img-mockup .bonusbx .bonusbx-txt2 {
	font-size: 20px;
	color: #fff;
}

#bonus .img-mockup .bonusbx .bonusbx-txt3 {
	font-size: 40px;
}

#ingredients img {
	border-radius: 10px;
	border: 5px double #ffffff8e;
	background-color: var(--primary-color);
	padding: 6px;
	width: fit-content;
	max-width: 100%;
}

#guarantee {
  position: relative;
  color: white;
  background: linear-gradient(90deg, var(--primary-color-dark), var(--primary-color));
}
#guarantee .container {
  max-width: 1100px;
}
#guarantee h2 {
  color: white;
}
#guarantee h2 span {
  color: var(--third-color);
}
#guarantee img {
  max-width: 200px;
}
#guarantee .badges img {
  background-color: white;
  max-width: 100px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 599px) {
  #guarantee .badges img {
    max-width: 70px;
  }
}

/* Testimonials */
@media(max-width: 991px) {

    .texts h4 {
        font-size: 17px;
    }
}

.name p, .text-user p {
    color: #565959;
    font-size: 16px;
}

.user-name .user {
    max-width: 100px;
    max-height: 100px;
    border-radius: 100%;
    float: right;
}

@media(max-width: 991px) {
    .user-name .user {
        float: inherit;
        margin: 0;
        max-width: 68px;
        max-height: 68px;
    }
}

.user-name .user img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.purchase {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--primary-color);
}

.purchase img {
    max-width: 50px;
}

.purchase p {
    margin: 0;
}

#testimonials .card {
    border: 0;
    padding: 1.5rem;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}

#testimonials .card:last-of-type {
	border-bottom: 0;
}

#testimonials .card-container {
    background-color: #f6f6f6;
}

#testimonials .col-lg-12 {
    padding: 0px;
}

#testimonials .card h4 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
}

#testimonials .stars i {
	color: #de7921;
}

#testimonials .reviewed-on {
	color: #828989;
	font-size: 14px;
	margin: 0;
}

#testimonials .verified {
	color: #565959;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 1em;
}

#testimonials .verified span:last-of-type {
	color: #de7921;
}

#testimonials .verified div {
	width: 1px;
	height: 16px;
	background-color: #bdbdbd;
}

#testimonials .purchase {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
    align-items: center;
}

#testimonials .purchase img {
    max-width: 30px;
}

#testimonials .purchase p {
    margin: 0;
}

#testimonials .user {
    max-width: 200px;
    margin-bottom: 1rem;
}

@media(max-width: 991px) {
    #testimonials .user {
        float: inherit;
        margin: 0px;
    }
}

#testimonials .user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 991px) {
    #testimonials .user img {
        margin-bottom: 1rem;
    }
}

#testimonials .helpful-report {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
	font-size: 14px;
}

#testimonials .helpful-report .helpful {
    border: solid 1px var(--text-color);
    border-radius: 30px;
    padding: 5px 25px;
}

#testimonials .helpful-report .share {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#testimonials .helpful-report .report {
    color: #979797;
}

.principal {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

#references ol {
	font-size: 14px;
	text-align: left;
	font-weight: bold;
	opacity: .75;
}

#references li {
	margin-bottom: 6px;
}

#references ol span {
	font-weight: normal;
}

.countdown {
	display: inline-block;
	font-size: 20px;
	line-height: 28px;
	color: #fff;
}

.title-claim {
	font-size: 37px;
	font-weight: 700;
	max-width: 900px;
	margin: 0 auto;
}

@media(max-width: 991px) {
	.title-claim {
		font-size: 30px;
	}
}

.free-shipping-section {
	background-color: var(--primary-color);
	color: #fff;
}

.free-shipping-section img {
	max-width: 180px;
	filter: invert(1);
}

@media(max-width: 991px) {
	.free-shipping-section img {
		max-width: 100px;
	}
}

.free-shipping-section h2 {
	font-size: 35px;
	font-weight: 700;
}

@media(max-width: 991px) {
	.free-shipping-section h2 {
		font-size: 30px;
	}
}

.free-shipping-section p {
	font-size: 18px;
	margin: 0;
}

.free-shipping-section p span {
	font-weight: 600;
	color: var(--contrast-color);
}

figure {
	margin: 0 !important;
}

.triangle-tip {
	width: 0;
	height: 0;
	border-left: 30vw solid transparent;
	border-right: 30vw solid transparent;
	border-top: 30px solid #251837;
	position: absolute;
	bottom: -29px;
	left: calc(50% - 30vw);
}

/* Purchases Notifications */
.purchases-disclaimer {
	position: fixed;
	right: -800px;
	bottom: 20px;
	padding: .5rem 1rem;
	background: var(--primary-color);
	color: white;
	border-radius: 8px;
	font-size: 1em;
	font-style: italic;
	box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
	border: 3px solid white;
	transition: .6s;
	z-index: 999;
}

.purchases-box {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: center;
}

.purchases-box img {
	max-width: 70px;
}

@media (max-width: 767px) {

	.purchases-disclaimer {
		font-size: .8em;
		line-height: 1;
		padding: .25rem .5rem;
		max-width: 220px;
	}
	.purchases-box img {
		max-width: 40px;
	}
}

.purchased-bottle {
	background: white;
	border-radius: 50%;
}


#faq {
  background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color));
  color: white;
}
#faq .container {
  max-width: 1000px;
}
#faq .accordion {
  position: relative;
  z-index: 2;
}
#faq .accordion-item {
  border-radius: 0.5em;
  margin-bottom: 0.25em;
  border: 0;
}
#faq .accordion-button {
  font-family: "Nunito Sans", sans-serif;
  font-weight: bold;
  border-radius: 0.25em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#faq .accordion-body {
  padding-bottom: 1.5em;
}




.buy-button {
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
  padding: 0.4rem 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(0deg, var(--contrast-color), rgb(255, 243, 79));
  margin: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
	transition: .3s;
}

.buy-button:hover {
  box-shadow: 0px 4px 10px var(--contrast-color);
  transform: scale(1.05);
}

.buy-button-label {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  .buy-button {
    padding: 0.65em;
    font-size: 1.15em;
  }
}


/* quiz */

/* Estilos gerais */
body {
	font-family: sans-serif;
}

.quiz-box {
	background-color: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

/* Estilos para o container das perguntas (mantendo seus estilos) */
.quiz-box > section > .container {
	position: relative;
	background: linear-gradient(90deg, var(--primary-color-dark), var(--primary-color));
	border: 4px solid white;
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
	color: white;
	padding: 20px;
	border-radius: 10px;
}

/* Estilos para as perguntas */
.question {
	display: none;
}

.question.active {
	display: block !important;
}

.question h4 {
	color: white;
	text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
	margin-bottom: 20px;
}

/* Estilos para os inputs (adaptado para centralizar) */
.form-control {
	max-width: 320px;
	margin: 10px auto; /* Centraliza os inputs */
}

/* Estilos para os botões (mantendo seus estilos e adicionando espaçamento) */
.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
	margin-top: 10px; /* Espaçamento entre os botões */
}

.btn-primary:hover {
	background-color: #0069d9;
	border-color: #0062cc;
}

.option {
	border-radius: 10px;
	color: white;
	font-weight: 700;
	background-color: var(--primary-color-dark) !important;
	border-color: var(--primary-color) !important;
	width: 100%;
	margin-bottom: 10px;
}

.option:hover {
	border-color: white;
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.1411764706) inset;
}

/* Estilos para os checkboxes (adicionando estilos) */
.form-check {
	margin-bottom: 10px;
	color: white;
}

.timer {
	color: var(--contrast-color) !important;
}


.custom_slide_container {
	width: 320px;
	margin: 20px auto;
}

.custom_slider {
	-webkit-appearance: none;
	width: 100%;
	height: 5px;
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
}

.custom_slider:hover {
	opacity: 1;
}

.custom_slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #007bff;
	cursor: pointer;
}

.custom_slider::-moz-range-thumb {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #007bff;
	cursor: pointer;
}

.form-check-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 600px;
	text-align: left;
}

@media (max-width: 768px) {
	.form-check-container {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 320px;
		text-align: left;
	}

	.fb-container {
		width: 100% !important;
		padding: 20px;
	}

	.container-group-main {
		padding-top: 0px !important;
	}

	.fbNew-header .fbText-logo {
    	padding-left: 20px;
	}

	.fb-post-header .post-text {
		padding: 10px !important;
	}
}


#progress-steps {
	position: relative;
	height: 30px;
	width: 100%;
}

#progress-steps.running .step-txt {
	animation-name: fadeInOut;
	animation-duration: 4.75s;
	animation-fill-mode: forwards;
}

.step-txt {
	position: absolute;
	width: 100%;
	top: 100%;
	color: white;
	opacity: 0;
}

.step-txt:nth-child(1) {
	animation-delay: 0s;
}

.step-txt:nth-child(2) {
	animation-delay: 3.75s;
}

.step-txt:nth-child(3) {
	animation-delay: 7.5s;
}

.step-txt:nth-child(4) {
	animation-delay: 11.25s;
}

.fb-post-header .fb-post-header {
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.fb-post-header .fb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.fb-post-header .fb-logo svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.fb-post-header .fb-logo span {
  font-size: 33px;
  font-weight: bold;
  color: #1877f2;
  letter-spacing: -0.5px;
}

.fb-post-header .post-meta {
  position: relative;
}

.fb-post-header .user-name {
  font-weight: 600;
  font-size: 15px;
  color: #050505;
}

.fb-post-header .post-time {
  color: #65676b;
  font-size: 13px;
  padding-left: 30px;
}

.fb-post-header .more-icon {
  margin-left: auto;
  cursor: pointer;
}

.fb-post-header .post-text {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #050505;
    padding: 20px;
    padding-bottom: 50px;
    text-align: justify;
}

.fb-post-header .post-stats {
  display: flex;
  align-items: center;
  color: #65676b;
  font-size: 13px;
  padding-top: 8px;
  gap: 5px;
}

.fb-post-header .post-stats svg {
  margin-right: 4px;
  vertical-align: middle;
}

.fb-post-header .likes {
  display: flex;
  align-items: center;
}

.fb-post-header .comments,
.fb-post-header .shares {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.fb-post-header .comments:hover,
.fb-post-header .shares:hover {
  text-decoration: underline;
}

.fb-post-header .comments-container {
  margin-top: 16px;
}

.fb-post-header .comment {
  display: flex;
  margin-bottom: 16px;
}

.fb-post-header .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.fb-post-header .comment-data {
  flex: 1;
}

.fb-post-header .name {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.fb-post-header .text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.fb-post-header .buttons {
  color: #65676b;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-post-header .comments-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fb-post-header .group-likes-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.fb-post-header .main-logo-fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fb-post-header .icons-fb {
  width: 120px;
  padding-right: 10px;
}

.fb-post-header .shares img {
  padding-right: 5px;
}

.fbField-email input,
.fbField-password input {
    border-radius: 5px;
}

.fb-post-header .fb-opt {
  position: relative;
    right: 15px;
}

.group-likes-share {
  margin-bottom: 8px;
  gap: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
}

.comments-share {
  gap: 10px;
  display: flex;
}

.fb-logo span {
  font-size: 33px;
  font-weight: bold;
  color: #1877f2;
  letter-spacing: -0.5px;
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.main-logo-fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-text {
  padding-bottom: 150px;
}

.user.user-background {
  background-color: #EEF7FD !important;
}

.fb-container {
	width: 70%;
}

.container-group-main {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
	padding-top: 35px;
}

.fb_first_model{
	z-index: 2;
    position: relative;
    background: #fff;
}

.new_quiz{
	background: #fff !important;
}

.fbNew-header {
    background: #1877f2;
}

.fbNew-header span {
    color: #fff;
    font-size: 35px;
	font-weight: bold;
}

.fbNew-header {
    background: #1877f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fbField-email label,
.fbField-password label{
    color: #fff;
    display: block;
	font-size: 12px;
}

.fbMain-container {
    width: 100%;
    display: flex
;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.fbFiel-acess {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fbMain-container {
    width: 100%;
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.fb_first_model .after-quiz {
    margin-top: 30px;
}

.share-cnn{
	margin-top: 55px;
}

@keyframes fadeInOut {
	0%, 100% {
		top: 100%;
		opacity: 0;
	}
	20%, 70% {
		top: 0;
		opacity: 1;
	}
	80% {
		top: -100%;
		opacity: 0;
	}
}

@media (max-width: 590px) {
	.custom_slide_container {
		width: 100%;
	}
}

.bar-animation {
    animation: barAnimation 14s forwards ease-in;
}

@keyframes barAnimation {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
}

main#container {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.red-header {
	background-color: #a70c0c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	height: auto;
}

header h1 {
	font-weight: 400;
	color: #fff;
	margin: 0;
	flex-grow: 1;
	text-align: center;
	font-size: 2rem;
}

header img {
	width: 23px;
}

marquee {
	background-color: #810505;
	color: white;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 0;
	font-weight: 400;
	font-size: 11px;
}

.principal {
	max-width: 900px;
	margin: 0 auto;
	padding: 5px 12px 15px;
	text-align: center;
}

.container-principal h1 {
	font-size: 30px;
	text-align: left;
}

.txt_info_noticia {
	text-align: left;
	color: #54595F;
	font-size: 12px;
	padding-top: 10px;
}

.txt_info_noticia b {
	color: black;
	font-size: 13px;
	font-weight: 700;
}

.img_adv {
	width: 80%;
	max-width: 500px;
}

.video_vturb {
	padding-top: 15px;
	margin: 0 auto;
	max-width: 800px;
}

.cta {
	text-decoration: none;
    display: block;
    font-size: 1.5rem;
    padding: 0.4rem 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(0deg, var(--contrast-color), rgb(255, 243, 79));
    margin: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: .3s;
}

.cta-label {
	background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    -webkit-text-fill-color: transparent;
	letter-spacing: 3px;
}

@media screen and (max-width: 767px) {
	.cta {
	  padding: 0.65em;
	  font-size: 1.15em;
	}
  }

@keyframes pulsar {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

.desconto {
	padding-top: 15px;
	font-size: 17px;
	line-height: 1.3em;
	color: #1d1d1d;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 700;
}

footer {
	background-color: #A70C0C;
	padding: 15px 0 0;
}

footer a {
	color: white;
	text-decoration: none;
	font-weight: 500;
}

footer h3 {
	background-color: black;
	color: white;
	font-size: 17px;
	padding: 10px 25px;
}

.img_adv {
	margin-top: 20px;
}

@media (max-width: 996px) {
	.img_adv {
		width: 100%;
	}
	.principal h1 {
		font-size: 23px;
	}
	header h1 {
		font-size: 1.7rem !important;
	}
}

@media (max-width: 399px) {
	.video-title {
		font-size: 1em !important;
	}
}
.yt-lt {
	background-color: #0f0f0f;
	color: #fff;
	font-family: Arial, sans-serif;
	min-height: 100vh;

  }

  .yt-lt .container {
	max-width: 1640px;
  }

  @media (max-width: 1140px) {
	.yt-lt {
	  min-height: 90vh;
	}
  }

  .video-section {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px 0px 60px 0px;
  }

.video-thumbnail {
width: 100%;
/* max-width: 720px; */
background: #000;
border-radius: 6px;
position: relative;
overflow: hidden;
}

  .chat-box {
	width: 100%;
	max-width: 370px;
	background-color: #0f0f0f;
	border: 1px solid #383838;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	height: 650px;
	font-family: 'Roboto', sans-serif;
  }

  .chat-message {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}

.avatar {
width: 22px;
height: 22px;
border-radius: 50%;
font-weight: bold;
font-size: 10px;
color: white;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
flex-shrink: 0;
text-transform: uppercase;
}

.username {
display: block;
font-weight: bold;
margin-bottom: 2px;
}

.message-text {
display: block;
}
  .chat-header {
	padding: 12px 16px;
	border-bottom: 1px solid #383838;
	font-weight: 500;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #f1f1f1;
  }
  .chat-header svg path {
	fill: #f1f1f1;
  }
  .title-group {
	display: flex;
	align-items: center;
	gap: 8px;
  }
  .icons {
	display: flex;
	align-items: center;
	gap: 12px;
  }
  .icons svg {
	cursor: pointer;
  }

  .chat-messages {
	flex-grow: 1;
	overflow-y: auto;
	padding: 16px;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 16px;
  }
  .chat-messages::-webkit-scrollbar {
	width: 8px;
  }
  .chat-messages::-webkit-scrollbar-thumb {
	background: #555;
	border-radius: 4px;
  }

  .chat-message {
	display: flex;
	align-items: flex-start;
	line-height: 1.4;
  }
  .chat-message img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-top: 2px;
  }
  .username {
	font-weight: 500;
	margin-right: 8px;
	font-size: 13px;
  }
  .username-gray { color: #aaaaaa; }
  .username-blue { color: #5c8fdb; }
  .message-text { color: #f1f1f1; }

  .chat-input {
	border-top: 1px solid #383838;
	padding: 12px 16px;
  }
  .chat-input-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
  }
  .chat-input-wrapper img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
  }
  .input-container {
	flex-grow: 1;
	background-color: #282828;
	border-radius: 18px;
	padding: 8px 12px;
  }
  #chat-input {
	width: 100%;
	background: transparent;
	border: none;
	color: white;
	outline: none;
	font-size: 14px;
  }
  .chat-input button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
  }
  .chat-input button svg path {
	fill: #aaaaaa;
  }

  .badge-member {
	background-color: #3ea6ff;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 4px;
	color: #000;
  }

  /* --- VIDEO INFO --- */
  /* .video-info-container {
	max-width: 1080px;
	margin: 0 auto 40px;
	padding: 0 16px;
  } */
  .video-title {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
  }
  .channel-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
  }
  .channel-info {
	display: flex;
	align-items: center;
	gap: 10px;
  }
  .channel-info img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
  }

  .channel-subscription{
	display: flex;
	flex-direction: column;
  }

  .fw-bold { font-weight: bold; }
  .text-muted { color: #aaa !important; }

  .btn-subscribe {
	background-color: red;
	color: white;
	font-weight: bold;
	border-radius: 20px;
	padding: 6px 16px;
	margin-left: 1rem;
	border: none;
	font-size: 14px;
	transition: background-color .3s;
  }
  .btn-subscribe:hover {
	background-color: #cc0000;
  }

  .video-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
  }
  .btn-action {
	background-color: #222;
	color: #fff;
	border: none;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 14px;
	transition: background-color .2s;
  }
  .btn-action:hover {
	background-color: #333;
  }
  .btn-like, .btn-dislike {
	gap: 4px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 4px;
	transition: background-color .2s;
  }
  .btn-like:hover {
	background-color: rgba(255,255,255,0.1);
  }
  .icon-like {
	width: 20px;
	height: 20px;
	fill: #aaa;
  }
  .btn-like:hover .icon-like {
	fill: #fff;
  }
  .like-count {
	color: #aaa;
	font-size: 14px;
	font-weight: 500;
  }

  .video-wrapper {
		  display: flex;
		  flex-direction: column;
		  gap: 40px;
		  flex: 1;
	  }

  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {

	  .yt-lt{
		  min-height: auto;
	  }

	.video-section { 
	  flex-direction: column; align-items: center; 
	  padding-top: 0px;
	  gap: 30px;
	  padding-bottom: 20px;
	  
	}

	.video-wrapper {
	  gap: 20px;
	}

	.video-thumbnail { 
	  max-width: 100%; 
	  height: 100%;
	}
	.chat-box { 
	  max-width: 100%; 
	}

   /*  .video-info-container { 
	  padding: 0 12px; 
	} */
	
	
	.video-title{ 
	  font-size: 18px; margin-bottom: 10px; 
	}
	
	
	.channel-section {
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 12px;
	}

	
  .channel-subscription{
	flex-direction: row;
	gap: 0.5rem;
  }
	.like-count{
	  display: none ;
	}

	.video-actions {
	  justify-content: center;
	  width: 100%;
	}
	.btn-action,
	.btn-like,
	.btn-dislike {
	  flex: 1 1 auto;
	  text-align: center;
	  font-size: 13px;
	}
	.btn-like, 
	.btn-dislike {
	  padding: 0px;
	}

	
	.icon-like {
	  width: 18px;
	  height: 18px;
	}
	.like-count {
	  font-size: 13px;
	}
  }

  #products .button-bg {
	line-height: 0.75em;
	padding-top: 0.6em;
	padding-bottom: 0.4em;
  }
  #products .button-bg.promo {
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1254901961);
  }
  #products .button-bg.promo span {
	background: rgba(0, 0, 0, 0.1607843137);
	width: -moz-fit-content;
	width: fit-content;
	margin: 3px auto 0;
	padding: 3px 10px;
	border-radius: 100px;
  }
  .img-product {
    max-height: 250px;
}

@media(max-width: 991px) {
    .img-product {
        max-height: 100%;
    }
}
.shadow.item {
    text-decoration: none;
    padding: 6px;
    color: var(--text-color);
    background: linear-gradient(180deg, #FFFFFF 5.24%, #F0F0F0 95.58%);
    border: 3px solid #D9D9D9;
    border-radius: 10px;
}
.button-bg.promo {
    background-image: linear-gradient(to top, #ed6704 50%, #f37a02 51%);
    color: #fff !important;
    border: 2px solid #cc4f00 !important;
    font-weight: 700;
    font-size: 35px;
}
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    margin-top: 10px;
}
.btn-primary, .btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #000 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}
.button-bg {
    background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
    color: var(--text-color) !important;
    border: 2px solid #a78a19 !important;
}
#guarantee {
    position: relative;
    background: #f4f4f4;
    color: var(--text-color);
    text-align: left;
}

/*--------------------strip3------------------*/
.strip3 {
    padding: 0;
    color: #fff;
    margin-bottom: 0px;
}

@media(max-width: 991px) {
    .strip3 {
        margin-bottom: 0px;
    }
}

ul.strip3-list {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: no-wrap;
    margin: 0;
}

@media(max-width: 991px) {
    ul.strip3-list {
        padding-left: 0;
        gap: 20px;
    }
}

ul.strip3-list li {
    padding: 0 22px;
    position: relative;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    list-style: none;
    margin: 1rem 0;
}

ul.strip3-list li:nth-child(1):before {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 4px 0;
    width: 10px;
    height: 10px;
    background: #13ac41;
    border-radius: 50%;
    content: "";
    animation: fade 1s ease-in-out infinite;
}

@media(max-width: 991px) {
    ul.strip3-list li {
        font-size: 14px;
        line-height: 20px;
        padding: 0;
    }

    ul.strip3-list li:nth-child(1):after {
        display: block !important;
        height: 100%;
        top: 0;
        right: -9px;
    }
}

ul.strip3-list li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    height: 18px;
    background: #e6dede;
    width: 2px;
}

ul.strip3-list li:last-child::after {
    display: none;
}

@keyframes fade {
    0% {
        opacity: 100%;
    }

    50% {
        opacity: 30%;
    }

    70% {
        opacity: 100%;
    }

    100% {
        opacity: 100%;
    }
}

.hourglass {
    display: inline-block;
    vertical-align: middle;
    margin: -5px 8px 0 0;
    animation: rotateP 2.5s ease-in-out forwards infinite;
    max-width: 18px;
    filter: invert(1);
}

@keyframes rotateP {
    0% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(180deg)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(00deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.clock {
    margin: 0 8px -5px 0;
    display: inline-block;
    animation: fade 1s ease-in-out infinite;
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 50px solid #555;
}

.triangle-down {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 18px solid var(--primary-color-dark);
}

.shipbx {
    width: 710px;
    height: 90px;
    border: 2px solid var(--primary-color-dark);
    border-radius: 14px;
    margin: 0 auto 0 auto;
    display: block;
    position: relative;
    padding: 17px 25px 15px 150px;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #000;
}

.shipiconbx {
    background: var(--primary-color-dark);
    padding: 19px 5px 19px 7px;
    border-radius: 12px 0 0 12px;
    position: absolute;
    left: 0;
    top: 0;
}

.shipiconbx img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.shipiconbx::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 45px solid transparent;
    border-left: 15px solid var(--primary-color-dark);
    border-bottom: 45px solid transparent;
}

.shipbx.light {
    border: 2px solid var(--primary-color-dark);
}

.shipbx.light .shipiconbx {
    background: var(--primary-color-dark);
}

.shipbx.light .shipiconbx::after {
    border-left: 15px solid var(--primary-color-dark);
}

.shipbx-txt1 {
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    margin: 0;
    font-weight: 700;
}

.shipbx.light .shipbx-txt1 {
    color: #fff;
}

.shipbx-txt1 .red {
    color: var(--primary-color-dark);
    font-weight: 700;
}

.shipbx.light .shipbx-txt1 .red {
    color: var(--primary-color-dark);
}

.shipbx-txt2 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}

.shipbx.light .shipbx-txt2 {
    color: #fff;
}

.item-img {
    position: relative;
}

.save {
    position: absolute;
    right: 15px;
    bottom: 6px;
    height: 97px;
    width: 97px;
    background: #ffd200;
    border-radius: 50%;
}

.save p {
    font-weight: 600;
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    text-transform: uppercase;
    padding-top: 22px;
}

.save p span {
    font-weight: 800;
}

@media(max-width: 991px) {
    .shipbx {
        width: 370px;
        height: 118px;
        padding: 10px 5px 10px 98px;
        margin-top: 0px;
    }
    .shipbx-txt1 {
        font-size: 16px;
        line-height: 18px;
    }
    .shipbx-txt2 {
        font-size: 13px;
        line-height: 21px;
    }
    .shipiconbx {
        height: 116px;
        padding: 44px 0 20px 7px;
    }
    .shipiconbx img {
        width: 65px;
    }
    .shipiconbx::after {
        border-top: 58px solid transparent;
        border-left: 15px solid var(--secondary-color);
        border-bottom: 58px solid transparent;
        top: 10%;
    }
    .save {
        right: auto;
        left: 5px;
        top: -13px;
        height: 58px;
        width: 58px;
    }
    .save p {
        font-size: 15px;
        line-height: 17px;
        padding-top: 13px;
    }
    .shipbx {
        width: 370px;
        max-width: 100%;
        height: auto;
        padding: 10px 5px 10px 98px;
    }
    .shipbx-txt1 {
        font-size: 18px;
        line-height: 26px;
    }
    .shipbx-txt2 {
        font-size: 13px;
        line-height: 21px;
    }
    .shipiconbx {
        height: 100%;
        padding: 0 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .shipiconbx img {
        width: 65px;
    }
    .shipiconbx::after {
        border-top: 58px solid transparent;
        border-left: 15px solid var(--primary-color-dark);
        border-bottom: 58px solid transparent;
    }
    #fbcomments {
        margin-top: 0px !important;
    }
    .logos img {
        max-width: 90px;
        margin-bottom: 10px;
    }
}
/* Testimonials */
.user-name {
    display: flex;
    gap: 15px;
    align-items: center;
}

.verfied {
    color: #ff6f00;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

@media(max-width: 991px) {
    .verfied {
        font-size: 14px;
    }

    .texts h4 {
        font-size: 17px;
    }
}

.name p,
.text-user p {
    color: #545353;
    font-size: 16px;
}

.user-name .user {
    max-width: 100px;
    max-height: 100px;
    border-radius: 100%;
    float: right;
}

@media(max-width: 991px) {
    .user-name .user {
        float: inherit;
        margin: 0;
        max-width: 68px;
        max-height: 68px;
    }
}

.user-name .user img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.purchase {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--primary-color);
}

.purchase img {
    max-width: 50px;
}

.purchase p {
    margin: 0;
}

.sub-purchase {
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.5rem;
}

#guarantee::after {
    display: none;
}

#guarantee {
    position: relative;
    background: #f4f4f4;
    color: var(--text-color);
    text-align: left;
}

#guarantee .container {
    max-width: 1100px;
}

#guarantee h2 {
    color: var(--primary-color);
}

#guarantee h2 span {
    color: var(--secondary-color);
}

#guarantee img {
    max-width: 200px;
}

#guarantee .badges img {
    background-color: white;
    max-width: 100px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 599px) {
    #guarantee .badges img {
        max-width: 70px;
    }
}

#testimonials .card {
    border: 0;
    padding: 1.5rem;
    text-align: left;
    background-color: transparent;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}

#testimonials .card-container {
    background-color: #f6f6f6;
}

#testimonials .col-lg-12 {
    padding: 0px;
}

#testimonials .card h4 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
}

#testimonials .verfied {
    /* background-color: #00845d; */
    width: fit-content;
    /* padding: 0.1em 0.75em; */
    border-radius: 3em;
    margin-bottom: 0;
    color: #ff6f00;
}

#testimonials .purchase {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    border-bottom: none;
    align-items: center;
}

#testimonials .purchase img {
    max-width: 30px;
}

#testimonials .purchase p {
    margin: 0;
}

#testimonials .user {
    max-width: 200px;
    margin-bottom: 1rem;
}

@media(max-width: 991px) {
    #testimonials .user {
        float: inherit;
        margin: 0px;
    }
}

#testimonials .user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 991px) {
    #testimonials .user img {
        margin-bottom: 1rem;
    }
}

#testimonials .helpful-report {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

#testimonials .helpful-report .helpful {
    border: solid 1px var(--text-color);
    border-radius: 30px;
    padding: 5px 15px;
}

#testimonials .helpful-report .share {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#testimonials .helpful-report .report {
    color: #979797;
}

.principal {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cta {
    background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
    width: 100%;
    max-width: 260px;
    padding: 0.4em;
    color: #000;
    font-size: 22px;
    box-shadow: none;
}

.cta::after {
    content: "\f23f";
    font-family: "bootstrap-icons" !important;
    background-color: #000;
    color: white;
    text-shadow: none;
    font-size: 0.8em;
    font-weight: 400;
    height: 35px;
    width: 35px;
    align-content: center;
    border-radius: 50%;
    box-shadow: 1px 1px white inset;
    display: inline-block;
    margin-left: 15px;
}

#faq {
    background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color));
    color: white;
}

#faq .container {
    background-image: linear-gradient(45deg, var(--primary-color), var(--primary-color)) !important;
    max-width: 1000px;
}

#faq .accordion {
    position: relative;
    z-index: 2;
}

#faq .accordion-item {
    border-radius: 0.5em;
    margin-bottom: 0.25em;
    border: 0;
}

#faq .accordion-button {
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    border-radius: 0.25em;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
}

#faq .accordion-body {
    padding-bottom: 1.5em;
}

#faq {
    background: none;
    padding-left: 10px;
    padding-right: 10px;
}

#faq .container {
    background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 1rem;
    border-radius: 2em;
    border: 1px solid var(--third-color);
}

@media (max-width: 991px) {
    #faq .container {
        padding: 1em;
    }
}

#faq .accordion-item,
#faq .accordion-button {
    border-radius: 200px;
}

#faq .accordion-item {
    border-radius: 2em;
}

@media (max-width: 991px) {

    #faq .accordion-item,
    #faq .accordion-button {
        border-radius: 0px;
    }
}

#faq .accordion-item:focus,
#faq .accordion-button:focus {
    box-shadow: none;
}

/* #faq .accordion-body {
    background-color: #fff;
    padding-top: 4em !important;
    margin-top: -3em;
    border-radius: 2em 2em 2em 2em;
} */

@media (max-width: 991px) {
    #faq .accordion-body {
        border-radius: 0;
    }
}

#faq .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-btn-color);
}

.border-primary-new {
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color);
    background-image: radial-gradient(#e892c18b, #f4f4f4);
    height: 100%;
}

.border {
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color);
    background-image: radial-gradient(#dcd0d68b, #f4f4f4);
    height: 100%;
}

@media(max-width: 991px) {
    .border {
        height: auto;
        margin-bottom: 1rem;
    }
}

.countdown {
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

@media(max-width: 991px) {
    .countdown {
        display: inline-block;
        font-size: 14px;
        line-height: 20px;
    }
}

.title-claim {
    font-size: 37px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
}

@media(max-width: 991px) {
    .title-claim {
        font-size: 27px;
        margin: auto;
        max-width: 100%;
    }
}

.text-save {
    text-shadow: 0px 2px #e0e0e0a3;
    color: var(--primary-color-dark);
    font-size: 20px !important;
    font-weight: 700;
    padding: 0.5rem;
    border: dashed 3px var(--primary-color-dark);
    max-width: 60%;
    margin: 0 auto !important;
}

.text-save.no-border {
    border: 0;
}

@media(max-width: 991px) {
    .text-save {
        margin: 0;
        line-height: 16px;
    }
}

.text-free-shipping {
    color: #ef0219;
    text-shadow: 0px 2px #e0e0e0a3;
}

.best-value {
    padding: 1rem;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 3.125rem 3.125rem 0 0;
}

.free-shipping-section {
    background-color: var(--primary-color);
    color: #fff;
}

@media(max-width: 991px) {
    .free-shipping-section {
        text-align: center;
    }
}

.free-shipping-section img {
    max-width: 180px;
    filter: invert(1);
}

@media(max-width: 991px) {
    .free-shipping-section img {
        max-width: 100px;
    }
}

.free-shipping-section h2 {
    font-size: 35px;
    font-weight: 700;
}

@media(max-width: 991px) {
    .free-shipping-section h2 {
        font-size: 30px;
    }
}

.free-shipping-section p {
    font-size: 18px;
    margin: 0;
}

.free-shipping-section p span {
    font-weight: 600;
    color: var(--contrast-color);
}

.img-product {
    max-height: 250px;
}

@media(max-width: 991px) {
    .img-product {
        max-height: 100%;
    }
}

figure {
    margin: 0 !important;
}

/* Quiz */
.quiz-box .background-img {
    position: absolute;
    opacity: 0.25;
}

.quiz-box>section>.container {
    position: relative;
    background-image: radial-gradient(var(--primary-color), var(--primary-color-light), var(--primary-color-light));
    border: 4px solid white;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

#quiz h2,
#quiz h4 {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#quiz h2 {
    color: var(--contrast-color);
}

#quiz .option {
    border-radius: 10px;
    color: white;
    font-weight: 700;
    background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
    border-color: #fccd15 !important;
}

#quiz .option:hover {
    border-color: white;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.1411764706) inset;
}

#quiz .rounded-pill {
    background-color: red;
}

#progress h2,
#progress h4 {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#progress h2 {
    color: var(--contrast-color);
}

.bar-animation {
    animation: barAnimation 5s forwards ease-in;
}

@keyframes barAnimation {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

.timer {
    color: var(--contrast-color) !important;
}

.triangle-tip {
    width: 0;
    height: 0;
    border-left: 30vw solid transparent;
    border-right: 30vw solid transparent;
    border-top: 30px solid #251837;
    position: absolute;
    bottom: -29px;
    left: calc(50% - 30vw);
}

@media (max-width: 768px) {
    /* #testimonials .purchase {  
        align-items: flex-start;
    } */

    #testimonials .purchase img {
        max-width: 30px;
    }

    #testimonials .purchase p {
        font-size: 16px;
    }

    #testimonials .card {
        padding: 1.5rem 0;
    }
}

.quiz-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Estilos para o container das perguntas (mantendo seus estilos) */
.quiz-box>section>.container {
    position: relative;
    background: linear-gradient(90deg, var(--primary-color-dark), var(--secondary-color-dark));
    border: 4px solid white;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 20px;
    border-radius: 10px;
}

/* Estilos para as perguntas */
.question {
    display: none;
}

.question.active {
    display: block !important;
}

.question h4 {
    color: white;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* Estilos para os inputs (adaptado para centralizar) */
.form-control {
    max-width: 320px;
    margin: 10px auto;
    /* Centraliza os inputs */
}

/* Estilos para os botões (mantendo seus estilos e adicionando espaçamento) */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    margin-top: 10px;
    /* Espaçamento entre os botões */
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.option {
    border-radius: 10px;
    color: white;
    font-weight: 700;
    background-color: var(--primary-color-dark) !important;
    border-color: var(--primary-color) !important;
    width: 100%;
    margin-bottom: 10px;
}

.option:hover {
    border-color: white;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.1411764706) inset;
}

/* Estilos para os checkboxes (adicionando estilos) */
.form-check {
    margin-bottom: 10px;
    color: white;
}

.timer {
    color: var(--contrast-color) !important;
}


.custom_slide_container {
    width: 320px;
    margin: 20px auto;
}

.custom_slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.custom_slider:hover {
    opacity: 1;
}

.custom_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.custom_slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.form-check-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    text-align: left;
}

@media (max-width: 768px) {
    .form-check-container {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
        text-align: left;
    }
}


#progress-steps {
    position: relative;
    height: 30px;
    width: 100%;
}

#progress-steps.running .step-txt {
    animation-name: fadeInOut;
    animation-duration: 4.75s;
    animation-fill-mode: forwards;
}

.step-txt {
    position: absolute;
    width: 100%;
    top: 100%;
    color: white;
    opacity: 0;
}

.step-txt:nth-child(1) {
    animation-delay: 0s;
}

.step-txt:nth-child(2) {
    animation-delay: 3.75s;
}

.step-txt:nth-child(3) {
    animation-delay: 7.5s;
}

.step-txt:nth-child(4) {
    animation-delay: 11.25s;
}

@keyframes fadeInOut {

    0%,
    100% {
        top: 100%;
        opacity: 0;
    }

    20%,
    70% {
        top: 0;
        opacity: 1;
    }

    80% {
        top: -100%;
        opacity: 0;
    }
}

@media (max-width: 590px) {
    .custom_slide_container {
        width: 100%;
    }
}

.bar-animation {
    animation: barAnimation 10s forwards ease-in;
}

@keyframes barAnimation {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

.btn-primary:hover,
.btn-primary.option:focus,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
    color: #ffffff !important;
    background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
    background-color: #fccd15 !important;
    border-color: var(--secondary-color) !important;
    background-image: none !important;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
