/* ── RESET ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Nunito', sans-serif;
	background: #fff;
	color: #444;
	line-height: 1.7;
	overflow-x: hidden
}

img,
video {
	max-width: 100%;
	display: block
}

a {
	text-decoration: none;
	color: inherit
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font: inherit
}

ul {
	list-style: none
}

/* ── TOKENS ── */
:root {
	--orange: #FF6B35;
	--orange-lt: #FFF0EB;
	--orange-dk: #E5541E;
	--green: #2DC653;
	--green-lt: #EDFAF2;
	--green-dk: #1FA540;
	--blue: #4D9EFF;
	--blue-lt: #EBF3FF;
	--blue-dk: #2B7EE8;
	--purple: #8B5CF6;
	--purple-lt: #F5F0FF;
	--purple-dk: #7C3AED;
	--pink: #F472B6;
	--pink-lt: #FFF0F8;
	--pink-dk: #DB2777;
	--yellow: #FACC15;
	--yellow-lt: #FFFBEB;
	--teal: #14B8A6;
	--teal-lt: #E8FAF8;
	--red: #F43F5E;
	--red-lt: #FFF0F3;
	--text: #333346;
	--muted: #6B7280;
	--shadow-orange: 0 8px 30px rgba(255, 107, 53, .30);
	--shadow-blue: 0 8px 30px rgba(77, 158, 255, .30);
	--shadow-purple: 0 8px 30px rgba(139, 92, 246, .30);
	--shadow-green: 0 8px 30px rgba(45, 198, 83, .25);
	--max-w: 1160px;
}

/* ── CONTAINER ── */
.container {
	width: min(var(--max-w), 100% - 2.5rem);
	margin-inline: auto
}

/* ── TOPBAR ── */
.topbar {
	background: linear-gradient(90deg, var(--orange), #FF8F65, var(--orange));
	background-size: 200% 100%;
	animation: shimmer 3s linear infinite;
	color: #fff;
	text-align: center;
	padding: .65rem 1rem;
	font-family: 'Fredoka One', sans-serif;
	font-size: 1rem;
	letter-spacing: .03em;
	position: sticky;
	top: 0;
	z-index: 100;
}

.topbar__star {
	margin: 0 .4rem;
	display: inline-block;
	animation: spin 4s linear infinite
}

@keyframes shimmer {
	0% {
		background-position: 0 0
	}

	100% {
		background-position: 200% 0
	}
}

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

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

/* ══════════════════════════════════════════════════
   SHAPES DECORATIVAS FLUTUANTES
══════════════════════════════════════════════════ */
.shape {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.shape--circle {
	border-radius: 50%
}

.shape--orange {
	background: var(--orange);
	opacity: .25
}

.shape--yellow {
	background: var(--yellow);
	opacity: .35
}

.shape--green {
	background: var(--green);
	opacity: .25
}

.shape--blue {
	background: var(--blue);
	opacity: .25
}

.shape--pink {
	background: var(--pink);
	opacity: .25
}

.shape--purple {
	background: var(--purple);
	opacity: .2
}

.shape--star::before {
	content: '★';
	color: inherit;
	display: block
}

.shape--star.shape--orange::before {
	color: var(--orange)
}

.shape--star.shape--yellow::before {
	color: var(--yellow)
}

.shape--star.shape--pink::before {
	color: var(--pink)
}

.shape--star.shape--purple::before {
	color: var(--purple)
}

.shape--star.shape--blue::before {
	color: var(--blue)
}

.shape--star.shape--white::before {
	color: rgba(255, 255, 255, .7)
}

.shape--dot {
	border-radius: 50%
}

.shape--white-t {
	background: rgba(255, 255, 255, .15);
	border-radius: 50%
}

/* Animações das shapes */
.shape:nth-child(odd) {
	animation: floatA 5s ease-in-out infinite
}

.shape:nth-child(even) {
	animation: floatB 6s ease-in-out infinite
}

@keyframes floatA {

	0%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	50% {
		transform: translateY(-12px) rotate(8deg)
	}
}

@keyframes floatB {

	0%,
	100% {
		transform: translateY(0) rotate(0deg)
	}

	50% {
		transform: translateY(10px) rotate(-6deg)
	}
}

/* ══════════════════════════════════════════════════
   SEÇÕES
══════════════════════════════════════════════════ */
.section {
	padding: 90px 0;
	position: relative;
	overflow: hidden
}

.section--white {
	background: #fff
}

.section--cream {
	background: #fff7f0
}

.section--blue-soft {
	background: #f0f6ff
}

.section--orange-soft {
	background: #fff9f0
}

.section--purple-soft {
	background: #f5f0ff
}

.section--green-soft {
	background: #edfaf2
}

/* Ondas separadoras */
.wave-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 0;
	z-index: 1
}

.wave-bottom svg {
	display: block;
	width: 100%;
	height: 80px
}

.wave-bottom--flip svg {
	transform: scaleX(-1)
}

/* ── SEÇÃO HEADER ── */
.section-head {
	text-align: center;
	margin-bottom: 3rem
}

.section-sub {
	color: var(--muted);
	margin-top: .5rem;
	font-size: 1rem
}

/* Section tag (estilo Kidko) */
.section-tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	border-radius: 99px;
	padding: .35rem 1.1rem;
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-tag i {
	font-size: .9em
}

.section-tag--orange {
	background: var(--orange-lt);
	color: var(--orange-dk)
}

.section-tag--green {
	background: var(--green-lt);
	color: var(--green-dk)
}

.section-tag--blue {
	background: var(--blue-lt);
	color: var(--blue-dk)
}

.section-tag--purple {
	background: var(--purple-lt);
	color: var(--purple-dk)
}

.section-tag--pink {
	background: var(--pink-lt);
	color: var(--pink-dk)
}

/* Títulos */
.section-title {
	font-family: 'Fredoka One', sans-serif;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	line-height: 1.2;
	color: var(--text);
	text-align: center;
}

.section-title--left {
	text-align: left
}

.title-highlight {
	color: var(--orange)
}

/* Título sublinhado squiggle (estilo Kidko) */
.title-squiggle {
	position: relative;
	color: var(--orange);
	display: inline-block;
}

.title-squiggle::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 6px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 8 Q25 2 50 8 Q75 14 100 8' fill='none' stroke='%23FF6B35' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/cover no-repeat;
}

