/* =========================================================
   Helô Flores — Tema custom
   Paleta: verde escuro, rose gold, creme, dourado claro, branco
   Tipografia: Playfair Display (títulos) + Manrope (texto)
   ========================================================= */

:root {
	--helo-white: #ffffff;
	--helo-cream: #faf8f4;
	--helo-gray-50: #faf8f4;
	--helo-gray-100: #eeecE8;
	--helo-gray-400: #9a958c;
	--helo-green: #1e3526;
	--helo-green-dark: #142419;
	--helo-green-pale: #eef2ec;
	--helo-rose-gold: #c98a8a;
	--helo-rose-gold-light: #e8c7cb;
	--helo-gold: #d4af37;
	--helo-beige: #f1e7da;
	--helo-red: #b23b3b;
	--helo-text: #2b2b28;
	--helo-radius: 10px;
	--helo-shadow: 0 10px 30px rgba(30, 53, 38, 0.08);
	--helo-max-width: 1200px;
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Manrope', 'Segoe UI', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--helo-text);
	background: var(--helo-white);
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--helo-green-dark);
	margin: 0 0 .5em;
}

.helo-container {
	max-width: var(--helo-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.helo-skip-link {
	position: absolute;
	left: -9999px;
}
.helo-skip-link:focus {
	left: 16px;
	top: 16px;
	background: var(--helo-white);
	padding: 8px 16px;
	z-index: 1000;
}

/* ---------- Botões ---------- */
.helo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 30px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .02em;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.helo-btn:hover {
	transform: translateY(-2px);
}
.helo-btn--primary {
	background: var(--helo-green);
	color: var(--helo-white);
	box-shadow: 0 10px 24px rgba(30, 53, 38, .3);
}
.helo-btn--primary:hover {
	background: var(--helo-green-dark);
	box-shadow: 0 14px 28px rgba(30, 53, 38, .38);
}
.helo-btn--outline {
	background: transparent;
	border-color: rgba(255,255,255,.7);
	color: var(--helo-white);
}
.helo-btn--outline:hover {
	background: var(--helo-white);
	border-color: var(--helo-white);
	color: var(--helo-green-dark);
}
.helo-btn--whatsapp {
	background: linear-gradient(135deg, #25d366, #1fb959);
	color: var(--helo-white);
	box-shadow: 0 6px 16px rgba(37, 211, 102, .28);
}
.helo-btn--whatsapp:hover {
	background: linear-gradient(135deg, #21bd5b, #1aa04f);
	box-shadow: 0 10px 22px rgba(37, 211, 102, .38);
}
.helo-icon-whatsapp {
	flex-shrink: 0;
}
.helo-btn--small {
	padding: 8px 16px;
	font-size: 13px;
}
.helo-btn--full {
	width: 100%;
}
.helo-btn--large {
	padding: 18px 36px;
	font-size: 17px;
	font-weight: 600;
}

/* Pulso sutil para chamar atenção nos CTAs de WhatsApp */
@keyframes helo-pulse {
	0% { box-shadow: 0 6px 16px rgba(37, 211, 102, .28), 0 0 0 0 rgba(37, 211, 102, .45); }
	70% { box-shadow: 0 6px 16px rgba(37, 211, 102, .28), 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 6px 16px rgba(37, 211, 102, .28), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.helo-btn--pulse {
	animation: helo-pulse 2.4s ease-out infinite;
}
.helo-btn--pulse:hover {
	animation: none;
}

/* ---------- Top bar ---------- */
.helo-top-bar {
	background: var(--helo-green-dark);
	color: var(--helo-beige);
	font-size: 12px;
}
.helo-top-bar__inner {
	display: flex;
	justify-content: space-between;
	padding: 6px 24px;
	flex-wrap: wrap;
	gap: 4px;
}

/* ---------- Header ---------- */
.helo-header {
	background: var(--helo-white);
	border-bottom: 1px solid var(--helo-gray-100);
	position: sticky;
	top: 0;
	z-index: 100;
}
.helo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 24px;
	gap: 24px;
}
.helo-logo-text {
	font-family: var(--font-heading);
	font-size: 24px;
	color: var(--helo-green-dark);
}
.helo-header__logo {
	flex-shrink: 0;
}
.helo-header__logo .custom-logo-link img,
.helo-header__logo img.custom-logo {
	max-height: 80px;
	width: auto;
	display: block;
}
.helo-footer .custom-logo-link img {
	max-height: 56px;
	width: auto;
}
.helo-header__nav {
	flex: 1;
}
.helo-menu {
	display: flex;
	gap: 36px;
	justify-content: center;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .02em;
}
.helo-header__actions .helo-btn--whatsapp {
	padding: 12px 22px;
	font-size: 15px;
}
.helo-menu a:hover {
	color: var(--helo-rose-gold);
}
.helo-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.helo-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.helo-menu-toggle span {
	width: 22px;
	height: 2px;
	background: var(--helo-green-dark);
}

/* ---------- Hero ---------- */
.helo-hero {
	position: relative;
	min-height: 88vh;
	background-image: var(--helo-hero-bg-desktop);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: var(--helo-white);
}
.helo-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,36,25,.4) 0%, rgba(20,36,25,.5) 100%);
}
.helo-hero__content {
	position: relative;
	z-index: 1;
	max-width: 680px;
	opacity: 0;
	transform: translateY(16px);
	animation: helo-fade-up .8s ease forwards .2s;
}
.helo-hero__title {
	font-family: var(--font-body);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 500;
	color: var(--helo-white);
	margin-bottom: 14px;
	line-height: 1.35;
}
.helo-hero__highlight {
	color: var(--helo-rose-gold-light);
}
.helo-hero__kicker {
	font-family: var(--font-heading);
	font-size: clamp(40px, 6vw, 68px);
	font-weight: 600;
	font-style: italic;
	letter-spacing: .01em;
	line-height: 1.1;
	color: var(--helo-gold);
	margin: 0 0 18px;
}
.helo-hero__subtitle {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 500;
	font-style: italic;
	color: var(--helo-rose-gold-light);
	margin-bottom: 12px;
}
.helo-hero__desc {
	font-size: 17px;
	color: var(--helo-beige);
	margin-bottom: 36px;
}
.helo-hero__actions {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.helo-hero__rule {
	display: block;
	width: 48px;
	height: 2px;
	background: var(--helo-gold);
	margin-bottom: 20px;
}
.helo-hero__leaf {
	position: absolute;
	right: 6%;
	bottom: 8%;
	width: 160px;
	height: 160px;
	color: rgba(255, 255, 255, .18);
	z-index: 1;
	pointer-events: none;
}
@media (max-width: 900px) {
	.helo-hero__leaf { display: none; }
}

/* ---------- Hero com imagem pronta (título/texto já desenhados na arte) ----------
   Mantém só o "kicker" (nome da marca) e os 2 botões reais por cima da imagem;
   esconde o título grande, o parágrafo e os selos pra não duplicar o que já
   está desenhado na própria foto. No celular a imagem não entra (ilegível
   recortada), então tudo volta a aparecer sobre um fundo verde sólido. */
.helo-hero--static {
	width: 100%;
	min-height: 0;
	aspect-ratio: var(--helo-hero-ratio, 16 / 9);
}
.helo-hero--static .helo-hero__hide-if-static {
	display: none;
}
@media (max-width: 900px) {
	/* No celular a foto continua aparecendo (não troca para outra cor);
	   só deixamos de forçar a proporção exata, pra não ficar altíssima
	   numa tela estreita — um pouco de recorte lateral é aceitável aqui. */
	.helo-hero--static {
		aspect-ratio: auto;
		min-height: 60vh;
	}
	/* Se uma imagem específica para celular foi enviada, usa ela (e a
	   proporção dela, sem recorte) em vez de recortar a de desktop. */
	.helo-hero--has-mobile-bg {
		background-image: var(--helo-hero-bg-mobile);
	}
	.helo-hero--static.helo-hero--has-mobile-bg {
		aspect-ratio: var(--helo-hero-ratio-mobile, auto);
		min-height: 0;
	}
}

@keyframes helo-fade-up {
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- Seções genéricas ---------- */
.helo-section {
	padding: 96px 0;
}
/* Ritmo visual: branco / creme / branco / verde muito claro / branco */
.helo-categories { background: var(--helo-cream); }
.helo-featured { background: var(--helo-white); }
.helo-why-us { background: var(--helo-green-pale); }
.helo-about { background: var(--helo-cream); }

/* ---------- Faixa de destaque (Pix / Frete / Entrega) ---------- */
.helo-promo {
	background: linear-gradient(120deg, var(--helo-rose-gold), #b5717a);
	padding: 28px 0;
}
.helo-promo__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px 40px;
}
.helo-promo__item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--helo-white);
	font-weight: 600;
	font-size: 15px;
}
.helo-promo__item span {
	font-size: 20px;
}
.helo-promo__cta {
	border-color: rgba(255, 255, 255, .8);
}
.helo-promo__cta:hover {
	background: var(--helo-white);
	color: var(--helo-rose-gold);
}

.helo-testimonials { background: var(--helo-white); }
.helo-instagram { background: var(--helo-cream); }
.helo-faq { background: var(--helo-white); }
.helo-section__title {
	text-align: center;
	font-size: clamp(28px, 4vw, 38px);
	margin-bottom: 24px;
	position: relative;
}
.helo-section__title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin: 16px auto 32px;
	background: linear-gradient(90deg, var(--helo-rose-gold), var(--helo-rose-gold-light));
	border-radius: 999px;
}

/* ---------- Categorias ---------- */
.helo-categories__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 24px;
}
.helo-category-card {
	position: relative;
	border-radius: var(--helo-radius);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: var(--helo-shadow);
	transition: transform .3s ease;
}
.helo-category-card:hover {
	transform: translateY(-4px);
}
.helo-category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.helo-category-card:hover img {
	transform: scale(1.06);
}
.helo-category-card__name {
	position: absolute;
	inset: auto 0 0 0;
	padding: 16px;
	background: linear-gradient(0deg, rgba(31,41,33,.75), transparent);
	color: var(--helo-white);
	font-family: var(--font-heading);
	font-size: 16px;
}

