/* ==========================================================================
   Roytoy — Design System
   Todas as cores/tipografia sao variaveis CSS controladas pelo Customizer
   (Aparencia > Personalizar > Roytoy) e pelas Global Colors do Elementor.
   ========================================================================== */

:root {
	/* Cores da marca (sobrescritas pelo Customizer via inc/customizer.php) */
	--rt-red: #e30613;
	--rt-red-dark: #b30410;
	--rt-navy: #123a8c;
	--rt-yellow: #ffc400;

	/* Neutros */
	--rt-ink: #101114;
	--rt-dark: #121215;
	--rt-dark-soft: #1c1c20;
	--rt-body: #5c616b;
	--rt-muted: #8b909b;
	--rt-line: #e7e7ec;
	--rt-line-dark: rgba(255, 255, 255, .12);
	--rt-bg: #efeff2;
	--rt-surface: #ffffff;

	/* Tipografia */
	--rt-font-heading: "Outfit", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--rt-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--rt-fs-base: 16px;

	/* Layout */
	--rt-container: 1180px;
	--rt-gutter: 20px;
	--rt-radius: 18px;
	--rt-radius-lg: 24px;
	--rt-radius-sm: 10px;
	--rt-radius-pill: 999px;

	/* Sombras */
	--rt-shadow-sm: 0 1px 2px rgba(16, 17, 20, .06), 0 2px 8px rgba(16, 17, 20, .04);
	--rt-shadow: 0 6px 24px rgba(16, 17, 20, .08);
	--rt-shadow-lg: 0 18px 50px rgba(16, 17, 20, .14);

	--rt-transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- Reset -- */

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

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

body {
	margin: 0;
	background: var(--rt-bg);
	color: var(--rt-body);
	font-family: var(--rt-font-body);
	font-size: var(--rt-fs-base);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--rt-red);
	text-decoration: none;
	transition: color var(--rt-transition);
}

a:hover {
	color: var(--rt-red-dark);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

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

ul, ol { padding-left: 1.25em; }

blockquote {
	margin: 1.5em 0;
	padding: .2em 0 .2em 1.5em;
	border-left: 4px solid var(--rt-red);
	color: var(--rt-ink);
	font-size: 1.1rem;
	font-style: italic;
}

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .9em;
}

pre {
	overflow-x: auto;
	padding: 18px;
	border-radius: var(--rt-radius-sm);
	background: var(--rt-ink);
	color: #f4f4f6;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
}

th, td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--rt-line);
	text-align: left;
}

:focus-visible {
	outline: 3px solid var(--rt-red);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ----------------------------------------------------------- Utilidades -- */

.rt-container {
	width: 100%;
	max-width: var(--rt-container);
	margin: 0 auto;
	padding: 0 var(--rt-gutter);
}

.rt-container--wide { max-width: 1400px; }

.rt-section { padding: 72px 0; }

.rt-section--tight { padding: 46px 0; }

.rt-section--dark {
	background: var(--rt-dark);
	color: rgba(255, 255, 255, .72);
}

.rt-section--dark h1,
.rt-section--dark h2,
.rt-section--dark h3,
.rt-section--dark h4 { color: #fff; }

.rt-section--white { background: var(--rt-surface); }

.rt-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--rt-red);
	font-family: var(--rt-font-heading);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.rt-section-head {
	max-width: 620px;
	margin: 0 auto 40px;
	text-align: center;
}

.rt-section-head p {
	color: var(--rt-muted);
	font-size: 1rem;
}

.rt-text-muted { color: var(--rt-muted); }

/* ------------------------------------------------------------- Botoes --- */

.rt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: var(--rt-radius-pill);
	background: var(--rt-red);
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: .95rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: all var(--rt-transition);
}