/* ══════════════════════════════════════════════════
   BOTÕES (com shadow colorida)
══════════════════════════════════════════════════ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	font-family: 'Fredoka One', sans-serif;
	letter-spacing: .03em;
	border-radius: 50px;
	padding: .85rem 2rem;
	font-size: 1rem;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: rgba(255, 255, 255, .15);
	opacity: 0;
	transition: opacity .2s;
}

.btn:hover::after {
	opacity: 1
}

.btn:hover {
	transform: translateY(-3px)
}

.btn:active {
	transform: translateY(0)
}

.btn--lg {
	padding: 1.05rem 2.5rem;
	font-size: 1.15rem
}

.btn--full {
	width: 100%;
	text-align: center
}

.btn--hero {
	background: var(--orange);
	color: #fff;
	box-shadow: var(--shadow-orange);
	font-size: 1.1rem;
	padding: 1rem 2.4rem;
	border-radius: 50px;
	animation: pulse-orange 2.5s ease-in-out infinite;
}

@keyframes pulse-orange {

	0%,
	100% {
		box-shadow: 0 8px 30px rgba(255, 107, 53, .35)
	}

	50% {
		box-shadow: 0 12px 40px rgba(255, 107, 53, .55)
	}
}

.btn--orange {
	background: var(--orange);
	color: #fff;
	box-shadow: var(--shadow-orange)
}

.btn--orange:hover {
	background: var(--orange-dk)
}

.btn--blue {
	background: var(--blue);
	color: #fff;
	box-shadow: var(--shadow-blue)
}

.btn--blue:hover {
	background: var(--blue-dk)
}

.btn--purple {
	background: var(--purple);
	color: #fff;
	box-shadow: var(--shadow-purple)
}

.btn--purple:hover {
	background: var(--purple-dk)
}

.btn--green {
	background: var(--green);
	color: #fff;
	box-shadow: var(--shadow-green)
}

.btn--green:hover {
	background: var(--green-dk)
}

.btn--white-cta {
	background: #fff;
	color: var(--orange);
	box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
	font-size: 1.15rem;
	padding: 1.1rem 2.6rem;
}

.btn--white-cta:hover {
	background: #fff7f0;
	transform: translateY(-4px)
}

/* Pills hero */
.pill {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	border-radius: 99px;
	padding: .3rem .9rem;
	font-size: .83rem;
	font-weight: 800;
}