/* ---------- Produtos ---------- */
.helo-product-grid,
ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.helo-product-card,
.woocommerce ul.products li.product {
	background: var(--helo-white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(31, 41, 33, 0.07);
	transition: transform .3s ease, box-shadow .3s ease;
	display: flex;
	flex-direction: column;
	border-top: 3px solid transparent;
}
.helo-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 44px rgba(31, 41, 33, 0.16);
	border-top-color: var(--helo-rose-gold);
}
.helo-product-card__image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	margin: 14px 14px 0;
	border-radius: 14px;
}
.helo-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.helo-product-card:hover .helo-product-card__image img {
	transform: scale(1.05);
}
.helo-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--helo-rose-gold);
	color: #fff;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 999px;
}
.helo-product-card__body {
	padding: 18px 18px 6px;
}
.helo-product-card__title {
	font-size: 16px;
	margin-bottom: 8px;
}
.helo-product-card__price {
	color: var(--helo-green-dark);
	font-weight: 700;
	font-size: 22px;
	font-family: var(--font-heading);
}
.helo-product-card__actions {
	display: flex;
	gap: 8px;
	padding: 14px 18px 22px;
	margin-top: auto;
}
.helo-product-card__actions .helo-btn {
	flex: 1;
	padding: 11px;
	font-size: 13px;
}
.helo-product-card__actions .helo-btn--whatsapp {
	background: var(--helo-white);
	color: var(--helo-green);
	border-color: var(--helo-green);
	box-shadow: none;
	animation: none;
}
.helo-product-card__actions .helo-btn--whatsapp:hover {
	background: var(--helo-green);
	color: var(--helo-white);
	box-shadow: 0 8px 18px rgba(30, 53, 38, .25);
}
.helo-pix-note {
	color: var(--helo-green);
	font-size: 13px;
	margin-top: -8px;
}