.rt-btn:hover {
	background: var(--rt-red-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(227, 6, 19, .3);
}

.rt-btn svg { width: 15px; height: 15px; flex: none; }

.rt-btn--sm { padding: 10px 20px; font-size: .85rem; }

.rt-btn--lg { padding: 16px 34px; font-size: 1.05rem; }

.rt-btn--outline {
	background: transparent;
	border-color: var(--rt-red);
	color: var(--rt-red);
}

.rt-btn--outline:hover {
	background: var(--rt-red);
	color: #fff;
}

.rt-btn--dark {
	background: var(--rt-ink);
	color: #fff;
}

.rt-btn--dark:hover {
	background: #000;
	box-shadow: 0 10px 24px rgba(16, 17, 20, .3);
}

.rt-btn--ghost {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .3);
	color: #fff;
}

.rt-btn--ghost:hover {
	background: #fff;
	color: var(--rt-ink);
	box-shadow: none;
}

.rt-btn--block { width: 100%; }

.rt-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: inherit;
	font-family: var(--rt-font-heading);
	font-size: .9rem;
	font-weight: 600;
}

.rt-link-arrow svg {
	width: 14px;
	height: 14px;
	transition: transform var(--rt-transition);
}

.rt-link-arrow:hover { color: inherit; }

.rt-link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------- Header --- */

.rt-header {
	position: relative;
	z-index: 90;
	background: var(--rt-bg);
	padding: 14px 0;
}

.rt-header--sticky {
	position: sticky;
	top: 0;
	background: rgba(239, 239, 242, .88);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
}

.admin-bar .rt-header--sticky { top: 32px; }

.rt-header__inner {
	display: flex;
	align-items: center;
	gap: 22px;
}

.rt-header__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -.03em;
}

.rt-header__brand:hover { color: var(--rt-ink); }

.rt-header__brand img {
	width: auto;
	max-height: var(--rt-logo-height, 44px);
}

.rt-header__brand .rt-brand-text span:first-child { color: var(--rt-red); }

.rt-header__search { flex: none; width: min(240px, 26vw); }

.rt-header__nav { margin-left: auto; }

.rt-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
}

/* Menu principal */

.rt-menu {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-menu li { position: relative; }

.rt-menu > li > a {
	position: relative;
	display: block;
	padding: 6px 0;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: .92rem;
	font-weight: 500;
	white-space: nowrap;
}

.rt-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--rt-red);
	transform: scaleX(0);
	transition: transform var(--rt-transition);
}

.rt-menu > li:hover > a::after,
.rt-menu > li.current-menu-item > a::after,
.rt-menu > li.current_page_item > a::after,
.rt-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

.rt-menu > li.current-menu-item > a,
.rt-menu > li.current_page_item > a { color: var(--rt-red); }

/* Submenus */

.rt-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: -16px;
	min-width: 210px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border-radius: var(--rt-radius-sm);
	background: var(--rt-surface);
	box-shadow: var(--rt-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--rt-transition);
}

.rt-menu li:hover > .sub-menu,
.rt-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.rt-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 7px;
	color: var(--rt-ink);
	font-size: .9rem;
}

.rt-menu .sub-menu a:hover {
	background: var(--rt-bg);
	color: var(--rt-red);
}

.rt-menu .sub-menu .sub-menu { top: 0; left: 100%; }

/* Busca */

.rt-search {
	position: relative;
	display: flex;
	align-items: center;
}

.rt-search svg {
	position: absolute;
	left: 14px;
	width: 15px;
	height: 15px;
	color: var(--rt-muted);
	pointer-events: none;
}

.rt-search input[type="search"],
.rt-search input[type="text"] {
	width: 100%;
	padding: 10px 16px 10px 38px;
	border: 1px solid var(--rt-line);
	border-radius: var(--rt-radius-pill);
	background: var(--rt-surface);
	color: var(--rt-ink);
	font-family: var(--rt-font-body);
	font-size: .88rem;
	transition: border-color var(--rt-transition), box-shadow var(--rt-transition);
}

.rt-search input::placeholder { color: var(--rt-muted); }