.pill--green {
	background: var(--green-lt);
	color: var(--green-dk)
}

.pill--orange {
	background: var(--orange-lt);
	color: var(--orange-dk)
}

.pill--purple {
	background: var(--purple-lt);
	color: var(--purple-dk)
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
	background: linear-gradient(145deg, #FFF5EF 0%, #FFF0F8 50%, #EFF5FF 100%);
	padding: 80px 0 140px;
	position: relative;
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: var(--yellow-lt);
	border: 2px solid var(--yellow);
	color: #92690A;
	border-radius: 99px;
	font-family: 'Fredoka One', sans-serif;
	font-size: .88rem;
	letter-spacing: .04em;
	padding: .4rem 1.1rem;
	margin-bottom: 1.2rem;
}

.hero__title {
	font-family: 'Fredoka One', sans-serif;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.15;
	color: var(--text);
	margin-bottom: 1rem;
}

.hero__title--color {
	color: var(--orange)
}

.hero__desc {
	font-size: 1.05rem;
	color: var(--muted);
	margin-bottom: 1.5rem;
	line-height: 1.75
}

.hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-bottom: 1.8rem
}

.hero__secure {
	font-size: .85rem;
	color: var(--muted);
	margin-top: 1rem
}

.hero__secure i {
	color: var(--green)
}

/* Video hero */
.hero__media {
	position: relative
}

.hero__video-frame {
	position: relative;
	border-radius: 24px;
	overflow: visible;
}

.hero__video-deco {
	position: absolute;
	border-radius: 50%;
	z-index: -1;
}

.hero__video-deco--1 {
	width: 200px;
	height: 200px;
	background: var(--orange);
	opacity: .15;
	top: -30px;
	right: -30px;
}

.hero__video-deco--2 {
	width: 140px;
	height: 140px;
	background: var(--purple);
	opacity: .12;
	bottom: -20px;
	left: -20px;
}

.hero__video-frame video {
	width: 100%;
	border-radius: 20px;
	display: block;
	box-shadow: 0 20px 60px rgba(255, 107, 53, .2);
	border: 4px solid #fff;
}

.hero__video-badge {
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--orange), #FF8F65);
	color: #fff;
	border-radius: 99px;
	font-family: 'Fredoka One', sans-serif;
	font-size: .9rem;
	letter-spacing: .04em;
	padding: .45rem 1.4rem;
	white-space: nowrap;
	box-shadow: 0 6px 20px rgba(255, 107, 53, .4);
}

/* ══════════════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════════════ */
.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0 2rem;
}

.problem-card {
	border-radius: 20px;
	padding: 2rem 1.6rem;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
	position: relative;
	overflow: hidden;
}

.problem-card::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	opacity: .1;
}

.problem-card--red {
	background: var(--red-lt)
}

.problem-card--red::before {
	background: var(--red)
}

.problem-card--blue {
	background: var(--blue-lt)
}

.problem-card--blue::before {
	background: var(--blue)
}

.problem-card--purple {
	background: var(--purple-lt)
}

.problem-card--purple::before {
	background: var(--purple)
}

.problem-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .1)
}

.problem-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.8rem;
}

.problem-card--red .problem-card__icon {
	background: var(--red-lt);
	border: 2px solid var(--red);
	color: var(--red)
}

.problem-card--blue .problem-card__icon {
	background: var(--blue-lt);
	border: 2px solid var(--blue);
	color: var(--blue)
}

.problem-card--purple .problem-card__icon {
	background: var(--purple-lt);
	border: 2px solid var(--purple);
	color: var(--purple)
}

.problem-card h3 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.2rem;
	margin-bottom: .5rem;
	color: var(--text)
}

.problem-card p {
	color: var(--muted);
	font-size: .95rem
}

.problem-solve {
	text-align: center;
	font-size: 1.1rem;
	color: var(--text)
}

.problem-solve__arrow {
	display: block;
	font-size: 2.5rem;
	color: var(--orange);
	animation: bounce 1.5s ease-in-out infinite;
	margin-bottom: .4rem;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(8px)
	}
}

/* ══════════════════════════════════════════════════
   PRODUTO SPLIT
══════════════════════════════════════════════════ */
.product-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center
}

.product-split__img-wrap {
	position: relative;
	display: inline-block
}