/* ---------- Por que escolher ---------- */
.helo-why-us__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 28px;
	text-align: center;
}
.helo-why-us__item {
	background: var(--helo-white);
	border-radius: 16px;
	padding: 36px 20px 30px;
	box-shadow: var(--helo-shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}
.helo-why-us__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 36px rgba(30, 53, 38, .12);
}
.helo-why-us__icon {
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--helo-rose-gold-light), var(--helo-beige));
	box-shadow: 0 8px 16px rgba(201, 138, 138, .25);
}
.helo-why-us__item p {
	font-weight: 600;
	font-size: 15px;
	color: var(--helo-green-dark);
	margin: 0;
}
.helo-why-us__underline {
	display: block;
	width: 28px;
	height: 2px;
	margin: 14px auto 0;
	background: var(--helo-gold);
	opacity: .6;
}

/* ---------- Quem somos ---------- */
.helo-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.helo-about__image img {
	border-radius: var(--helo-radius);
	box-shadow: var(--helo-shadow);
}
.helo-about__lead {
	font-family: var(--font-heading);
	font-size: 20px;
	color: var(--helo-rose-gold);
}
.helo-about__stats {
	display: flex;
	gap: 40px;
	margin-top: 32px;
}
.helo-stat strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 28px;
	color: var(--helo-green);
}
.helo-stat span {
	font-size: 13px;
	color: var(--helo-gray-400);
}