.rt-search input:focus {
	outline: none;
	border-color: var(--rt-red);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

/* O submit fica invisivel: o proprio Enter envia a busca. */
.rt-search button[type="submit"] {
	position: absolute;
	right: 6px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
}

.rt-search button[type="submit"]:hover { background: transparent; }

/* Toggle mobile */

.rt-burger {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--rt-line);
	border-radius: 12px;
	background: var(--rt-surface);
	color: var(--rt-ink);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex: none;
}

.rt-burger span {
	position: relative;
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: all var(--rt-transition);
}

.rt-burger span::before,
.rt-burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: all var(--rt-transition);
}

.rt-burger span::before { top: -6px; }
.rt-burger span::after { top: 6px; }

.rt-burger[aria-expanded="true"] span { background: transparent; }
.rt-burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.rt-burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.rt-mobile-panel {
	display: none;
	padding: 18px var(--rt-gutter) 26px;
	border-top: 1px solid var(--rt-line);
	background: var(--rt-surface);
}

.rt-mobile-panel.is-open { display: block; }

.rt-mobile-panel .rt-menu {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.rt-mobile-panel .rt-menu li { border-bottom: 1px solid var(--rt-line); }

.rt-mobile-panel .rt-menu a {
	padding: 13px 0;
	font-size: 1rem;
}

.rt-mobile-panel .rt-menu .sub-menu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	padding: 0 0 6px 14px;
	background: none;
}

.rt-mobile-panel .rt-search { margin-bottom: 16px; }

.rt-mobile-panel .rt-btn { margin-top: 18px; width: 100%; }

/* --------------------------------------------------------------- Hero --- */

.rt-hero {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: var(--rt-hero-height, 420px);
	padding: 64px 0;
	border-radius: var(--rt-radius-lg);
	background: #d8d8dc center/cover no-repeat;
	isolation: isolate;
}

.rt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, .35) 62%, rgba(255, 255, 255, 0) 88%);
}

.rt-hero--dark { color: rgba(255, 255, 255, .85); }

.rt-hero--dark::before {
	background: linear-gradient(100deg, rgba(12, 12, 14, .94) 0%, rgba(12, 12, 14, .8) 40%, rgba(12, 12, 14, .1) 90%);
}

.rt-hero--dark .rt-hero__title { color: #fff; }

.rt-hero__inner { max-width: 560px; }

.rt-hero__title {
	margin-bottom: 18px;
	font-size: clamp(2.1rem, 1.2rem + 3.4vw, 3.3rem);
	font-weight: 800;
	line-height: 1.08;
}

.rt-hero__text {
	max-width: 440px;
	margin-bottom: 28px;
	font-size: 1rem;
	line-height: 1.7;
}

.rt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rt-hero-wrap { padding: 8px 0 0; }

/* ---------------------------------------------------- Barra de destaque -- */

.rt-strip {
	position: relative;
	background: var(--rt-dark);
	color: rgba(255, 255, 255, .68);
	padding: 40px 0;
}

.rt-strip::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--rt-red);
}

.rt-strip--full {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.rt-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.rt-strip__content { max-width: 620px; }

.rt-strip__title {
	margin-bottom: 10px;
	color: #fff;
	font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem);
}

.rt-strip__text {
	font-size: .95rem;
	line-height: 1.7;
	margin: 0;
}

.rt-strip__action { flex: none; }

/* --------------------------------------------------------- Bento grid --- */

.rt-bento {
	display: grid;
	grid-template-columns: 1.32fr 1fr;
	gap: 16px;
}

.rt-bento__big,
.rt-bento__col {
	display: grid;
	gap: 16px;
	grid-auto-rows: 1fr;
}

.rt-bento__big > .rt-card { height: 100%; }

.rt-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	padding: 24px;
	border-radius: var(--rt-radius);
	background: var(--rt-surface) center/cover no-repeat;
	color: #fff;
	box-shadow: var(--rt-shadow-sm);
	isolation: isolate;
	transition: transform var(--rt-transition), box-shadow var(--rt-transition);
}