.product-split__img-wrap img {
	border-radius: 24px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(255, 107, 53, .18);
	border: 4px solid #fff;
}

.product-stamp {
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--orange), #FF8F65);
	color: #fff;
	border-radius: 99px;
	padding: .45rem 1.4rem;
	font-family: 'Fredoka One', sans-serif;
	font-size: .9rem;
	white-space: nowrap;
	box-shadow: 0 6px 20px rgba(255, 107, 53, .4);
}

.product-desc {
	color: var(--muted);
	margin: 1rem 0 1.5rem;
	font-size: .97rem;
	line-height: 1.75
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: .7rem;
	margin-bottom: 2rem
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: .7rem;
	font-size: .97rem;
	color: var(--text)
}

.feature-check {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	color: #fff;
	flex-shrink: 0;
}

.feature-check--green {
	background: var(--green)
}

.feature-check--orange {
	background: var(--orange)
}

.feature-check--blue {
	background: var(--blue)
}

.feature-check--purple {
	background: var(--purple)
}

.feature-check--pink {
	background: var(--pink)
}

/* ══════════════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════════════ */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.benefit-card {
	border-radius: 20px;
	padding: 2rem 1.6rem;
	transition: transform .25s ease, box-shadow .25s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	opacity: .08;
}

.benefit-card--orange {
	background: #fff;
	border-bottom: 4px solid var(--orange)
}

.benefit-card--orange::after {
	background: var(--orange)
}

.benefit-card--green {
	background: #fff;
	border-bottom: 4px solid var(--green)
}

.benefit-card--green::after {
	background: var(--green)
}

.benefit-card--purple {
	background: #fff;
	border-bottom: 4px solid var(--purple)
}

.benefit-card--purple::after {
	background: var(--purple)
}

.benefit-card--pink {
	background: #fff;
	border-bottom: 4px solid var(--pink)
}

.benefit-card--pink::after {
	background: var(--pink)
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .1)
}

.benefit-card__icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	font-size: 1.5rem;
	color: #fff;
}

.benefit-card--orange .benefit-card__icon-wrap {
	background: var(--orange)
}

.benefit-card--green .benefit-card__icon-wrap {
	background: var(--green)
}

.benefit-card--purple .benefit-card__icon-wrap {
	background: var(--purple)
}

.benefit-card--pink .benefit-card__icon-wrap {
	background: var(--pink)
}

.benefit-card h3 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.2rem;
	color: var(--text);
	margin-bottom: .6rem
}

.benefit-card p {
	color: var(--muted);
	font-size: .92rem;
	line-height: 1.65
}

/* ══════════════════════════════════════════════════
   GALERIA SLIDER
══════════════════════════════════════════════════ */
.gallery-slider {
	position: relative;
	overflow: hidden;
	padding: 0 0 2rem
}

.gallery-track {
	display: flex;
	gap: 1.5rem;
	padding: 1rem 2rem;
	transition: transform .45s cubic-bezier(.25, .8, .25, 1);
	cursor: grab;
	user-select: none;
}

.gallery-track:active {
	cursor: grabbing
}

.gallery-slide {
	flex: 0 0 320px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
	border: 4px solid #fff;
	transition: transform .25s ease;
}

.gallery-slide:hover {
	transform: scale(1.03)
}

.gallery-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block
}

.gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-60%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-orange);
	z-index: 5;
	transition: transform .15s ease, background .15s ease;
}

.gallery-btn--prev {
	left: 1rem
}

.gallery-btn--next {
	right: 1rem
}

.gallery-btn:hover {
	background: var(--orange-dk);
	transform: translateY(-60%) scale(1.1)
}

.gallery-dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	position: absolute;
	bottom: .5rem;
	left: 50%;
	transform: translateX(-50%);
}

.gallery-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: background .2s, transform .2s;
}

.gallery-dots .dot.active {
	background: var(--orange);
	transform: scale(1.3)
}

/* ══════════════════════════════════════════════════
   BÔNUS
══════════════════════════════════════════════════ */
.bonus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
	margin: 2.5rem 0 2rem;
}

.bonus-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	border: 2px dashed #FBBF24;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease;
}

.bonus-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(251, 191, 36, .2)
}

.bonus-card__num {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--yellow);
	color: #7A5200;
	font-family: 'Fredoka One', sans-serif;
	font-size: .78rem;
	padding: .2rem .9rem;
	border-radius: 99px;
	white-space: nowrap;
	letter-spacing: .05em;
}