/* ---------- Depoimentos ---------- */
.helo-testimonials__google {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin: -8px 0 48px;
	text-align: center;
}
.helo-testimonials__google-line {
	display: flex;
	align-items: center;
	gap: 10px;
}
.helo-testimonials__google-rating {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 34px;
	color: var(--helo-green-dark);
	line-height: 1;
}
.helo-testimonials__google-stars {
	color: var(--helo-rose-gold);
	letter-spacing: 3px;
	font-size: 22px;
}
.helo-testimonials__google-count {
	font-size: 16px;
	font-weight: 500;
	color: var(--helo-gray-400);
	margin-bottom: 6px;
}
.helo-btn--google {
	background: var(--helo-white);
	border-color: var(--helo-gray-100);
	color: #3c4043;
	box-shadow: 0 4px 14px rgba(60, 64, 67, .15);
}
.helo-btn--google:hover {
	border-color: #4285F4;
	box-shadow: 0 6px 18px rgba(66, 133, 244, .25);
}
.helo-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.helo-testimonial-card {
	background: var(--helo-white);
	border-radius: var(--helo-radius);
	padding: 24px;
	box-shadow: var(--helo-shadow);
	display: flex;
	gap: 16px;
}
.helo-testimonial-card__photo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
}
.helo-stars {
	color: var(--helo-rose-gold);
	letter-spacing: 2px;
}
.helo-testimonial-card__text {
	font-style: italic;
	margin: 8px 0;
}
.helo-testimonial-card__name {
	font-weight: 600;
	font-size: 14px;
}

/* ---------- Instagram ---------- */
.helo-instagram__handle {
	text-align: center;
	color: var(--helo-rose-gold);
	margin-top: -32px;
	margin-bottom: 32px;
}
.helo-instagram__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.helo-instagram__item {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--helo-radius);
}
.helo-instagram__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.helo-instagram__item:hover img {
	transform: scale(1.08);
}

