:root {
	--font-default: "Montserrat Alternates", Arial, sans-serif;
	--plush-pink: #ff0098;
	--plush-pink-dark: #6b003f;
	--plush-green: #20e996;
	--plush-green-dark: #054226;
	--plush-green-neon: #24ffa4;
	--plush-yellow: #ffd200;
	--plush-button-pink: #ff0794;
	--plush-button-shadow: #6b003d;
	--plush-ink: #151515;
	--plush-muted: #6c6c6c;
	--plush-white: #fff;
	scroll-behavior: smooth;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
}

body {
	margin: 0;
	background: white;
	color: var(--plush-ink);
	font-family: var(--font-default);
	font-size: 16px;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
p {
	margin: 0;
}

p {
	font-size: 1.25rem;
	line-height: 1.35;
}

h1,
h2 {
	font-weight: 900;
	line-height: 0.95;
}

h2 {
	color: var(--plush-pink-dark);
	font-size: clamp(2.75rem, 5.4vw, 4rem);
	font-weight: 900;
}

.section-subtitle {
	margin-top: 0.45rem;
	color: var(--plush-muted);
	font-size: 1.25rem;
	font-weight: 700;
}

.plush-btn,
.plush-btn:focus {
	min-height: 44px;
	padding: 0.65rem 1.35rem;
	border: 2px solid #97005a;
	border-radius: 999px;
	background: var(--plush-button-pink);
	color: var(--plush-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 9px 0 var(--plush-button-shadow);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.plush-btn::before {
	content: "";
	width: 33px;
	height: 33px;
	flex: 0 0 33px;
	background: currentColor;
	-webkit-mask: url("../assets/images/whatsapp.svg") center / contain no-repeat;
	mask: url("../assets/images/whatsapp.svg") center / contain no-repeat;
}

.plush-btn:hover {
	background: var(--plush-button-pink);
	color: var(--plush-white);
	transform: translateY(4px);
	box-shadow: 0 5px 0 var(--plush-button-shadow);
}

.plush-btn:focus-visible,
.navbar a:focus-visible {
	outline: 3px solid var(--plush-yellow);
	outline-offset: 4px;
}

.bta-icon {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

#header {
	height: 80px;
	background: var(--plush-pink-dark);
	z-index: 997;
}

.plush-header-inner {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.plush-mobile-logo {
	display: none;
}

.plush-header-social {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 4;
	transform: translateY(-50%);
}

.social .styled-icons {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	list-style: none;
}

.social a {
	width: 36px;
	height: 36px;
	border: 2px solid currentColor;
	border-radius: 999px;
	color: var(--plush-green-neon);
	display: grid;
	place-items: center;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.social a:hover,
.social a:focus-visible {
	background: var(--plush-green-neon);
	color: var(--plush-green-dark);
	transform: translateY(-2px);
}

.social .bta-icon {
	width: 1.05rem;
	height: 1.05rem;
}

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(2rem, 5vw, 6rem);
	height: 80px;
	list-style: none;
}

.navbar a {
	color: var(--plush-white);
	display: inline-flex;
	align-items: center;
	min-height: 80px;
	font-size: clamp(1rem, 1.1vw, 1.25rem);
	font-weight: 800;
	white-space: nowrap;
}

.navbar a:hover,
.navbar a.active {
	color: var(--plush-green);
}

.plush-brand {
	width: 11.5rem;
	height: 10rem;
	padding: 0.75rem;
	background: var(--plush-pink-dark);
	border: 2px solid var(--plush-yellow);
	border-top: 0;
	border-radius: 0 0 14px 14px;
	display: grid;
	place-items: center;
	position: relative;
	z-index: 3;
  top: -9px;
	overflow: visible;
	filter: drop-shadow(4px 9px 0 var(--plush-yellow));
}

.plush-brand-item {
	height: 80px;
	display: flex;
	align-items: flex-start;
}

.plush-brand img,
.plush-mobile-logo img {
	width: 100%;
	height: auto;
	display: block;
}

.plush-brand img,
.plush-mobile-logo img {
	animation: plush-logo-wiggle 3.8s ease-in-out infinite;
	transform-origin: 50% 70%;
}

.mobile-nav-toggle {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: var(--plush-white);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.mobile-nav-hide {
	color: var(--plush-pink-dark);
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 10002;
}

.plush-hero {
	margin-top: 80px;
	padding: 0;
}

.plush-hero-frame {
	margin: 0 auto;
}

.plush-hero-picture {
	display: block;
}

.plush-hero-img {
	width: 100%;
	height: auto;
	display: block;
}

.plush-hero-content {
	position: absolute;
	inset: 0;
	right: 0;
	left: 0;
}

.plush-hero-copy {
	width: min(58%, 960px);
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	color: var(--plush-white);
}

.plush-hero-copy h1 {
	font-size: clamp(2.75rem, 3.3vw, 4rem);
	font-weight: 900;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.28rem;
}

.plush-title-line {
	width: max-content;
	max-width: 100%;
	padding: 0.12em 0.28em 0.16em;
	border-radius: 0.12em;
	color: var(--plush-white);
	display: inline-block;
}

.plush-title-line-dark {
	background: var(--plush-button-shadow);
}

.plush-title-line-pink {
	background: var(--plush-button-pink);
}

.plush-hero-copy p {
	width: max-content;
	max-width: min(100%, 520px);
	margin: 0.85rem auto 0;
	padding: 0.85rem 1.1rem;
	border-radius: 0.28rem;
	background: var(--plush-button-shadow);
	color: var(--plush-white);
	font-size: clamp(1rem, 1.22vw, 1.25rem);
	font-weight: 600;
	line-height: 1.15;
	text-align: center;
}

.plush-hero-copy p strong {
	color: var(--plush-white);
	font-weight: 900;
}

.plush-hero-btn {
	position: absolute;
	left: 50%;
	bottom: 6%;
	transform: translateX(-50%);
	background: var(--plush-green-neon);
	border-color: var(--plush-green-neon);
	color: var(--plush-green-dark);
	box-shadow: 0 9px 0 var(--plush-green-dark);
}

.plush-hero-btn:hover,
.plush-hero-btn:focus {
	background: var(--plush-green-neon);
	border-color: var(--plush-green-neon);
	color: var(--plush-green-dark);
	box-shadow: 0 5px 0 var(--plush-green-dark);
}

.plush-hero-btn:hover {
	transform: translateX(-50%) translateY(4px);
}

.plush-how {
	padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
	background: var(--plush-white);

	h2 {
		color: var(--plush-pink-dark);

		strong {
			color: var(--plush-pink);
		}
	}
}

.plush-steps {
	margin-top: 3.2rem;
}

.plush-step {
	min-height: 260px;
	padding: 4.4rem 1.6rem 2.2rem;
	border-radius: 10px;
	background: var(--plush-green-neon);
	position: relative;
	display: grid;
	grid-template-rows: 96px auto 1fr;
	align-items: center;
	justify-items: center;
}

.plush-step-number {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--plush-green-dark);
	color: var(--plush-white);
	display: grid;
	place-items: center;
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.8rem;
	font-weight: 900;
}

.plush-step img {
	width: 86px;
	height: 86px;
	object-fit: contain;
	align-self: end;
	margin-bottom: 0;
}

.plush-step h3 {
	margin: 1.15rem 0 0.75rem;
	color: var(--plush-green-dark);
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
	align-self: start;
}

.plush-step p {
	color: var(--plush-green-dark);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	align-self: start;
}

.plush-benefits {
	padding: clamp(3.4rem, 6vw, 5rem) 0;
	background: var(--plush-green-dark);
	color: var(--plush-white);
}

.plush-benefits h2 {
	color: var(--plush-white);
}

.plush-benefits h2 span,
.plush-benefits h2 strong {
	display: block;
	font-weight: 900;
}

.plush-benefits h2 strong {
	color: var(--plush-green-neon);
}

.plush-benefits-intro p {
	margin: 0.9rem 0 1.35rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.45;
}

.plush-benefit {
	min-height: 150px;
	padding: 3rem 1.6rem 1.6rem;
	border: 1px solid var(--plush-green-neon);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.05);
	position: relative;
}

.plush-benefits-grid {
	row-gap: 3rem;
}

.plush-benefit-dot {
	width: 52px;
	height: 52px;
	margin-bottom: 0;
	border-radius: 50%;
	background: var(--plush-green-neon);
	display: inline-block;
	position: absolute;
	top: -26px;
	left: 2rem;
	display: grid;
	place-items: center;
}

.plush-benefit-dot img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	display: block;
}

.plush-benefit h3 {
	margin-bottom: 0.55rem;
	color: var(--plush-green-neon);
	font-size: clamp(1.15rem, 1.5vw, 1.5rem);
	font-weight: 800;
	line-height: 1;
}

.plush-benefit p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
}

.plush-gallery {
	padding: clamp(2.4rem, 5vw, 4rem) 0;
	background: var(--plush-white);
}

.plush-gallery-item {
	margin: 0;
	width: 100%;
	aspect-ratio: 533 / 554;
	overflow: hidden;
	background: #f4f4f4;
}

.plush-gallery-trigger {
	width: 100%;
	height: 100%;
	border: 0;
	background: transparent;
	display: block;
	padding: 0;
	cursor: pointer;
}

.plush-gallery-picture {
	width: 100%;
	height: 100%;
	display: block;
}

.plush-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.plush-gallery-trigger:hover img,
.plush-gallery-trigger:focus-visible img {
	transform: scale(1.04);
}

.plush-gallery-trigger:focus-visible {
	outline: 4px solid var(--plush-pink);
	outline-offset: 4px;
}

.plush-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.plush-gallery-lightbox.is-open {
	display: flex;
}

.plush-gallery-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 66, 38, 0.88);
}

