/*
    Theme Name: Fashion Atelier Premium
    Text Domain: fashion-atelier
    Version: 10.0 (Ultra Premium – SVG Stickers Edition)
    Author: bricioweb
    Author URI: https://bricioweb.com.br/
*/

/* ====================================================
   RESET & BASE
   ==================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
	background-color: #F5F3FF;
	overflow-x: hidden;
	color: #1A1A2E;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

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

ul,
ol {
	list-style: none;
}

p {
	font-size: 16px;
	line-height: 28px;
	color: #6B6B80;
	letter-spacing: 0.01em;
}

body,
h1,
h2,
h3,
h4,
label,
input,
button,
select,
textarea,
p,
ul,
ol {
	font-family: 'Poppins', Arial, sans-serif;
}

h1,
h2,
h3,
h4 {
	color: #1A1A2E;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

h1 b,
h2 b,
h3 b,
h4 b {
	background: linear-gradient(135deg, #00C853 0%, #7C4DFF 50%, #00C853 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

::selection {
	background: #7C4DFF;
	color: #FFFFFF;
}

/* ====================================================
   VARIÁVEIS
   ==================================================== */

:root {
	--color-dark: #1A1A2E;
	--color-accent: #7C4DFF;
	--color-accent-hover: #5600E8;
	--color-pink: #B388FF;
	--color-amber: #00C853;
	--color-bg: #F5F3FF;
	--color-bg-warm: #EDE7F6;
	--color-card: #FFFFFF;
	--color-border: rgba(124, 77, 255, 0.10);
	--color-text: #1A1A2E;
	--color-text-light: #6B6B80;
	--radius-card: 16px;
	--radius-btn: 100px;
	--shadow-soft: 0 4px 24px rgba(124, 77, 255, 0.08);
	--shadow-hover: 0 8px 32px rgba(124, 77, 255, 0.16), 0 20px 60px -12px rgba(0, 200, 83, 0.10);
	--transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	--max-width: 1100px;
}

/* ====================================================
   STICKER / FIGURINHA BASE
   ==================================================== */

.sticker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sticker svg {
	width: 100%;
	height: 100%;
}

.sticker-sm {
	width: 48px;
	height: 48px;
}

.sticker-md {
	width: 72px;
	height: 72px;
}

.sticker-lg {
	width: 96px;
	height: 96px;
}

.sticker-xl {
	width: 140px;
	height: 140px;
}

.sticker-hero {
	width: 280px;
	height: 280px;
}

@keyframes floatSoft {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-8px) rotate(2deg);
	}
}

@keyframes floatReverse {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-6px) rotate(-2deg);
	}
}