.rt-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rt-shadow-lg);
}

.rt-card--tall { min-height: 500px; }

.rt-card__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.rt-card:hover .rt-card__media { transform: scale(1.05); }

.rt-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(8, 8, 10, .88) 0%, rgba(8, 8, 10, .45) 42%, rgba(8, 8, 10, 0) 78%);
}

.rt-card--plain::after { display: none; }

.rt-card__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 6px 13px;
	border-radius: var(--rt-radius-pill);
	background: var(--rt-red);
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .02em;
}

.rt-card__badge--inline {
	position: static;
	align-self: flex-start;
	margin-bottom: 12px;
}

.rt-card__title {
	margin-bottom: 6px;
	color: #fff;
	font-size: 1.4rem;
}

.rt-card__text {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, .78);
	font-size: .9rem;
}

.rt-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: .88rem;
	font-weight: 600;
}

.rt-card__link svg { width: 14px; height: 14px; transition: transform var(--rt-transition); }

.rt-card:hover .rt-card__link svg { transform: translateX(4px); }

.rt-card__overlay-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	text-indent: -9999px;
	overflow: hidden;
}

/* Card com caixa flutuante branca (estilo do print) */

.rt-card--float { justify-content: flex-end; }

.rt-card--float::after {
	background: linear-gradient(to top, rgba(8, 8, 10, .35) 0%, rgba(8, 8, 10, 0) 60%);
}

.rt-float-box {
	position: relative;
	z-index: 2;
	padding: 15px 18px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(8px);
	box-shadow: var(--rt-shadow);
}

.rt-float-box h3 {
	margin: 0 0 2px;
	color: var(--rt-ink);
	font-size: 1.02rem;
}

.rt-float-box .rt-card__link { color: var(--rt-red); font-size: .82rem; }

.rt-card__heart {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--rt-red);
	cursor: pointer;
	transition: all var(--rt-transition);
}

.rt-card__heart:hover { background: var(--rt-red); color: #fff; transform: scale(1.08); }

.rt-card__heart.is-active { background: var(--rt-red); color: #fff; }

.rt-card__heart svg { width: 16px; height: 16px; }

/* Card escuro solido */

.rt-card--dark {
	background: var(--rt-dark);
	border: 1px solid var(--rt-red);
	justify-content: space-between;
}

.rt-card--dark::after { display: none; }

.rt-card--dark .rt-card__title { margin-bottom: 4px; }

.rt-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.rt-card__icon svg { width: 20px; height: 20px; }

.rt-card__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
}

.rt-card__buy {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--rt-red);
	font-family: var(--rt-font-heading);
	font-size: .88rem;
	font-weight: 600;
}

.rt-card__buy svg { width: 15px; height: 15px; }

/* ------------------------------------------------------ Grade produtos -- */

.rt-grid {
	display: grid;
	grid-template-columns: repeat(var(--rt-cols, 4), minmax(0, 1fr));
	gap: 20px;
}

.rt-product {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--rt-line);
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	transition: transform var(--rt-transition), box-shadow var(--rt-transition), border-color var(--rt-transition);
}

.rt-product:hover {
	transform: translateY(-4px);
	border-color: transparent;
	box-shadow: var(--rt-shadow-lg);
}

.rt-product__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--rt-bg);
}

.rt-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.rt-product:hover .rt-product__media img { transform: scale(1.06); }

.rt-product__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 11px;
	border-radius: var(--rt-radius-pill);
	background: var(--rt-red);
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.rt-product__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px;
}