.bonus-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: .5rem auto 1rem;
	font-size: 1.6rem;
	color: #fff;
}

.bonus-card__icon--teal {
	background: var(--teal)
}

.bonus-card__icon--orange {
	background: var(--orange)
}

.bonus-card__icon--pink {
	background: var(--pink)
}

.bonus-card__icon--purple {
	background: var(--purple)
}

.bonus-card h3 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.1rem;
	color: var(--text);
	margin-bottom: .5rem
}

.bonus-card p {
	color: var(--muted);
	font-size: .88rem;
	line-height: 1.6
}

.bonus-card__value {
	margin-top: .8rem;
	font-size: .82rem;
	color: var(--muted)
}

.bonus-card__value s {
	color: var(--orange);
	font-weight: 700
}

/* Imagem placeholder 4:5 nos cards de bônus */
.bonus-card__img-wrap {
	width: 100%;
	aspect-ratio: 4/5;
	border-radius: 14px;
	overflow: hidden;
	margin: 1rem auto 1rem;
	max-width: 200px;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bonus-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bonus-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e5e7eb 0%, #f9fafb 50%, #e5e7eb 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	color: #9ca3af;
	font-size: .8rem;
}

.bonus-card__img-placeholder i {
	font-size: 2rem;
	opacity: .5
}

.bonus-total {
	text-align: center;
	margin-top: 1rem
}

.bonus-total__inner {
	display: inline-block;
	background: var(--yellow-lt);
	border: 2px solid var(--yellow);
	border-radius: 16px;
	padding: 1.2rem 2.5rem;
	text-align: center;
}

.bonus-total__inner p {
	color: var(--muted);
	font-size: 1rem
}

.bonus-total__inner s {
	color: var(--orange);
	font-weight: 700
}

.bonus-total__free {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.15rem;
	color: #7A5200;
	margin-top: .4rem;
}

.bonus-total__free i {
	color: var(--orange)
}

/* ══════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════ */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.testi-item {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(139, 92, 246, .15);
	border: 4px solid #fff;
	transition: transform .25s ease;
}

.testi-item:hover {
	transform: translateY(-5px)
}

.testi-item img {
	width: 100%;
	height: auto;
	display: block
}

/* ══════════════════════════════════════════════════
   PRICING (cards com cabeçalho colorido)
══════════════════════════════════════════════════ */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 2rem;
	align-items: start;
	margin-top: 2.5rem;
}

.pricing-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
	position: relative;
	transition: transform .25s ease;
}

.pricing-card:hover {
	transform: translateY(-6px)
}

.pricing-card--vip {
	box-shadow: 0 15px 50px rgba(255, 107, 53, .2);
	border: 5px solid var(--orange);
}

.pricing-card__ribbon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange);
	color: #fff;
	font-family: 'Fredoka One', sans-serif;
	font-size: .85rem;
	letter-spacing: .04em;
	padding: .3rem 1.4rem;
	border-radius: 0 0 12px 12px;
	white-space: nowrap;
	z-index: 5;
}

.pricing-card__header {
	padding: 1.8rem 2rem 1.5rem;
	color: #fff;
	text-align: center
}

.pricing-card__header--blue {
	background: linear-gradient(135deg, var(--blue), var(--blue-dk))
}

.pricing-card__header--orange {
	background: linear-gradient(135deg, var(--orange), #FF8F65);
	padding-top: 2.8rem
}

.pricing-card__header h3 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.4rem;
	margin-bottom: .3rem
}

.pricing-card__header p {
	font-size: .88rem;
	opacity: .85
}

.pricing-card__body {
	padding: 1.8rem 2rem
}

.pricing-card__img {
	width: 60%;
	aspect-ratio: 4/5;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 1.4rem;
	border: 3px solid #f5f5f5;
	display: block;
	margin-inline: auto;
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-bottom: 1.5rem
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .93rem;
	padding: .2rem 0;
}

.pricing-features .ok {
	color: var(--green);
	font-weight: 700
}

.pricing-features .ok i {
	width: 18px;
	text-align: center;
	font-size: .85rem
}

.pricing-features .no {
	color: #bbb
}

.pricing-features .no i {
	width: 18px;
	text-align: center;
	font-size: .85rem
}

.pricing-price {
	text-align: center;
	border-radius: 14px;
	padding: 1rem;
	margin-bottom: 1.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .15rem;
}