@keyframes sparkle {
	0%,
	100% {
		opacity: 0.4;
		transform: scale(0.8);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

.sticker-float {
	animation: floatSoft 4s ease-in-out infinite;
}

.sticker-float-reverse {
	animation: floatReverse 5s ease-in-out infinite;
}

.sticker-float-slow {
	animation: floatSoft 6s ease-in-out infinite;
}

/* ====================================================
   HEADER
   ==================================================== */

.header-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.header-logo a {
	display: block;
}

.header-logo img {
	width: 160px;
	transition: opacity 0.3s;
}

.header-logo img:hover {
	opacity: 0.7;
}

.header-logo {
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.header-menu ul.menu li a {
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 500;
	height: 42px;
	display: flex;
	color: #1A1A2E;
	align-items: center;
	border-radius: 10px;
	transition: var(--transition);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.header-menu ul.menu li a:hover {
	color: #7C4DFF;
	background: rgba(124, 77, 255, 0.06);
}

.header-menu ul.menu li a.button {
	padding: 10px 28px;
	font-size: 13px;
	font-weight: bold;
	height: 42px;
	margin-left: 12px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mb-20 {
	margin-bottom: 20px;
}

/* ====================================================
   BOTÕES
   ==================================================== */

.button {
	margin-bottom: 0;
	border-radius: var(--radius-btn);
	background: linear-gradient(135deg, #00C853 0%, #7C4DFF 100%);
	color: #ffffff !important;
	outline: none;
	font-size: 13px;
	padding: 16px 36px;
	font-weight: 700;
	border: none;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 4px 20px rgba(124, 77, 255, 0.25), 0 2px 8px rgba(0, 200, 83, 0.15);
	transition: var(--transition);
	transform: translateZ(0);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
	transition: all 0.6s ease;
}

.button:hover::after {
	left: 100%;
}

.button:hover {
	background: linear-gradient(135deg, #009624 0%, #5600E8 100%);
	color: #ffffff !important;
	box-shadow: 0 8px 30px rgba(124, 77, 255, 0.35), 0 4px 12px rgba(0, 200, 83, 0.20);
	transform: translateY(-2px);
}

.button:active {
	transform: translateY(0);
}

.button-light-first {
	background: #ffffff !important;
	color: #7C4DFF !important;
	box-shadow: 0 4px 20px rgba(124, 77, 255, 0.08), inset 0 0 0 1.5px rgba(124, 77, 255, 0.18) !important;
}

.button-light-first:hover {
	background: #ffffff !important;
	color: #5600E8 !important;
	box-shadow: 0 8px 30px rgba(124, 77, 255, 0.14), inset 0 0 0 1.5px rgba(124, 77, 255, 0.30) !important;
	transform: translateY(-2px);
}

.button-light:active,
.button-light:focus,
.button-light:hover {
	color: #7C4DFF;
	background-color: #ffffff;
}

.button-clear {
	padding-top: 0;
	padding-bottom: 0;
	font-size: 14px;
	box-shadow: none !important;
	background: transparent !important;
	color: #7C4DFF !important;
	transform: none !important;
	text-transform: none;
	letter-spacing: 0;
	font-weight: bold;
}

.button-clear:hover {
	box-shadow: none !important;
	color: #5600E8 !important;
	transform: translateX(4px) !important;
}

.button-clear::after {
	display: none;
}

.button-icon {
	display: flex;
	align-items: center;
	grid-gap: 8px;
	justify-content: center;
}

.button-icon i {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.button-icon:hover i {
	transform: translateX(3px);
}

/* ====================================================
   HERO
   ==================================================== */

.hero-fashion {
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 40%, #0D3B2E 100%);
	padding: 0;
	text-align: center;
}

.hero-fashion::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1;
}

.hero-fashion .grid-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-fashion-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 100px 20px 80px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}

.hero-stickers {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-stickers .sticker {
	position: absolute;
	opacity: 0.10;
	filter: blur(0.5px);
}

.hero-stickers .sticker:nth-child(1) {
	top: 8%;
	left: 5%;
	width: 80px;
	height: 80px;
	animation: floatSoft 5s ease-in-out infinite;
}

.hero-stickers .sticker:nth-child(2) {
	top: 15%;
	right: 8%;
	width: 100px;
	height: 100px;
	animation: floatReverse 6s ease-in-out infinite;
	animation-delay: 1s;
}

.hero-stickers .sticker:nth-child(3) {
	bottom: 20%;
	left: 8%;
	width: 70px;
	height: 70px;
	animation: floatSoft 7s ease-in-out infinite;
	animation-delay: 2s;
}

.hero-stickers .sticker:nth-child(4) {
	bottom: 15%;
	right: 5%;
	width: 90px;
	height: 90px;
	animation: floatReverse 5.5s ease-in-out infinite;
	animation-delay: 0.5s;
}

.hero-stickers .sticker:nth-child(5) {
	top: 50%;
	left: 2%;
	width: 60px;
	height: 60px;
	animation: floatSoft 8s ease-in-out infinite;
	animation-delay: 3s;
}

.hero-stickers .sticker:nth-child(6) {
	top: 40%;
	right: 3%;
	width: 65px;
	height: 65px;
	animation: floatReverse 7s ease-in-out infinite;
	animation-delay: 1.5s;
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.hero-orb-1 {
	width: 400px;
	height: 400px;
	background: rgba(124, 77, 255, 0.12);
	top: -100px;
	right: -100px;
}

.hero-orb-2 {
	width: 350px;
	height: 350px;
	background: rgba(0, 200, 83, 0.10);
	bottom: -80px;
	left: -80px;
}

.hero-orb-3 {
	width: 250px;
	height: 250px;
	background: rgba(179, 136, 255, 0.08);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-fashion-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 24px;
	border: 1px solid rgba(124, 77, 255, 0.25);
	border-radius: 100px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(105, 240, 174, 0.8);
	margin-bottom: 40px;
	backdrop-filter: blur(10px);
	background: rgba(124, 77, 255, 0.08);
	position: relative;
	z-index: 2;
}

.hero-fashion-badge .badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #69F0AE;
	animation: sparkle 2s ease-in-out infinite;
}

.hero-fashion h1 {
	font-size: 58px;
	line-height: 1.06;
	color: #FFFFFF;
	font-weight: 700;
	letter-spacing: -0.04em;
	margin-bottom: 28px;
	max-width: 780px;
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

.hero-fashion h1 b {
	background: linear-gradient(135deg, #00C853 0%, #B388FF 50%, #00C853 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-fashion-desc {
	font-size: 17px;
	line-height: 29px;
	color: rgba(255, 255, 255, 0.40);
	max-width: 480px;
	margin: 0 auto 44px;
	font-weight: 400;
	text-align: center;
	position: relative;
	z-index: 2;
}

.hero-fashion-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.hero-fashion-buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 18px 44px;
	border-radius: 100px;
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 4px 30px rgba(124, 77, 255, 0.25), 0 2px 12px rgba(0, 200, 83, 0.15);
}

.hero-fashion-buttons .btn-primary:hover {
	background: linear-gradient(135deg, #009624, #5600E8);
	color: #FFFFFF;
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.35), 0 4px 16px rgba(0, 200, 83, 0.20);
	transform: translateY(-3px);
}

.hero-fashion-buttons .btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 36px;
	border-radius: 100px;
	background: transparent;
	color: rgba(255, 255, 255, 0.45);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border: 1px solid rgba(124, 77, 255, 0.20);
	transition: var(--transition);
}

.hero-fashion-buttons .btn-ghost:hover {
	color: #69F0AE;
	border-color: rgba(0, 200, 83, 0.35);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 48px;
	margin-top: 60px;
	position: relative;
	z-index: 2;
}

.hero-stat {
	text-align: center;
}

.hero-stat-number {
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 4px;
}

.hero-stat-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.25);
}

.hero-stat-divider {
	width: 1px;
	height: 32px;
	background: rgba(124, 77, 255, 0.15);
}

/* ====================================================
   SEÇÕES GERAIS
   ==================================================== */

section {
	padding: 100px 24px;
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #7C4DFF;
	margin-bottom: 20px;
}

.section-label .label-line {
	width: 24px;
	height: 1.5px;
	background: linear-gradient(90deg, #7C4DFF, #00C853);
	border-radius: 2px;
}

/* ====================================================
   FILOSOFIA
   ==================================================== */

.section-philosophy {
	padding: 100px 0;
	background: #FFFFFF;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.section-deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.section-deco-1 {
	top: 40px;
	right: 40px;
	opacity: 0.04;
}

.section-deco-2 {
	bottom: 40px;
	left: 40px;
	opacity: 0.04;
}

.philosophy-header {
	text-align: center;
	margin-bottom: 64px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.philosophy-header h2 {
	font-size: 40px;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin: 0 auto 20px;
	color: #1A1A2E;
	text-align: center;
}

.philosophy-header p {
	font-size: 16px;
	line-height: 27px;
	color: #6B6B80;
	max-width: 460px;
	margin: 0 auto;
	text-align: center;
}

/* ====================================================
   BENTO GRID — QUADRADOS CENTRALIZADOS
   ==================================================== */

.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.bento-card {
	background: #FAFAFE;
	border: 1px solid rgba(124, 77, 255, 0.10);
	border-radius: var(--radius-card);
	padding: 32px 24px;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	text-align: center;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(124, 77, 255, 0.06), 0 4px 16px rgba(0, 200, 83, 0.04);
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00C853, #7C4DFF);
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 16px 16px 0 0;
}

.bento-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 32px rgba(124, 77, 255, 0.16), 0 16px 48px rgba(0, 200, 83, 0.08);
	border-color: rgba(124, 77, 255, 0.20);
}

.bento-card:hover::before {
	opacity: 1;
}

.bento-card-sticker {
	margin-bottom: 16px;
}

.bento-card-sticker .sticker {
	width: 56px;
	height: 56px;
	background: rgba(124, 77, 255, 0.06);
	border-radius: 16px;
	padding: 12px;
	transition: var(--transition);
}

.bento-card:hover .bento-card-sticker .sticker {
	transform: scale(1.1) rotate(4deg);
	background: rgba(124, 77, 255, 0.12);
}

.bento-card-number {
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.08), rgba(124, 77, 255, 0.08));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0;
	letter-spacing: -0.04em;
	position: absolute;
	top: 12px;
	right: 16px;
}

.bento-card h3 {
	font-size: 16px;
	color: #1A1A2E;
	margin-bottom: 8px;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-align: center;
}

.bento-card p {
	font-size: 13px;
	line-height: 21px;
	color: #6B6B80;
	margin-bottom: 0;
	text-align: center;
}

.bento-card.bento-wide {
	grid-column: span 1;
	aspect-ratio: 1 / 1;
}

.bento-grid .bento-card:nth-child(4) {
	grid-column: auto;
}

.bento-grid .bento-card:nth-child(5) {
	grid-column: auto;
}

.bento-grid {
	justify-items: center;
}

.bento-grid .bento-card:nth-child(4) {
	grid-column: 1 / 2;
	justify-self: end;
	margin-right: calc(50% - 50% - 10px);
}

.bento-grid .bento-card:nth-child(5) {
	grid-column: 2 / 4;
	justify-self: start;
	max-width: calc((1000px - 40px) / 3);
}

/* ====================================================
   CTA DARK
   ==================================================== */

.section-cta-dark {
	background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 50%, #0D3B2E 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.section-cta-dark::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}

.cta-dark-inner {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 650px;
	margin: 0 auto;
}

.cta-dark-stickers {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
}

.cta-dark-stickers .sticker {
	width: 52px;
	height: 52px;
	background: rgba(124, 77, 255, 0.08);
	border-radius: 14px;
	padding: 10px;
	border: 1px solid rgba(124, 77, 255, 0.12);
}

.cta-dark-inner h2 {
	font-size: 42px;
	line-height: 1.1;
	color: #FFFFFF;
	letter-spacing: -0.03em;
	margin-bottom: 20px;
	text-align: center;
}

.cta-dark-inner h2 b {
	background: linear-gradient(135deg, #00C853 0%, #B388FF 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cta-dark-inner p {
	font-size: 16px;
	line-height: 27px;
	color: rgba(255, 255, 255, 0.35);
	max-width: 420px;
	margin: 0 auto 40px;
	text-align: center;
}

.cta-dark-inner .btn-primary,
.section-cta-dark .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 48px;
	border-radius: 100px;
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 4px 24px rgba(124, 77, 255, 0.25), 0 2px 10px rgba(0, 200, 83, 0.15);
}

.cta-dark-inner .btn-primary:hover,
.section-cta-dark .btn-primary:hover {
	background: linear-gradient(135deg, #009624, #5600E8);
	color: #FFFFFF;
	box-shadow: 0 8px 40px rgba(124, 77, 255, 0.35), 0 4px 16px rgba(0, 200, 83, 0.20);
	transform: translateY(-3px);
}

/* ====================================================
   TRUST
   ==================================================== */

.section-trust {
	padding: 80px 0;
	background: #FFFFFF;
	border-bottom: 1px solid rgba(124, 77, 255, 0.06);
	text-align: center;
}

.trust-inner {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
}

.trust-inner h3 {
	font-size: 32px;
	line-height: 1.2;
	color: #1A1A2E;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	text-align: center;
}

.trust-inner>p {
	font-size: 15px;
	line-height: 26px;
	color: #6B6B80;
	text-align: center;
}

.trust-badges {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
	margin-top: 48px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	max-width: 120px;
}

.trust-badge-icon {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	background: rgba(124, 77, 255, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	transition: var(--transition);
	border: 1px solid rgba(124, 77, 255, 0.08);
}

.trust-badge:hover .trust-badge-icon {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 24px rgba(124, 77, 255, 0.12);
}

.trust-badge span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6B6B80;
	line-height: 1.3;
}

/* ====================================================
   BLOG / EDITORIAL
   ==================================================== */

.section-editorial {
	padding: 80px 0;
	background: #F5F3FF;
}

.editorial-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
	text-align: left;
}

.editorial-header-left h2 {
	font-size: 30px;
	letter-spacing: -0.02em;
	color: #1A1A2E;
	margin-bottom: 0;
}

.editorial-header-left p {
	font-size: 15px;
	color: #6B6B80;
	margin-top: 6px;
	margin-bottom: 0;
}

/* ====================================================
   FAQ
   ==================================================== */

.section-faq-premium {
	padding: 80px 0;
	background: #FFFFFF;
	text-align: center;
}

.faq-premium-grid {
	display: block;
	max-width: 700px;
	margin: 0 auto;
}

.faq-premium-left {
	text-align: center;
	margin-bottom: 48px;
}

.faq-premium-left h2 {
	font-size: 36px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #1A1A2E;
	margin-bottom: 12px;
	text-align: center;
}

.faq-premium-left p {
	font-size: 15px;
	line-height: 26px;
	color: #6B6B80;
	text-align: center;
	max-width: 440px;
	margin: 0 auto;
}

.faq-premium-right {
	text-align: left;
}

/* ====================================================
   CTA FINAL
   ==================================================== */

.section-cta-final {
	padding: 100px 0;
	background: linear-gradient(145deg, rgba(124, 77, 255, 0.06) 0%, rgba(0, 200, 83, 0.06) 100%);
	border-top: 1px solid rgba(124, 77, 255, 0.08);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-final-stickers {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cta-final-stickers .sticker {
	position: absolute;
	opacity: 0.05;
}

.cta-final-stickers .sticker:nth-child(1) {
	top: 20%;
	left: 5%;
	width: 100px;
	height: 100px;
	animation: floatSoft 6s ease-in-out infinite;
}

.cta-final-stickers .sticker:nth-child(2) {
	bottom: 20%;
	right: 5%;
	width: 80px;
	height: 80px;
	animation: floatReverse 5s ease-in-out infinite;
}

.cta-final-inner {
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-final-inner h2 {
	font-size: 38px;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: #1A1A2E;
	margin-bottom: 16px;
	text-align: center;
}

.cta-final-inner p {
	font-size: 16px;
	line-height: 27px;
	color: #6B6B80;
	max-width: 420px;
	margin: 0 auto 40px;
	text-align: center;
}

/* ====================================================
   OVERRIDES
   ==================================================== */

.article-category,
.article-meta {
	display: none !important;
}

.hero-content,
.hero-info,
.hero-info h1,
.single-article-title h1,
.main-headline h1 {
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.section-blog .article-title h3 {
	text-align: center !important;
	width: 100% !important;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.section-blog .article-title h3 a {
	display: block !important;
	text-align: center !important;
	width: 100% !important;
	margin: 0 auto !important;
	float: none !important;
	-webkit-line-clamp: unset !important;
	-webkit-box-orient: unset !important;
	white-space: normal !important;
}

.section-blog .article-title p,
.section-blog .article-more {
	text-align: center !important;
}

.fix-center {
	text-align: center;
	margin: 0 auto;
	float: none !important;
}

/* ====================================================
   CARDS GENÉRICOS
   ==================================================== */

.benefits-item,
.blog-callout,
.article,
.review-item {
	background: #FFFFFF;
	border: 1px solid rgba(124, 77, 255, 0.08);
	border-radius: var(--radius-card);
	padding: 36px 30px;
	box-shadow: 0 1px 3px rgba(124, 77, 255, 0.04);
	transition: var(--transition);
	transform: translateZ(0);
	position: relative;
	overflow: hidden;
}

.benefits-item::before,
.article::before,
.blog-callout::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00C853, #7C4DFF);
	opacity: 0;
	transition: opacity 0.5s ease;
	border-radius: 16px 16px 0 0;
	pointer-events: none;
}

.benefits-item:hover,
.blog-callout:hover,
.article:hover,
.review-item:hover {
	box-shadow: 0 8px 32px rgba(124, 77, 255, 0.12), 0 20px 60px -15px rgba(0, 200, 83, 0.06);
	transform: translateY(-6px);
	border-color: rgba(124, 77, 255, 0.16);
}

.benefits-item:hover::before,
.article:hover::before,
.blog-callout:hover::before {
	opacity: 1;
}

.article {
	padding: 0;
}

.article::before {
	z-index: 5;
}

.benefits-item h3 {
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 1.3;
	color: #1A1A2E;
}

.benefits-item p {
	font-size: 14px;
	line-height: 22px;
	color: #6B6B80;
}

.benefits-item img {
	height: 50px;
	width: auto;
	margin-bottom: 24px;
}

/* ====================================================
   BLOG GENÉRICO
   ==================================================== */

.section-blog {
	position: relative;
}

.section-blog img {
	width: 100%;
	position: relative;
}

.section-subtitle {
	font-size: 26px;
	line-height: 35px;
	margin-bottom: 10px;
}

.blog-callout {
	margin-top: -50px;
	position: relative;
}

.blog-callout h3 {
	margin-bottom: 0;
}

.section {
	padding: 80px 0;
}

.section p:last-child {
	margin-bottom: 0;
}

.section-title {
	font-size: 38px;
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-align: center;
}

.benefits {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 24px;
	margin-top: 64px;
}

/* ====================================================
   DOWNLOAD / CTA
   ==================================================== */

.download {
	position: relative;
	margin-top: 50px;
}

.section-blue {
	background: #EDE7F6;
	border-top: 1px solid rgba(124, 77, 255, 0.08);
	border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.download .mockup {
	position: absolute;
	right: 250px;
	bottom: 0;
	width: 510px;
}

.download-wrap {
	position: relative;
	z-index: 10;
}

.section-button {
	margin-top: 32px;
	text-align: center;
}

.section-button-download {
	display: flex;
	align-items: center;
	grid-gap: 10px;
	height: auto;
	justify-content: center;
}

.section-button-download a:hover {
	opacity: 0.9;
}

/* ====================================================
   REVIEWS
   ==================================================== */

.reviews {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 24px;
}

.review-item p {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 0;
	color: #6B6B80;
}

.review-head {
	display: flex;
	grid-gap: 14px;
	align-items: center;
	margin-bottom: 16px;
}

.review-name {
	flex: 1;
}

.review-name b {
	display: block;
	font-size: 15px;
	margin-bottom: 2px;
	color: #1A1A2E;
}

.review-star {
	display: flex;
	grid-gap: 2px;
}

.review-star i {
	color: #7C4DFF;
	font-size: 13px;
}

.review-thumb {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(124, 77, 255, 0.12);
}

.review-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ====================================================
   FOOTER
   ==================================================== */

footer {
	background-color: #1A1A2E;
	padding: 40px 0;
}

footer,
footer p {
	color: #6B6B80;
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-right {
	display: flex;
}

.footer-right a {
	color: #6B6B80;
	font-size: 20px;
	padding: 0 10px;
	transition: all 0.3s ease;
}

.footer-right a:hover {
	color: #69F0AE;
	transform: translateY(-2px);
}

.footer-right a:last-child {
	padding-right: 0;
}

.footer-info p {
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 30px;
}

.footer-nav .menu {
	justify-content: center;
	margin: 20px 0 30px;
	border-bottom: 1px solid rgba(124, 77, 255, 0.08);
	padding-bottom: 10px;
}

.footer-nav .menu li a {
	color: #9E9EB0;
	font-size: 13px;
	transition: color 0.3s;
}

.footer-nav .menu li a:hover {
	color: #69F0AE;
}

.footer-job {
	display: flex;
	align-items: center;
	grid-gap: 40px;
	justify-content: center;
	font-size: 12px;
}

.footer-job a {
	color: #9E9EB0;
	font-size: 20px;
	line-height: 10px;
	transition: color 0.3s;
}

.footer-job a:hover {
	color: #69F0AE;
}

.footer-social {
	display: flex;
	align-items: center;
	grid-gap: 15px;
}

/* ====================================================
   FAQ GENÉRICO (Foundation Accordion)
   ==================================================== */

.faq {
	background-color: transparent;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 12px;
	margin-bottom: 0;
}

.faq .accordion-title {
	border: 1px solid rgba(124, 77, 255, 0.10);
	background: #FFFFFF;
	font-size: 15px;
	font-weight: bold;
	border-radius: 16px;
	color: #1A1A2E;
	outline: none;
	padding: 22px 24px;
	transition: var(--transition);
}

.faq .accordion-title:hover {
	border-color: rgba(124, 77, 255, 0.22);
	color: #7C4DFF;
	box-shadow: 0 4px 16px rgba(124, 77, 255, 0.08);
	transform: translateY(-1px);
}

.accordion-title::before {
	font-weight: normal;
}

.faq :last-child>.accordion-content:last-child,
.faq :last-child:not(.is-active)>.accordion-title,
.faq .accordion-item:first-child>:first-child {
	border-radius: 16px;
}

.faq :last-child>.accordion-content:last-child,
.faq :last-child:not(.is-active)>.accordion-title {
	border-color: rgba(124, 77, 255, 0.10);
}

.faq .accordion-content {
	border: 1px solid rgba(124, 77, 255, 0.10);
	background: #F5F3FF;
	color: #6B6B80;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
	border-top: none;
	padding: 20px 24px;
	padding-top: 8px;
	line-height: 26px;
	font-size: 15px;
	text-align: left;
}

.faq :last-child>.accordion-content:last-child {
	border-radius: 0 !important;
	border-bottom-right-radius: 16px !important;
	border-bottom-left-radius: 16px !important;
}

.faq li.is-active .accordion-title {
	border-radius: 0 !important;
	border-top-left-radius: 16px !important;
	border-top-right-radius: 16px !important;
	border-bottom: none !important;
	border-color: rgba(124, 77, 255, 0.18);
	color: #7C4DFF;
	background: #EDE7F6;
}

/* ====================================================
   CATEGORY BAR
   ==================================================== */

.bar-category {
	display: flex;
	background-color: #1A1A2E;
	justify-content: center;
	grid-gap: 2px;
	padding: 4px 0;
}

.bar-category a {
	display: inline-block;
	padding: 8px 14px;
	color: #9E9EB0;
	font-size: 12px;
	border-radius: 10px;
	transition: all 0.3s ease;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 500;
}

.bar-category a:hover {
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	color: #FFFFFF;
}

/* ====================================================
   SEARCH
   ==================================================== */

.search-field {
	margin-bottom: 0;
	height: 42px;
	font-size: 14px;
	background-color: #EDE7F6;
	width: 260px;
	color: #1A1A2E;
	padding: 13px 16px;
	box-shadow: none;
	border-radius: 100px;
	border: 1px solid rgba(124, 77, 255, 0.10);
	transition: all 0.4s ease;
	padding-right: 42px;
}

.search-field:focus {
	box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.10);
	border-color: rgba(124, 77, 255, 0.25);
	background: #FFFFFF;
}

.search-mobile {
	margin-bottom: 20px;
}

.search-mobile input {
	width: 100% !important;
}

.header-search {
	position: relative;
}

.header-search i {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	color: #9E9EB0;
	height: 42px;
	padding: 8px 14px;
	transition: color 0.3s;
}

.header-search i:hover {
	color: #7C4DFF;
}

/* ====================================================
   ARTICLES
   ==================================================== */

.main {
	padding: 40px 0;
}

.wp-block-image {
	margin: 40px 0;
}

.articles {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 24px;
}

.single .articles {
	grid-template-columns: 1fr 1fr 1fr;
}

.article-title {
	padding: 24px;
	text-align: center;
}

.article-title h3 {
	margin-bottom: 10px;
	margin-top: 10px;
}

.article-title h3 a {
	display: block;
	color: #1A1A2E;
	font-size: 15px;
	line-height: 21px;
	text-overflow: ellipsis;
	overflow-wrap: break-word;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	transition: color 0.3s ease;
	font-weight: bold;
	letter-spacing: -0.01em;
}

.article-title h3 a:hover {
	color: #7C4DFF;
	text-decoration: none;
}

.article-meta {
	color: #9E9EB0;
	font-size: 11px;
	display: flex;
	align-items: center;
	grid-gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 500;
	justify-content: center;
}

.article-meta span {
	display: flex;
	align-items: center;
	grid-gap: 5px;
}

.article-meta span i {
	margin-top: 1px;
}

.article-more {
	margin-top: 18px;
	text-align: center;
}

.article-more a {
	display: inline-flex;
	align-items: center;
	grid-gap: 6px;
	font-size: 12px;
	font-weight: bold;
	color: #7C4DFF;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	transition: all 0.3s ease;
}

.article-more a:hover {
	grid-gap: 10px;
	color: #5600E8;
}

.article-more a i {
	margin-top: 1px;
	line-height: 10px;
}

.article .article-category {
	grid-gap: 5px;
	display: flex;
	justify-content: center;
}

.article .article-category .article-category-item {
	background: transparent;
	border: 1px solid rgba(124, 77, 255, 0.25);
	border-radius: 100px;
	color: #7C4DFF;
	display: none;
	font-size: 10px;
	font-weight: 600;
	line-height: 13px;
	padding: 4px 12px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.article .article-category .article-category-item:first-child {
	display: inline-block;
}

.article .article-category .article-category-item:hover {
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	border-color: transparent;
	color: #FFFFFF;
}

.article-thumb a {
	display: block;
}

.article-thumb figure:hover img {
	transform: scale(1.06);
}

.article-thumb figure {
	height: 200px;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 16px 16px 0 0;
}

.article-thumb figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.articles-related {
	border-top: 1px solid rgba(124, 77, 255, 0.08);
	margin-top: 40px;
	padding-top: 35px;
}

.headline {
	margin-bottom: 24px;
	text-align: center;
}

.headline h3,
.headline h2 {
	font-size: 25px;
	margin-bottom: 0;
	letter-spacing: -0.02em;
}

.main-sections {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 50px;
}

/* Featured */
.articles-featured .article {
	border: none;
	border-radius: var(--radius-card);
}

.articles-featured .article-title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

.articles-featured .article-title h3 {
	font-size: 18px;
	color: #ffffff;
	line-height: 22px;
}

.articles-featured .article-thumb figure {
	height: 370px;
	border-radius: var(--radius-card);
}

.articles-featured .article-meta {
	color: rgba(255, 255, 255, 0.6);
}

.articles-featured .article-category .article-category-item:hover,
.articles-featured .article-category .article-category-item {
	color: #ffffff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.4);
}

.articles-featured .article-thumb figure:hover img {
	opacity: 1;
}

.articles-featured .article:hover figure img {
	transform: scale(1.06);
}

.articles-featured .article-thumb figure:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: linear-gradient(transparent 0%, rgba(26, 26, 46, 0.85) 100%);
	z-index: 1;
	border-radius: var(--radius-card);
}

/* Main Headline */
.main-headline {
	padding: 30px 0 34px;
	background-color: #FFFFFF;
	border-bottom: 1px solid rgba(124, 77, 255, 0.06);
}

.main-headline p {
	margin-bottom: 0;
	font-size: 14px;
	margin-top: 10px;
	color: #6B6B80;
	text-align: center;
}

.main-headline h1 {
	font-size: 30px;
	margin-bottom: 0;
	line-height: 30px;
	text-align: center;
}

.fetch {
	margin-top: 30px;
}

.button.loading {
	opacity: 0.4 !important;
	cursor: not-allowed;
	background: linear-gradient(135deg, #00C853, #7C4DFF) !important;
}

/* ====================================================
   SINGLE ARTICLE
   ==================================================== */

.single-article-content p,
.single-article-content ul,
.single-article-content ol {
	font-size: 16px;
	color: #444444;
	line-height: 28px;
}

.single-article-content ul,
.single-article-content ol {
	margin: 30px 0;
	margin-left: 50px;
	display: grid;
	grid-auto-columns: 1fr;
	grid-gap: 15px;
}

.single-article-content ul br,
.single-article-content ol br {
	display: none;
}

.single-article-content p {
	margin-bottom: 22px;
}

.single-article-content p a,
.single-article-content ul a,
.single-article-content ol a {
	color: #7C4DFF;
	font-weight: bold;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(124, 77, 255, 0.30);
	transition: text-decoration-color 0.3s;
}

.single-article-content p a:hover,
.single-article-content ul a:hover,
.single-article-content ol a:hover {
	text-decoration-color: #7C4DFF;
}

.single-article-title h1 {
	font-size: 42px;
	line-height: 1.15;
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: -0.03em;
}

.single-article-title p {
	font-size: 18px;
	margin-bottom: 30px;
	color: #6B6B80;
	line-height: 30px;
}

.single-article-thumb figure {
	width: 100%;
	height: auto;
}

.single-article-thumb figure img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-card);
}

.single-article-thumb {
	margin-bottom: 30px;
}

.single-article-thumb figure figcaption {
	margin-top: 12px;
	font-style: italic;
	font-size: 13px;
	color: #9E9EB0;
}

.single-article-wrap-meta {
	font-size: 14px;
	display: flex;
	align-items: center;
	grid-gap: 3px;
	color: #6B6B80;
}

.single-article-wrap-meta span {
	display: flex;
	align-items: center;
	grid-gap: 5px;
}

.single-article-wrap-meta span svg {
	width: 20px;
	stroke: #6B6B80;
	stroke-width: 1.5;
	margin-top: -1px;
}

.single-article-meta {
	margin-bottom: 34px;
	border-bottom: 1px solid rgba(124, 77, 255, 0.08);
	padding-bottom: 35px;
}

.single-article-meta-item.user {
	margin-bottom: 10px;
	font-size: 18px;
}

.single-article-meta-item.user a {
	color: #1A1A2E;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s;
}

.single-article-meta-item.user a:hover {
	text-decoration: underline;
	color: #7C4DFF;
}

.single-article-content h2 {
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 30px;
	margin-top: 30px;
}

.single-article-content h3 {
	font-size: 25px;
	line-height: 1.3;
	margin-bottom: 30px;
	margin-top: 30px;
}

.single-article-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.single-article-tools svg {
	width: 24px;
	height: auto;
	margin-top: -1px;
}

.single-article-tools button {
	display: flex;
	align-items: center;
	grid-gap: 7px;
	cursor: pointer;
	font-size: 16px;
	color: #6B6B80;
	background: none;
	border: none;
	transition: color 0.3s;
}

.single-article-tools button:hover {
	color: #7C4DFF;
}

.single-article-category {
	display: flex;
	align-items: center;
	grid-gap: 7px;
	justify-content: center;
}

.single-article-category a {
	color: #FFFFFF;
	border: 1px solid transparent;
	background: linear-gradient(135deg, #00C853, #7C4DFF);
	border-radius: 100px;
	padding: 5px 16px;
	font-size: 13px;
	transition: all 0.3s;
	font-weight: 500;
}

.single-article-category a:hover {
	background: linear-gradient(135deg, #009624, #5600E8);
}

.main-blog {
	padding-top: 30px;
}

.hero-img-mb {
	display: none;
}

.busca-tipos {
	margin-top: 10px;
	display: flex;
	align-items: center;
	grid-gap: 18px;
}

.busca-tipos label {
	display: flex;
	align-items: center;
	grid-gap: 4px;
	cursor: pointer;
	color: #6B6B80;
	font-size: 14px;
}

.busca-tipos label input {
	margin: 0 !important;
	cursor: pointer;
	height: auto !important;
	vertical-align: -1px !important;
}

/* ====================================================
   MOBILE
   ==================================================== */

.bar-category-mobile {
	color: #ffffff;
	padding: 13px 10px;
	font-size: 14px;
	border-bottom: 1px solid rgba(124, 77, 255, 0.08);
	align-items: center;
	grid-gap: 7px;
}

.dropdown-pane {
	width: 100% !important;
	border: none;
	background-color: #1A1A2E;
	border-radius: 0;
}

.dropdown-pane a {
	display: block;
	text-align: center;
	color: #ffffff;
	font-size: 15px;
	padding: 8px;
	transition: color 0.3s;
}

.dropdown-pane a:hover {
	color: #69F0AE;
}

/* ====================================================
   AUTOCOMPLETE
   ==================================================== */

.autocomplete {
	margin-bottom: 50px;
}

.autocomplete ul {
	display: none !important;
	position: absolute;
	left: 0;
	top: 60px;
	width: 100%;
	margin: 0;
	list-style: none;
	max-height: 226px;
	overflow-y: scroll;
	box-sizing: border-box;
	padding: 0;
	z-index: 1;
	border-radius: 16px;
	background-color: #FFFFFF;
	border: 1px solid rgba(124, 77, 255, 0.10);
	box-shadow: 0px 12px 40px -5px rgba(124, 77, 255, 0.12);
	outline: 0;
	transition: opacity .15s ease-in-out;
}

.autocomplete input {
	height: 50px;
	border-radius: 16px;
	padding: 9px 18px 10px;
	padding-right: 55px;
	margin-top: 5px;
	font-size: 16px;
	background-color: #FFFFFF;
	color: #1A1A2E;
	border: 1px solid rgba(124, 77, 255, 0.10);
	box-shadow: none;
	margin-bottom: 0;
	transition: all 0.3s ease;
}

.busca-field {
	position: relative;
}

.busca-field img {
	position: absolute;
	right: 19px;
	top: 15px;
	width: 19px;
	opacity: 0.4;
}

.autocomplete input:focus {
	border-color: rgba(124, 77, 255, 0.25);
	box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.08);
}

.autocomplete mark {
	color: #7C4DFF;
	font-weight: bold;
	background-color: transparent;
}

.autocomplete p {
	margin-top: 0;
	border-bottom: 1px solid rgba(124, 77, 255, 0.06);
	padding: 15px 0;
	color: #9E9EB0;
	margin-bottom: 0;
	font-size: 15px;
	text-align: center;
	background: #F5F3FF;
}

.autocomplete p .not-found {
	padding: 10px 0;
}

.autocomplete ul li {
	cursor: pointer;
	color: #1A1A2E;
	padding: 10px 25px;
	font-size: 15px;
	border-bottom: 1px solid rgba(124, 77, 255, 0.04);
	transition: all 0.2s ease;
}

.autocomplete ul li:hover {
	background-color: #EDE7F6;
	color: #7C4DFF;
}

.autocomplete-p {
	margin-bottom: 25px;
}

.autoComplete_wrapper {
	position: relative;
}

.autoComplete_wrapper i {
	top: 9px;
	position: absolute;
	right: 16px;
	font-size: 20px;
	color: #9E9EB0;
}

.header-menu-mobile,
.header-search-mobile {
	display: none;
}

/* ====================================================
   ACCORDION DETAILS
   ==================================================== */

.accordion-details {
	margin: 0 !important;
	margin-top: 25px !important;
	grid-gap: 0 !important;
}

.accordion-details .accordion-title:active,
.accordion-details .accordion-title {
	text-decoration: none !important;
	font-size: 14px;
	border: 1px solid rgba(124, 77, 255, 0.10) !important;
	font-weight: normal;
	color: #1A1A2E;
	margin-bottom: -1px;
	padding: 18px;
	background-color: #FFFFFF !important;
	transition: all 0.3s ease;
}

.accordion-details .accordion-item.is-active .accordion-title,
.accordion-details .accordion-title:hover {
	background-color: #EDE7F6 !important;
}

.accordion-details .accordion-content {
	font-size: 15px;
	padding: 30px 35px;
	background-color: #FFFFFF;
	border: 1px solid rgba(124, 77, 255, 0.10);
}

.accordion-details .accordion-content ul {
	margin: 0;
	font-size: 15px;
	grid-gap: 7px;
	line-height: 22px;
	margin-left: 20px;
}

.program-details-table tr {
	display: none;
}

.program-details-table tr.active {
	display: table-row;
}

.accordion-details-program .accordion-content {
	padding: 0;
}

.accordion-details-program table {
	margin-bottom: 0;
}

.accordion-details-program table tbody {
	background-color: #FFFFFF;
	border: none;
}

.accordion-details-program table tbody tr {
	border: none;
}

.accordion-details-program table tbody tr td {
	padding: 15px;
	border: 1px solid rgba(124, 77, 255, 0.06);
	font-size: 13px;
	line-height: 16px;
	color: #555555;
}

.accordion-details-program table tfoot {
	background-color: #EDE7F6;
}

.accordion-details-program table tfoot .button {
	padding: 14px;
}

/* ====================================================
   MAIN PAGE
   ==================================================== */

.main-page {
	margin: 30px 0;
}

.main-page .wp-block-table {
	margin: 30px 0;
}

.main-page .wp-block-table td {
	padding: 20px;
}

.main-page h2 {
	font-size: 27px;
	display: block;
	margin: 30px 0 20px;
}

/* ====================================================
   MOBILE CANVAS
   ==================================================== */

.header-topbar-mobile {
	display: none;
}

.mob-download a {
	display: block;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #00C853, #7C4DFF) !important;
	color: #FFF !important;
	font-size: 14px;
}

.mob-download a:hover {
	background: linear-gradient(135deg, #009624, #5600E8) !important;
	color: #FFFFFF !important;
}

/* ====================================================
   RESPONSIVE — 1024px
   ==================================================== */

@media (max-width: 1024px) {
	.reviews {
		grid-template-columns: 1fr;
	}

	.benefits {
		grid-template-columns: 1fr 1fr;
	}

	.hero-fashion h1 {
		font-size: 44px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bento-card.bento-wide {
		grid-column: span 1;
	}

	.bento-grid .bento-card:nth-child(4),
	.bento-grid .bento-card:nth-child(5) {
		grid-column: auto;
		justify-self: center;
		margin-right: 0;
		max-width: none;
	}

	.editorial-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 20px;
	}

	.hero-stickers .sticker {
		opacity: 0.06;
	}

	.hero-stats {
		gap: 32px;
	}
}

@media (max-width: 1000px) {

	.header-menu-mobile,
	.header-search-mobile {
		display: block;
		color: #7C4DFF;
		font-size: 21px;
		cursor: pointer;
	}

	.header-search,
	.header-menu {
		display: none;
	}
}

/* ====================================================
   RESPONSIVE — 744px
   ==================================================== */

@media (max-width: 744px) {
	.busca-tipos label {
		font-size: 13px;
	}

	.busca-tipos {
		grid-gap: 15px;
	}

	.hero-img-mb {
		display: block;
	}

	.hero-img-dsk {
		display: none;
	}

	.hero-fashion {
		min-height: auto;
	}

	.hero-fashion-inner {
		padding: 80px 16px 60px;
	}

	.hero-fashion h1 {
		font-size: 32px;
	}

	.hero-fashion-desc {
		font-size: 15px;
		line-height: 25px;
	}

	.hero-fashion-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero-fashion-buttons .btn-primary,
	.hero-fashion-buttons .btn-ghost {
		width: 100%;
		justify-content: center;
	}

	.hero-stickers {
		display: none;
	}

	.hero-stats {
		gap: 24px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero-stat-number {
		font-size: 22px;
	}

	.section-philosophy {
		padding: 60px 0;
	}

	.philosophy-header {
		margin-bottom: 32px;
	}

	.philosophy-header h2 {
		font-size: 28px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
		max-width: 100%;
	}

	.bento-card {
		aspect-ratio: 1 / 1;
	}

	.bento-grid .bento-card:nth-child(4),
	.bento-grid .bento-card:nth-child(5) {
		grid-column: auto;
		justify-self: center;
		margin-right: 0;
		max-width: none;
	}

	.bento-grid .bento-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 10px);
		justify-self: center;
	}

	.bento-card {
		padding: 24px 20px;
	}

	.bento-card-number {
		font-size: 36px;
		margin-bottom: 12px;
	}

	.section-cta-dark {
		padding: 60px 0;
	}

	.cta-dark-inner h2 {
		font-size: 28px;
	}

	.cta-dark-stickers {
		gap: 10px;
	}

	.cta-dark-stickers .sticker {
		width: 44px;
		height: 44px;
	}

	.section-trust {
		padding: 60px 0;
	}

	.trust-inner h3 {
		font-size: 26px;
	}

	.trust-badges {
		gap: 24px;
	}

	.section-editorial {
		padding: 60px 0;
	}

	.section-faq-premium {
		padding: 60px 0;
	}

	.faq-premium-left h2 {
		font-size: 28px;
	}

	.section-cta-final {
		padding: 60px 0;
	}

	.cta-final-inner h2 {
		font-size: 28px;
	}

	.cta-final-stickers {
		display: none;
	}

	p {
		font-size: 14px;
		line-height: 23px;
	}

	.section-button {
		margin-top: 24px;
	}

	.section-button .button {
		display: block;
		font-size: 13px;
		width: 100%;
	}

	.header-menu ul.menu li a.button {
		padding: 13px 18px;
	}

	.section {
		padding: 48px 0;
	}

	section {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.section-blog {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.benefits {
		grid-template-columns: 1fr;
		margin-top: 40px;
		grid-gap: 14px;
	}

	.benefits-item {
		display: flex;
		grid-gap: 16px;
		padding: 24px;
	}

	.benefits-item h3 {
		font-size: 17px;
		margin-bottom: 6px;
		line-height: 1.3;
	}

	.benefits-item p {
		font-size: 13px;
		line-height: 20px;
	}

	.benefits-item img {
		height: 42px;
		margin-bottom: 0;
	}

	.benefits-content {
		flex: 1;
	}

	.section-title {
		font-size: 26px;
		margin-bottom: 14px;
		line-height: 1.2;
	}

	.img-fix-mb {
		max-width: 80%;
		margin-bottom: 20px;
	}

	.fix-center {
		text-align: center;
	}

	.blog-callout {
		padding: 24px;
	}

	.blog-callout .section-subtitle {
		font-size: 18px;
		line-height: 1.3;
		margin-bottom: 0;
	}

	.section-safe img {
		width: 100px;
	}

	.reviews {
		margin-top: 35px;
		grid-gap: 14px;
	}

	.review-item {
		padding: 24px;
	}

	.review-item p {
		font-size: 13px;
	}

	section.download {
		margin-top: 0;
		padding-bottom: 0;
	}

	.download .mockup {
		position: relative;
		right: 70px;
		width: 120%;
		height: auto;
		max-width: inherit;
		margin-top: 30px;
	}

	.section-button-download {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 15px;
	}

	.section-button-download img {
		width: 190px;
	}

	.section-faq {
		padding-top: 0;
	}

	.faq {
		margin-top: 30px;
	}

	.faq .accordion-title {
		font-size: 14px;
		padding-right: 40px;
		line-height: 21px;
	}

	header,
	footer {
		padding-left: 10px;
		padding-right: 10px;
	}

	.footer-right a {
		padding: 0 8px;
	}

	.articles {
		grid-template-columns: 1fr 1fr;
	}

	.single .articles {
		grid-template-columns: 1fr 1fr;
	}

	.single .articles .article:last-child {
		display: none;
	}

	.articles-featured .article-thumb figure:after {
		background: linear-gradient(0deg, rgba(26, 26, 46, 1) 20%, rgba(26, 26, 46, 0) 100%);
	}

	.footer-nav .menu {
		display: grid;
		grid-template-columns: 1fr;
		text-align: center;
	}

	.wp-block-table {
		overflow-x: auto;
	}

	.section-deco {
		display: none;
	}
}

/* ====================================================
   RESPONSIVE — 639px
   ==================================================== */

@media (max-width: 639px) {
	.wp-block-table {
		overflow-x: auto;
	}

	.hero-fashion h1 {
		font-size: 26px;
	}

	.hero-fashion-badge {
		font-size: 10px;
		padding: 6px 18px;
		margin-bottom: 24px;
	}

	.hero-stats {
		gap: 16px;
	}

	.hero-stat-number {
		font-size: 20px;
	}

	.hero-stat-label {
		font-size: 9px;
	}

	.hero-stat-divider {
		height: 24px;
	}

	.bento-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bento-card {
		aspect-ratio: 1 / 1;
		padding: 20px 16px;
	}

	.bento-card h3 {
		font-size: 14px;
	}

	.bento-card p {
		font-size: 12px;
		line-height: 19px;
	}

	.bento-grid .bento-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 10px);
		justify-self: center;
	}

	.header-topbar-mobile {
		display: flex;
		align-items: center;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(24px) saturate(180%);
		-webkit-backdrop-filter: blur(24px) saturate(180%);
		height: 64px;
		border-bottom: 1px solid rgba(124, 77, 255, 0.08);
	}

	.header-topbar-mobile-logo {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-topbar-mobile-menu {
		color: #7C4DFF;
		padding: 10px 20px;
		font-size: 21px;
	}

	.header-search-mob,
	.header-menu-mob {
		display: block !important;
	}

	#canvasMobile .search-field {
		width: 100% !important;
	}

	.header-search-mob {
		margin-bottom: 20px;
	}

	.header-menu-mob {
		display: grid !important;
		grid-template-columns: 1fr;
	}

	.header-menu-mob ul {
		display: grid;
		grid-template-columns: 1fr;
	}

	#canvasMobile .header-menu ul.menu li a {
		margin: 3px 0 !important;
		outline: none !important;
		text-align: center !important;
		justify-content: center;
		color: #1A1A2E;
		border-radius: 12px;
	}

	.off-canvas {
		background-color: #FFFFFF;
		padding: 24px;
	}

	.js-off-canvas-overlay {
		background: rgba(26, 26, 46, 0.5);
		backdrop-filter: blur(4px);
	}

	.off-canvas.is-transition-overlap.is-open {
		box-shadow: none !important;
	}

	.single .articles {
		grid-template-columns: 1fr;
	}

	.single .articles .article:last-child {
		display: block;
	}

	.main-headline {
		padding: 14px 0;
	}

	.main {
		padding: 20px 0;
	}

	.main-headline h1,
	.headline h2,
	.headline h3 {
		font-size: 20px;
	}

	.articles {
		grid-template-columns: 1fr;
		grid-gap: 16px;
	}

	.articles-featured .article-thumb figure {
		height: 200px;
	}

	.article-title h3 a,
	.articles-featured .article-title h3 {
		font-size: 15px;
		line-height: 20px;
	}

	.article-thumb figure {
		height: 180px;
	}

	.single-article-title h1 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 15px;
		text-align: center;
	}

	.single-article-tools {
		margin-bottom: 15px;
	}

	.single-article-title p {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	.single-article-meta {
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.single-article-content h2 {
		font-size: 24px;
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.single-article-content h3 {
		font-size: 20px;
		margin-bottom: 20px;
		margin-top: 20px;
	}

	.single-article-category a {
		padding: 5px 12px;
		font-size: 12px;
	}

	.single-article-content ul,
	.single-article-content ol {
		margin-left: 30px;
	}

	.articles-related {
		margin-top: 30px;
		padding-top: 25px;
	}

	.single-article-wrap-meta .single-article-meta-item:nth-child(5),
	.single-article-wrap-meta .single-article-meta-item:nth-child(4) {
		display: none !important;
	}

	.single-article-meta-item.user {
		margin-bottom: 14px;
		font-size: 14px;
	}

	.accordion-details-program table tfoot .button {
		font-size: 14px;
	}

	.program-details-name {
		text-align: center;
	}

	.program-details-name img {
		width: 110px;
		margin-bottom: 10px;
	}

	.accordion-details-program table tbody tr td.program-details-name span {
		display: block;
	}

	.accordion-details-program table tbody tr td.program-details-ratio {
		font-size: 15px;
		line-height: 17px;
	}
}

/* ====================================================
   ACESSIBILIDADE
   ==================================================== */

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid #7C4DFF;
	outline-offset: 2px;
}

/* ====================================================
   SMOOTH ANIMATIONS
   ==================================================== */

@media (prefers-reduced-motion: no-preference) {

	.benefits-item,
	.article,
	.review-item,
	.blog-callout,
	.bento-card,
	.faq .accordion-title,
	.button,
	.trust-badge-icon {
		will-change: transform;
	}
}

/* ====================================================
   FIX: LOGO DO FOOTER CENTRALIZADO
   ==================================================== */

.footer-logo {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-logo a {
	display: inline-block;
	margin: 0 auto;
}

.footer-logo img {
	margin: 0 auto;
	display: block;
}