.plush-gallery-lightbox-dialog {
	width: min(92vw, 980px);
	max-height: 88vh;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plush-gallery-lightbox-img {
	max-width: 100%;
	max-height: 88vh;
	border: 4px solid var(--plush-green-neon);
	border-radius: 12px;
	background: var(--plush-white);
	object-fit: contain;
	box-shadow: 0 9px 0 var(--plush-button-shadow);
}

.plush-gallery-close,
.plush-gallery-arrow {
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: var(--plush-green-neon);
	color: var(--plush-green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 2;
	box-shadow: 0 5px 0 var(--plush-button-shadow);
}

.plush-gallery-close {
	top: -24px;
	right: -24px;
	font-size: 1.35rem;
}

.plush-gallery-close .bta-icon {
	width: 1.45rem;
	height: 1.45rem;
}

.plush-gallery-arrow {
	top: 50%;
	transform: translateY(-50%);
	font-size: 3rem;
	font-weight: 900;
	line-height: 0;
	padding-bottom: 0.22rem;
}

.plush-gallery-prev {
	left: -24px;
}

.plush-gallery-next {
	right: -24px;
}

.plush-gallery-close:hover,
.plush-gallery-arrow:hover,
.plush-gallery-close:focus-visible,
.plush-gallery-arrow:focus-visible {
	background: var(--plush-button-pink);
	color: var(--plush-white);
}

body.plush-gallery-open {
	overflow: hidden;
}

.plush-final-cta {
	padding: clamp(3rem, 6vw, 4.8rem) 0 3rem;
	background: var(--plush-yellow);

	& #cta-title {
		strong {
			color: var(--plush-pink);
		}
	}
}

.plush-final-cta p {
	margin: 0.75rem auto 1.3rem;
	max-width: 520px;
	color: var(--plush-pink);
	font-size: 1.25rem;
	font-weight: 700;
}

.plush-footer-social {
	margin-top: 1.8rem;
	display: flex;
	justify-content: center;
}

.plush-footer-social .social a {
	color: var(--plush-pink-dark);
}

.plush-footer-social .social a:hover,
.plush-footer-social .social a:focus-visible {
	background: var(--plush-pink-dark);
	color: var(--plush-white);
}

.plush-footer-logo {
	width: 104px;
	margin: 2rem auto 0;
	display: block;
}

#wa_button {
	bottom: 0;
	right: -35px;
	position: fixed;
	z-index: 999;
}