.pricing-price--blue {
	background: var(--blue-lt)
}

.pricing-price--orange {
	background: linear-gradient(135deg, #FFF0EB, #FFE4D4)
}

.pricing-price__from {
	font-size: .85rem;
	color: var(--muted)
}

.pricing-price__label {
	font-size: .85rem;
	font-weight: 700;
	color: var(--muted)
}

.pricing-price__value {
	font-family: 'Fredoka One', sans-serif;
	font-size: 2.6rem;
	color: var(--orange);
	line-height: 1;
}

.pricing-price--blue .pricing-price__value {
	color: var(--blue-dk)
}

.pricing-price__economy {
	font-size: .88rem;
	font-weight: 700;
	color: var(--green)
}

.pricing-card__secure {
	text-align: center;
	font-size: .8rem;
	color: var(--muted);
	margin-top: .8rem
}

/* ══════════════════════════════════════════════════
   GARANTIA
══════════════════════════════════════════════════ */
.guarantee-block {
	display: flex;
	align-items: center;
	gap: 3rem;
	background: #fff;
	border-radius: 24px;
	padding: 3rem;
	border: 3px solid var(--green);
	box-shadow: 0 10px 40px rgba(45, 198, 83, .15);
}

.guarantee-seal {
	flex-shrink: 0;
	width: 160px;
	height: 160px;
}

.guarantee-seal img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.guarantee-block__content h2 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.7rem;
	color: var(--green-dk);
	margin-bottom: .6rem;
}

.guarantee-block__content p {
	color: var(--muted);
	line-height: 1.75
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-wrap {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: .8rem
}

.faq-item {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 1.6rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text);
	text-align: left;
	gap: 1rem;
	transition: background .15s ease;
}

.faq-q:hover {
	background: var(--blue-lt)
}

.faq-q[aria-expanded="true"] {
	background: var(--orange-lt);
	color: var(--orange-dk)
}

.faq-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid currentColor;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: .85rem;
	transition: transform .25s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
	background: var(--orange);
	border-color: var(--orange);
	color: #fff
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding .35s ease
}

.faq-a.open {
	max-height: 300px
}

.faq-a p {
	padding: .2rem 1.6rem 1.2rem;
	color: var(--muted);
	font-size: .95rem;
	line-height: 1.7
}

/* ══════════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════════ */
.final-cta {
	background: linear-gradient(135deg, var(--orange) 0%, #FF8F65 50%, #FF6B95 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.final-cta__title {
	font-family: 'Fredoka One', sans-serif;
	font-size: clamp(2rem, 4.5vw, 3rem);
	color: #fff;
	margin-bottom: .8rem;
}

.final-cta__sub {
	color: rgba(255, 255, 255, .9);
	font-size: 1.1rem;
	margin-bottom: 2.5rem
}

.final-cta__reassurance {
	color: rgba(255, 255, 255, .8);
	font-size: .88rem;
	margin-top: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
	background: #222233;
	color: #aaa;
	text-align: center;
	padding: 3rem 1rem;
	font-size: .88rem;
}

.footer__brand {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.2rem;
	color: #fff;
	margin-bottom: .6rem;
}

.footer__brand i {
	color: var(--orange)
}

.footer__copy {
	margin-bottom: .4rem
}

.footer__warning {
	font-size: .8rem;
	color: #888
}

.footer__warning i {
	color: var(--yellow)
}

/* ══════════════════════════════════════════════════
   MODAL EXIT INTENT
══════════════════════════════════════════════════ */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .65);
	backdrop-filter: blur(5px);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-overlay.active {
	display: flex
}

.modal-box {
	background: #fff;
	border-radius: 28px;
	padding: 3rem 2.4rem;
	max-width: 460px;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
	animation: popIn .35s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
	from {
		opacity: 0;
		transform: scale(.8) translateY(20px)
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0)
	}
}

.modal-box__deco {
	position: absolute;
	border-radius: 50%
}

.modal-box__deco--1 {
	width: 150px;
	height: 150px;
	background: var(--orange-lt);
	top: -50px;
	right: -50px
}

.modal-box__deco--2 {
	width: 100px;
	height: 100px;
	background: var(--purple-lt);
	bottom: -30px;
	left: -30px
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--orange-lt);
	color: var(--orange);
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
	z-index: 2;
}