.rt-product__cat {
	margin-bottom: 5px;
	color: var(--rt-muted);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.rt-product__title {
	margin-bottom: 6px;
	font-size: 1.05rem;
}

.rt-product__title a { color: inherit; }

.rt-product__title a:hover { color: var(--rt-red); }

.rt-product__text {
	margin-bottom: 14px;
	font-size: .88rem;
	color: var(--rt-body);
}

.rt-product__foot {
	margin-top: auto;
	padding-top: 4px;
}

.rt-product.is-soldout .rt-product__media img { filter: grayscale(1); opacity: .68; }

.rt-product.is-soldout .rt-product__tag { background: var(--rt-muted); }

/* ---------------------------------------------------- Filtros de linha -- */

.rt-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.rt-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--rt-line);
	border-radius: var(--rt-radius-pill);
	background: var(--rt-surface);
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: .88rem;
	font-weight: 500;
	transition: all var(--rt-transition);
}

.rt-filter span {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: var(--rt-radius-pill);
	background: var(--rt-bg);
	color: var(--rt-muted);
	font-size: .72rem;
	font-weight: 600;
}

.rt-filter:hover {
	border-color: var(--rt-red);
	color: var(--rt-red);
}

.rt-filter.is-active {
	border-color: var(--rt-red);
	background: var(--rt-red);
	color: #fff;
}

.rt-filter.is-active span {
	background: rgba(255, 255, 255, .22);
	color: #fff;
}

/* ------------------------------------------------- Detalhe do produto -- */

.rt-product-detail {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 44px;
	align-items: start;
	padding: 32px;
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	box-shadow: var(--rt-shadow-sm);
}

.rt-product-detail__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--rt-radius);
	background: var(--rt-bg);
	aspect-ratio: 4 / 3;
}

.rt-product-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rt-product-detail__title {
	margin-bottom: 12px;
	font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
}

.rt-product-detail__short {
	margin-bottom: 22px;
	font-size: 1rem;
	line-height: 1.7;
}

.rt-product-detail__note {
	margin: -14px 0 26px;
	color: var(--rt-muted);
	font-size: .86rem;
}

.rt-product-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.rt-product-detail__meta {
	margin: 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--rt-line);
	list-style: none;
}

.rt-product-detail__meta li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: .9rem;
}

.rt-product-detail__meta li:last-child { margin-bottom: 0; }

.rt-product-detail__meta svg { color: var(--rt-red); flex: none; }

/* ------------------------------------------------------------ Features -- */

.rt-features {
	display: grid;
	grid-template-columns: repeat(var(--rt-cols, 4), minmax(0, 1fr));
	gap: 18px;
}

.rt-feature {
	padding: 26px 22px;
	border: 1px solid var(--rt-line);
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	transition: transform var(--rt-transition), box-shadow var(--rt-transition);
}

.rt-feature:hover { transform: translateY(-3px); box-shadow: var(--rt-shadow); }

.rt-feature__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 13px;
	background: rgba(227, 6, 19, .1);
	color: var(--rt-red);
	font-size: 20px;
}

.rt-feature__icon svg { width: 22px; height: 22px; }

.rt-feature h3 { margin-bottom: 6px; font-size: 1.05rem; }

.rt-feature p { font-size: .9rem; margin: 0; }

.rt-section--dark .rt-feature,
.rt-features--dark .rt-feature {
	background: var(--rt-dark-soft);
	border-color: var(--rt-line-dark);
}

.rt-section--dark .rt-feature h3,
.rt-features--dark .rt-feature h3 { color: #fff; }

.rt-section--dark .rt-feature p,
.rt-features--dark .rt-feature p { color: rgba(255, 255, 255, .66); }

.rt-section--dark .rt-feature__icon,
.rt-features--dark .rt-feature__icon {
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.rt-feature-align-center .rt-feature__icon { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------ Duas colunas ---- */

.rt-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 44px;
	align-items: center;
}

.rt-split--narrow { grid-template-columns: 1.1fr .9fr; }

.rt-split h2 { margin-bottom: 14px; }

.rt-media {
	overflow: hidden;
	border-radius: var(--rt-radius);
	box-shadow: var(--rt-shadow);
}

.rt-media img { width: 100%; height: 100%; object-fit: cover; }

.rt-list {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.rt-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 10px;
	font-size: .95rem;
}

.rt-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--rt-red);
}