/* ---------- FAQ ---------- */
.helo-faq__list {
	max-width: 760px;
	margin: 0 auto;
}
.helo-faq__item {
	border-bottom: 1px solid var(--helo-gray-100);
	padding: 16px 0;
}
.helo-faq__item summary {
	cursor: pointer;
	font-weight: 500;
	font-family: var(--font-heading);
	font-size: 18px;
}
.helo-faq__answer {
	margin-top: 12px;
	color: var(--helo-gray-400);
}

/* ---------- 5 Motivos ---------- */
.helo-reasons {
	background: var(--helo-green-dark);
	color: var(--helo-beige);
}
.helo-reasons .helo-section__title {
	color: var(--helo-white);
}
.helo-reasons__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}
@media (max-width: 900px) {
	.helo-reasons__grid {
		grid-template-columns: 1fr;
	}
}
.helo-reasons__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.helo-reasons__number {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 600;
	color: var(--helo-gold);
	line-height: 1;
	flex-shrink: 0;
}
.helo-reasons__item h3 {
	color: var(--helo-white);
	font-size: 18px;
	margin: 0 0 6px;
}
.helo-reasons__item p {
	margin: 0;
	font-size: 14px;
	color: var(--helo-beige);
	opacity: .85;
}

/* ---------- Formulário de pedido ---------- */
.helo-order-form {
	background: var(--helo-white);
}
.helo-section__title--left {
	text-align: left;
}
.helo-section__title--left::after {
	margin: 16px 0 32px;
}
.helo-order-form__wrap {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: start;
}
.helo-order-form__intro p {
	color: var(--helo-gray-400);
	margin-bottom: 20px;
}
.helo-order-form__phone {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--helo-green);
	font-weight: 600;
}
.helo-order-form__form {
	background: var(--helo-cream);
	border-radius: 16px;
	padding: 36px;
	box-shadow: var(--helo-shadow);
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.helo-order-form__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.helo-order-form__row label {
	font-size: 13px;
	font-weight: 600;
	color: var(--helo-green-dark);
}
.helo-order-form__row input,
.helo-order-form__row textarea {
	padding: 12px 14px;
	border: 1px solid var(--helo-gray-100);
	border-radius: var(--helo-radius);
	font-family: var(--font-body);
	font-size: 15px;
	background: var(--helo-white);
}
.helo-order-form__row input:focus,
.helo-order-form__row textarea:focus {
	outline: 2px solid var(--helo-rose-gold);
	outline-offset: 1px;
}
@media (max-width: 900px) {
	.helo-order-form__wrap {
		grid-template-columns: 1fr;
	}
}

/* ---------- Logo no rodapé ---------- */
.helo-footer__logo {
	margin-bottom: 12px;
}
.helo-footer__logo img {
	max-height: 56px;
	width: auto;
}

/* ---------- Página de produto único ---------- */
.helo-product-description {
	margin: 16px 0 20px;
	color: var(--helo-text);
	line-height: 1.7;
}
.helo-product-description p {
	margin: 0 0 12px;
}
.helo-product-details {
	margin: 8px 0 24px;
}
.product_meta {
	display: block;
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid var(--helo-gray-100);
	font-size: 13px;
	color: var(--helo-gray-400);
}
.product_meta > span {
	display: block;
	margin-bottom: 4px;
}
.helo-product-details__row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid var(--helo-gray-100);
	gap: 24px;
}
.helo-product-details__row dt {
	font-weight: 500;
	color: var(--helo-green);
}
.helo-product-details__row dd {
	margin: 0;
	color: var(--helo-gray-400);
	text-align: right;
}

/* ---------- Loja / WooCommerce genérico ---------- */
.helo-shop-wrapper {
	padding: 64px 0;
}