.modal-close:hover {
	background: var(--orange-lt)
}

.modal-box__icon {
	font-size: 2.8rem;
	margin-bottom: .5rem
}

.modal-box h2 {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1.9rem;
	color: var(--text);
	margin-bottom: .3rem
}

.modal-box__sub {
	color: var(--orange-dk);
	font-weight: 700;
	margin-bottom: .8rem
}

.modal-box p {
	color: var(--muted);
	font-size: .95rem;
	line-height: 1.65;
	margin-bottom: 0
}

.modal-deal {
	background: var(--yellow-lt);
	border: 2px solid var(--yellow);
	border-radius: 16px;
	padding: 1.2rem;
	margin: 1.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .3rem;
}

.modal-deal__label {
	font-family: 'Fredoka One', sans-serif;
	font-size: 1rem;
	color: var(--text)
}

.modal-deal__from {
	font-size: .85rem;
	color: var(--muted)
}

.modal-deal__price {
	font-family: 'Fredoka One', sans-serif;
	font-size: 2.4rem;
	color: var(--orange);
	line-height: 1
}

.modal-deal__badge {
	background: var(--yellow);
	color: #7A5200;
	font-size: .78rem;
	font-weight: 800;
	padding: .2rem .8rem;
	border-radius: 99px;
}

.modal-decline {
	display: block;
	width: 100%;
	margin-top: 1rem;
	color: #bbb;
	font-size: .82rem;
	text-decoration: underline;
	padding: .4rem;
}

.modal-decline:hover {
	color: var(--muted)
}

/* ══════════════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════════════ */
.sticky-mobile {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: .8rem 1rem;
	background: #FDDEE3;
	border-top: 2px solid var(--orange-lt);
	z-index: 90;
	text-align: center;
}

.sticky-mobile .btn {
	width: 100%;
	max-width: 400px
}

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .5s ease, transform .5s ease
}

.reveal.visible {
	opacity: 1;
	transform: none
}

/* ══════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════ */
@media(max-width:920px) {
	.hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem
	}

	.hero__pills {
		justify-content: center
	}

	.hero__media {
		order: -1;
		max-width: 500px;
		margin: 0 auto
	}

	.hero__text {
		order: 0
	}

	.product-split {
		grid-template-columns: 1fr;
		gap: 2rem
	}

	.product-split__img {
		max-width: 460px;
		margin: 0 auto
	}

	.section-title--left {
		text-align: center
	}

	.product-split__content .section-tag {
		display: inline-flex
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin-inline: auto
	}

	.pricing-card--vip {
		order: -1
	}

	.guarantee-block {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
		gap: 1.5rem
	}
}

@media(max-width:600px) {
	:root {
		--section-gap: 60px
	}

	.section {
		padding: 70px 0
	}

	.hero {
		padding: 60px 0 120px
	}

	.hero__title {
		font-size: 1.9rem
	}

	.gallery-track {
		padding: 0;
		gap: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		transition: none;
		transform: none !important;
	}

	.pricing-card__img {
		width: 75%;
	}

	.gallery-slide {
		flex: 0 0 100vw;
		scroll-snap-align: center;
		margin: 0;
		border-radius: 0;
		border: none;
		box-shadow: none;
	}

	.gallery-slide img {
		height: calc(100vw * 1.25);
	}

	.gallery-btn {
		display: none;
	}

	.gallery-track {
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.gallery-track::-webkit-scrollbar {
		display: none;
	}

	.gallery-slide {
		flex: 0 0 calc(100vw - 2rem);
		margin-inline: 1rem
	}

	.guarantee-seal {
		width: 120px;
		height: 120px;
	}

	.modal-box {
		padding: 2rem 1.5rem
	}

	.bonus-total__inner {
		padding: 1rem 1.5rem
	}

	.sticky-mobile {
		display: block
	}

	body {
		padding-bottom: 72px
	}

	.hero__video-frame {
		margin: 0 auto;
		width: 100%
	}

	.hero__video-frame video {
		width: 100%;
		border-radius: 16px
	}

	.btn {
		white-space: normal;
		word-break: break-word;
		text-align: center;
		line-height: 1.3;
		padding: .85rem 1.2rem;
	}

	.btn--hero,
	.btn--lg {
		font-size: 1rem;
		padding: .9rem 1.4rem
	}

	.btn--full {
		width: 100%
	}
}