/* Passo numerado */

.rt-step__num {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 13px;
	background: var(--rt-red);
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: 1.15rem;
	font-weight: 700;
}

/* Bloco de contato */

.rt-contact-value {
	display: block;
	margin-top: 4px;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: 1.02rem;
	font-weight: 600;
	word-break: break-word;
}

.rt-contact-value:hover { color: var(--rt-red); }

/* Grade de cards de categoria (usa .rt-card dentro de .rt-grid) */

.rt-grid > .rt-card { min-height: 280px; }

/* -------------------------------------------------------- Post / pagina -- */

.rt-page {
	padding: 48px 0 72px;
}

.rt-page__header {
	padding: 54px 0;
	background: var(--rt-surface);
	border-bottom: 1px solid var(--rt-line);
	text-align: center;
}

.rt-page__header .rt-container { max-width: 780px; }

.rt-breadcrumb {
	margin-bottom: 12px;
	color: var(--rt-muted);
	font-size: .82rem;
}

.rt-breadcrumb a { color: var(--rt-muted); }

.rt-breadcrumb a:hover { color: var(--rt-red); }

.rt-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 42px;
	align-items: start;
}

.rt-layout--full { grid-template-columns: minmax(0, 1fr); }

.rt-content {
	padding: 40px;
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	box-shadow: var(--rt-shadow-sm);
}

.rt-content > *:last-child { margin-bottom: 0; }

.rt-content img { border-radius: var(--rt-radius-sm); }

.rt-sidebar { position: sticky; top: 96px; }

.rt-widget {
	padding: 24px;
	margin-bottom: 20px;
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	box-shadow: var(--rt-shadow-sm);
}

.rt-widget:last-child { margin-bottom: 0; }

.rt-widget__title {
	margin-bottom: 14px;
	font-size: 1.02rem;
}

.rt-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-widget li + li {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--rt-line);
}

.rt-widget a { color: var(--rt-ink); font-size: .92rem; }

.rt-widget a:hover { color: var(--rt-red); }

.rt-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.rt-post {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--rt-radius);
	background: var(--rt-surface);
	box-shadow: var(--rt-shadow-sm);
	transition: transform var(--rt-transition), box-shadow var(--rt-transition);
}

.rt-post:hover { transform: translateY(-4px); box-shadow: var(--rt-shadow-lg); }

.rt-post__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--rt-bg); }

.rt-post__media img { width: 100%; height: 100%; object-fit: cover; }

.rt-post__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }

.rt-post__meta {
	margin-bottom: 8px;
	color: var(--rt-muted);
	font-size: .78rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.rt-post__title { font-size: 1.15rem; margin-bottom: 8px; }

.rt-post__title a { color: inherit; }

.rt-post__title a:hover { color: var(--rt-red); }

.rt-post__excerpt { font-size: .9rem; margin-bottom: 16px; }

.rt-post__more { margin-top: auto; }

/* Paginacao */

.rt-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 44px;
}

.rt-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--rt-line);
	border-radius: 12px;
	background: var(--rt-surface);
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-weight: 600;
	font-size: .9rem;
}

.rt-pagination .page-numbers:hover,
.rt-pagination .page-numbers.current {
	border-color: var(--rt-red);
	background: var(--rt-red);
	color: #fff;
}

/* Comentarios e formularios */

.rt-comments { margin-top: 40px; padding: 40px; border-radius: var(--rt-radius); background: var(--rt-surface); }

.comment-list { margin: 0 0 30px; padding: 0; list-style: none; }

.comment-list ul.children { list-style: none; padding-left: 26px; }

.comment-body {
	padding: 20px;
	margin-bottom: 16px;
	border-radius: var(--rt-radius-sm);
	background: var(--rt-bg);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--rt-line);
	border-radius: var(--rt-radius-sm);
	background: var(--rt-surface);
	color: var(--rt-ink);
	font-family: var(--rt-font-body);
	font-size: .95rem;
	transition: border-color var(--rt-transition), box-shadow var(--rt-transition);
}