/* ---------- Banner da Loja/categorias ---------- */
.helo-shop-banner {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-bottom: 48px;
	min-height: 320px;
	background-size: cover;
	/* Foca no lado direito da foto (onde é só o arranjo) — o lado esquerdo
	   tem o título "Flores que transformam..." desenhado na imagem, que
	   bateria de frente com o título "Loja" que a gente desenha por cima. */
	background-position: right center;
	display: flex;
	align-items: center;
	color: var(--helo-white);
}
.helo-shop-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 36, 25, .78);
}
.helo-shop-banner__content {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 48px 24px;
}
.helo-shop-banner__title {
	color: var(--helo-white);
	font-size: clamp(32px, 4.5vw, 48px);
	margin: 0 0 12px;
}
.helo-shop-banner__subtitle {
	color: var(--helo-beige);
	font-size: 16px;
	margin: -8px 0 12px;
}
.helo-shop-banner .helo-testimonials__google-rating,
.helo-shop-banner .helo-testimonials__google-count {
	color: var(--helo-white);
}

/* ---------- Paginação (loja, blog, categorias, mais vendidos) ---------- */
.woocommerce-pagination,
.helo-blog__pagination,
.helo-featured__pagination {
	margin-top: 56px;
}
.helo-featured__pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.helo-featured__pagination .page-numbers li {
	list-style: none;
}
.woocommerce-pagination ul.page-numbers,
.helo-blog__pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.woocommerce-pagination .page-numbers li {
	list-style: none;
}
.page-numbers li,
.woocommerce-pagination .page-numbers > a,
.woocommerce-pagination .page-numbers > span {
	display: inline-flex;
}
a.page-numbers,
span.page-numbers,
.helo-blog__pagination a,
.helo-blog__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--helo-white);
	color: var(--helo-green-dark);
	font-weight: 600;
	font-size: 14px;
	box-shadow: var(--helo-shadow);
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
a.page-numbers:hover {
	background: var(--helo-rose-gold);
	color: var(--helo-white);
	transform: translateY(-2px);
}
.page-numbers.current {
	background: var(--helo-green);
	color: var(--helo-white);
	box-shadow: 0 8px 18px rgba(30, 53, 38, .3);
}
.woocommerce-breadcrumb {
	margin-bottom: 24px;
	font-size: 13px;
	color: var(--helo-gray-400);
}
.woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 48px;
}
.woocommerce div.product > .images,
.woocommerce div.product > .summary {
	grid-column: span 1;
}
.woocommerce div.product > *:not(.images):not(.summary) {
	grid-column: 1 / -1;
}
.woocommerce div.product .price {
	color: var(--helo-rose-gold);
	font-size: 22px;
}

/* Abas do produto (Descrição / Avaliações) */
.woocommerce-tabs {
	margin-top: 24px;
	border-top: 1px solid var(--helo-gray-100);
	padding-top: 24px;
}
.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}
.woocommerce-tabs ul.tabs li {
	list-style: none;
}
.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--helo-gray-50);
	font-size: 14px;
	font-weight: 500;
}
.woocommerce-tabs ul.tabs li.active a {
	background: var(--helo-green);
	color: #fff;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
	max-width: 760px;
}
.woocommerce-tabs .woocommerce-Tabs-panel[style*="display: none"],
.woocommerce-tabs .woocommerce-Tabs-panel[style*="display:none"] {
	display: none !important;
}
.related.products {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--helo-gray-100);
}
.related.products > h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 32px;
}
.woocommerce table.shop_table,
.woocommerce table {
	width: 100%;
	border-collapse: collapse;
}
.woocommerce table th,
.woocommerce table td {
	padding: 12px;
	border-bottom: 1px solid var(--helo-gray-100);
	text-align: left;
}
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--helo-gray-100);
	border-radius: var(--helo-radius);
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--helo-green);
	color: #fff;
	padding: 12px 24px;
	border-radius: var(--helo-radius);
	border: none;
	cursor: pointer;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--helo-green-dark);
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--helo-beige);
	padding: 16px;
	border-radius: var(--helo-radius);
	margin-bottom: 24px;
	list-style: none;
}