.img-circle {
	background-color: #25d366;
	box-sizing: content-box;
	width: 72px;
	height: 72px;
	bottom: 14px;
	right: 49px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	opacity: 0.9;
}

.circle-fill {
	box-sizing: content-box;
	background-color: #25d366;
	width: 100px;
	height: 100px;
	bottom: 0;
	right: 35px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	animation: circle-fill-anim 2.3s infinite ease-in-out;
}

.img-circleblock {
	width: 72px;
	height: 72px;
	background-image: url("../assets/images/wp.png");
	background-position: center;
	background-repeat: no-repeat;
	animation: tossing 1.5s infinite;
}

@keyframes tossing {
	0% {
		transform: rotate(-8deg);
	}

	50% {
		transform: rotate(8deg);
	}

	100% {
		transform: rotate(-8deg);
	}
}

@keyframes circle-fill-anim {
	0% {
		transform: scale(0.7);
		opacity: 0.2;
	}

	50% {
		transform: scale(1);
		opacity: 0.2;
	}

	100% {
		transform: scale(0.7);
		opacity: 0.2;
	}
}

@keyframes plush-logo-wiggle {
	0%,
	88%,
	100% {
		transform: rotate(0deg) translateY(0);
	}

	90% {
		transform: rotate(-1.8deg) translateY(-1px);
	}

	92% {
		transform: rotate(1.8deg) translateY(1px);
	}

	94% {
		transform: rotate(-1.2deg) translateY(0);
	}

	96% {
		transform: rotate(0.9deg) translateY(1px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.plush-brand img,
	.plush-mobile-logo img {
		animation: none;
	}
}