textarea { min-height: 140px; resize: vertical; }

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--rt-red);
	box-shadow: 0 0 0 3px rgba(227, 6, 19, .12);
}

input[type="submit"],
button[type="submit"],
.wp-block-button__link {
	width: auto;
	padding: 13px 28px;
	border: 0;
	border-radius: var(--rt-radius-pill);
	background: var(--rt-red);
	color: #fff;
	font-family: var(--rt-font-heading);
	font-weight: 600;
	cursor: pointer;
	transition: all var(--rt-transition);
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover { background: var(--rt-red-dark); }

/* ------------------------------------------------------------- Footer --- */

.rt-footer {
	background: var(--rt-dark);
	color: rgba(255, 255, 255, .6);
	font-size: .88rem;
}

.rt-footer a { color: rgba(255, 255, 255, .6); }

.rt-footer a:hover { color: #fff; }

.rt-footer__widgets {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 40px;
	padding: 60px 0 44px;
}

.rt-footer__widgets:empty { display: none; padding: 0; }

.rt-footer .rt-widget {
	padding: 0;
	margin: 0;
	background: none;
	box-shadow: none;
}

.rt-footer .rt-widget__title {
	color: #fff;
	font-size: .95rem;
	letter-spacing: .01em;
}

.rt-footer .rt-widget li + li { border-color: var(--rt-line-dark); }

.rt-footer .rt-widget a { color: rgba(255, 255, 255, .6); font-size: .88rem; }

.rt-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: #fff;
	font-family: var(--rt-font-heading);
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -.02em;
}

.rt-footer__brand img { max-height: 46px; width: auto; }

.rt-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: 26px 0;
	border-top: 1px solid var(--rt-line-dark);
}

.rt-footer__bar p { margin: 0; }

.rt-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-footer__menu a { font-size: .85rem; }

.rt-footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-footer-list li + li { margin-top: 9px; }

.rt-footer-list a { font-size: .88rem; }

.rt-social { display: flex; gap: 10px; margin-top: 18px; }

.rt-social a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	transition: all var(--rt-transition);
}

.rt-social a:hover { background: var(--rt-red); transform: translateY(-2px); }

.rt-social svg { width: 17px; height: 17px; }

/* --------------------------------------------- Barra fixa de conversao -- */

/*
 * No mobile o CTA fica sempre a mao com rotulo explicito — converte mais que
 * uma bolha sem contexto. No desktop a bolha flutuante basta.
 */
.rt-stickybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 96;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid var(--rt-line);
	box-shadow: 0 -6px 24px rgba(16, 17, 20, .1);
}

.rt-stickybar__text {
	min-width: 0;
	line-height: 1.25;
}

.rt-stickybar__text strong {
	display: block;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: .92rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rt-stickybar__text span {
	color: var(--rt-muted);
	font-size: .76rem;
}

.rt-stickybar .rt-btn { flex: none; }

/* Botao WhatsApp do cabecalho */

.rt-header__whats {
	background: var(--rt-red);
	color: #fff;
	white-space: nowrap;
}

/* Microcopy sob os CTAs — reduz a incerteza de "o que acontece se eu clicar" */

.rt-cta-note {
	margin-top: 10px;
	color: var(--rt-muted);
	font-size: .82rem;
}

.rt-hero .rt-cta-note { margin-top: 14px; }

/* Faixa de confianca */

.rt-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 34px;
	padding: 18px 0;
}

.rt-trust__item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--rt-ink);
	font-family: var(--rt-font-heading);
	font-size: .88rem;
	font-weight: 500;
}

.rt-trust__item svg { color: var(--rt-red); flex: none; }

/* Botao voltar ao topo */

.rt-totop {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 95;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--rt-red);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	box-shadow: 0 8px 22px rgba(227, 6, 19, .35);
	transition: all var(--rt-transition);
}