/* ---------- Blog ---------- */
.helo-blog {
	padding: 64px 24px;
}
.helo-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.helo-blog-card {
	background: var(--helo-white);
	border-radius: var(--helo-radius);
	overflow: hidden;
	box-shadow: var(--helo-shadow);
}
.helo-blog-card__thumb img {
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
}
.helo-blog-card__title,
.helo-blog-card__excerpt {
	padding: 0 16px;
}
.helo-blog-card__title {
	padding-top: 16px;
	font-size: 18px;
}
.helo-blog-card__excerpt {
	padding-bottom: 16px;
	color: var(--helo-gray-400);
	font-size: 14px;
}

/* ---------- Página genérica ---------- */
.helo-page,
.helo-single {
	padding: 64px 24px;
}
.helo-single {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	align-items: start;
}
.helo-page__content {
	max-width: 760px;
	margin: 0 auto;
}

/* ---------- Footer ---------- */
.helo-footer {
	background: var(--helo-green-dark);
	color: var(--helo-beige);
	padding-top: 64px;
}
.helo-footer h3, .helo-footer h4 {
	color: var(--helo-white);
}
.helo-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding-bottom: 48px;
}
.helo-footer a:hover {
	color: var(--helo-rose-gold-light);
}
.helo-footer__col ul li {
	margin-bottom: 8px;
	font-size: 14px;
}
.helo-footer__small {
	font-size: 12px;
	opacity: .75;
}
.helo-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.helo-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	transition: background .2s ease, transform .2s ease;
}
.helo-footer__social a:hover {
	background: var(--helo-rose-gold);
	color: var(--helo-white);
	transform: translateY(-2px);
}
.helo-footer__map iframe {
	display: block;
}
.helo-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 24px;
	font-size: 12px;
	text-align: center;
}

/* ---------- WhatsApp flutuante ---------- */
.helo-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25d366, #1fb959);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
	z-index: 200;
	transition: transform .2s ease;
}
.helo-whatsapp-float svg {
	width: 28px;
	height: 28px;
}
.helo-whatsapp-float:hover {
	transform: scale(1.08);
}
.helo-whatsapp-float__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	animation: helo-pulse 2.4s ease-out infinite;
}
.helo-whatsapp-float__tooltip {
	position: absolute;
	right: 72px;
	bottom: 50%;
	transform: translateY(50%);
	background: var(--helo-green-dark);
	color: #fff;
	padding: 8px 14px;
	border-radius: var(--helo-radius);
	font-size: 13px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}
.helo-whatsapp-float:hover .helo-whatsapp-float__tooltip {
	opacity: 1;
	transform: translateY(50%) translateX(-4px);
}
@media (max-width: 560px) {
	.helo-whatsapp-float__tooltip {
		display: none;
	}
}

/* ---------- Fade-in on scroll ---------- */
.helo-fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}
.helo-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
	.helo-header__nav { display: none; }
	.helo-menu-toggle { display: flex; }
	.helo-header__nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--helo-white);
		padding: 16px 24px;
		box-shadow: var(--helo-shadow);
	}
	.helo-menu { flex-direction: column; gap: 16px; }

	/* No celular, tudo em 1 coluna por vez — nada de grade 2x/3x apertada. */
	.helo-product-grid, ul.products,
	.helo-blog__grid,
	.helo-instagram__grid,
	.helo-categories__grid,
	.helo-footer__grid,
	.helo-about__grid,
	.woocommerce div.product,
	.helo-single { grid-template-columns: 1fr; }

	/* Botão de WhatsApp do cabeçalho fica compacto (só o ícone) no celular,
	   pra não espremer o menu/logo. */
	.helo-header__actions .helo-btn--whatsapp {
		font-size: 0;
		padding: 10px;
		width: 40px;
		height: 40px;
	}
	.helo-header__actions .helo-btn--whatsapp svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 560px) {
	.helo-hero { min-height: 100vh; }
	.helo-section { padding: 64px 0; }
}