.rt-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.rt-totop svg { width: 18px; height: 18px; }

/* WhatsApp flutuante */

.rt-whats {
	position: fixed;
	left: 22px;
	bottom: 22px;
	z-index: 95;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
	transition: transform var(--rt-transition);
}

.rt-whats:hover { transform: scale(1.08); color: #fff; }

.rt-whats svg { width: 27px; height: 27px; }

/* ------------------------------------------------------------- Erro 404 -- */

.rt-404 {
	padding: 100px 0;
	text-align: center;
}

.rt-404__code {
	font-family: var(--rt-font-heading);
	font-size: clamp(5rem, 3rem + 12vw, 10rem);
	font-weight: 800;
	line-height: 1;
	color: var(--rt-red);
	letter-spacing: -.05em;
}

/* ---------------------------------------------------------- Elementor --- */

/* Garante largura total dentro dos containers do Elementor */
.elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--rt-container); }

/*
 * Rede de seguranca: sem um kit global configurado, o Elementor pinta os
 * widgets nativos com a paleta padrao dele (primaria #6EC1E4). Aqui os
 * widgets de Titulo e Texto nascem na cor da marca. Qualquer cor definida
 * no proprio widget continua vencendo, por ter especificidade maior.
 */
.elementor-widget-heading .elementor-heading-title { color: var(--rt-ink); }

.elementor-widget-text-editor { color: var(--rt-body); }

.elementor-widget-text-editor a { color: var(--rt-red); }

.rt-elementor-canvas .rt-header,
.rt-elementor-canvas .rt-footer { display: none; }

/* Animacao de entrada */

.rt-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
}

.rt-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.rt-reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------- Responsivo ---- */

@media (max-width: 1100px) {
	.rt-header__search { display: none; }
	.rt-menu { gap: 18px; }
}

@media (max-width: 991px) {
	.rt-section { padding: 56px 0; }

	.rt-header__nav,
	.rt-header__actions .rt-btn { display: none; }

	.rt-burger { display: inline-grid; }

	/* CTA sempre visivel no mobile; a bolha sai para nao competir. */
	.rt-stickybar { display: flex; }

	.rt-whats { display: none; }

	.rt-totop { bottom: 84px; }

	body { padding-bottom: 68px; }

	.rt-header__inner { justify-content: space-between; }

	.rt-header__actions { margin-left: auto; }

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

	.rt-card--tall { min-height: 340px; }

	.rt-grid,
	.rt-features { --rt-cols: 2; }

	.rt-layout { grid-template-columns: minmax(0, 1fr); }

	.rt-split,
	.rt-split--narrow { grid-template-columns: 1fr; gap: 28px; }

	.rt-product-detail { grid-template-columns: 1fr; gap: 28px; padding: 22px; }

	.rt-sidebar { position: static; }

	.rt-footer__widgets { grid-template-columns: 1fr 1fr; gap: 32px; }

	.rt-strip__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
	:root { --rt-gutter: 16px; --rt-radius: 14px; --rt-radius-lg: 18px; }

	.rt-section { padding: 44px 0; }

	.rt-hero { min-height: 360px; padding: 44px 0; border-radius: var(--rt-radius); }

	.rt-hero::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .86) 62%, rgba(255, 255, 255, .55) 100%);
	}

	.rt-hero--dark::before {
		background: linear-gradient(180deg, rgba(12, 12, 14, .92) 0%, rgba(12, 12, 14, .78) 100%);
	}

	.rt-grid,
	.rt-features { --rt-cols: 1; }

	.rt-content { padding: 24px; }

	.rt-comments { padding: 24px; }

	.rt-footer__widgets { grid-template-columns: 1fr; padding: 44px 0 32px; }

	.rt-footer__bar { flex-direction: column; align-items: flex-start; gap: 14px; }

	.rt-footer__menu { gap: 16px; }

	.rt-hero__actions .rt-btn { width: 100%; }

	.rt-strip__action .rt-btn { width: 100%; }
}
