/* =========================================================================
   FUNERÁRIA GUARUJÁ — FOLHA DE ESTILOS PRINCIPAL
   Identidade própria: acolhimento + modernidade + litoral discreto.
   CSS puro, sem frameworks (sem Bootstrap), organizado por seções.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. RESET LEVE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
	margin: 0;
}

ul, ol {
	padding: 0;
	list-style: none;
}

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

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

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

input, textarea, select {
	font: inherit;
}

svg {
	display: block;
}

/* -------------------------------------------------------------------------
   2. TOKENS DE DESIGN (cores, tipografia, espaçamento)
   ------------------------------------------------------------------------- */
:root {
	/* Paleta */
	--fg-petroleo:     #496B70;
	--fg-petroleo-dark: #3A5559;
	--fg-acinzentado:  #789397;
	--fg-nevoa:        #DCE6E5;
	--fg-areia:        #E6D7C4;
	--fg-bege:         #F0E8DC;
	--fg-marfim:       #FAF8F3;
	--fg-cinza:        #77746F;
	--fg-grafite:      #414340;
	--fg-branco:       #FFFFFF;

	/* Papéis semânticos */
	--fg-bg:            var(--fg-marfim);
	--fg-bg-soft:       var(--fg-bege);
	--fg-bg-mist:       var(--fg-nevoa);
	--fg-text:          var(--fg-grafite);
	--fg-text-muted:    var(--fg-cinza);
	--fg-accent:        var(--fg-petroleo);
	--fg-accent-soft:   var(--fg-acinzentado);
	--fg-border:        #E1D9CC;

	/* Tipografia */
	--fg-font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--fg-font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Espaçamento vertical de seções */
	--fg-section-pad: clamp(3.5rem, 6vw, 6.5rem);

	/* Raio de borda — discreto e consistente, não aplicado a tudo por igual */
	--fg-radius-sm: 6px;
	--fg-radius-md: 14px;
	--fg-radius-lg: 28px;

	/* Sombra suave e única, usada com parcimônia */
	--fg-shadow: 0 18px 40px -24px rgba(65, 67, 64, 0.35);

	--fg-max-width: 1200px;
}

/* -------------------------------------------------------------------------
   3. BASE / TIPOGRAFIA
   ------------------------------------------------------------------------- */
body {
	font-family: var(--fg-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--fg-text);
	background-color: var(--fg-bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.fg-no-scroll {
	overflow: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--fg-font-display);
	font-weight: 500;
	line-height: 1.15;
	color: var(--fg-grafite);
	letter-spacing: -0.01em;
}

p {
	max-width: 62ch;
}

.fg-section-title {
	font-size: clamp(1.7rem, 2.6vw, 2.4rem);
	max-width: 20ch;
}

.fg-section-head {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Foco visível em toda navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--fg-petroleo);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Utilitário de acessibilidade (esconde visualmente, mantém para leitores de tela) */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fg-skip-link {
	position: fixed;
	top: -60px;
	left: 1rem;
	z-index: 200;
	background: var(--fg-petroleo);
	color: var(--fg-branco);
	padding: 0.75rem 1.25rem;
	border-radius: var(--fg-radius-sm);
	transition: top 0.2s ease;
}

.fg-skip-link:focus {
	top: 1rem;
}

/* -------------------------------------------------------------------------
   4. LAYOUT / CONTAINER
   ------------------------------------------------------------------------- */
.fg-container {
	width: 100%;
	max-width: var(--fg-max-width);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section {
	padding-block: var(--fg-section-pad);
}

/* -------------------------------------------------------------------------
   5. BOTÕES
   ------------------------------------------------------------------------- */
.fg-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--fg-font-body);
	font-weight: 600;
	font-size: 0.98rem;
	padding: 0.85rem 1.6rem;
	border-radius: 999px;
	border: 1.5px solid transparent;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}

.fg-btn:hover {
	transform: translateY(-1px);
}

.fg-btn--primary,
.fg-btn--whatsapp {
	background-color: var(--fg-petroleo);
	color: var(--fg-branco);
	border-color: var(--fg-petroleo);
}

.fg-btn--primary:hover,
.fg-btn--whatsapp:hover {
	background-color: var(--fg-petroleo-dark);
	border-color: var(--fg-petroleo-dark);
}

.fg-btn--outline {
	background-color: transparent;
	color: var(--fg-petroleo);
	border-color: var(--fg-petroleo);
}

.fg-btn--outline:hover {
	background-color: var(--fg-petroleo);
	color: var(--fg-branco);
}

.fg-btn--onlight {
	background-color: var(--fg-marfim);
	color: var(--fg-petroleo-dark);
	border-color: var(--fg-marfim);
}

.fg-btn--onlight:hover {
	background-color: var(--fg-areia);
	border-color: var(--fg-areia);
}

.fg-btn--sm {
	padding: 0.55rem 1.1rem;
	font-size: 0.88rem;
}

.fg-btn--lg {
	padding: 1rem 2rem;
	font-size: 1.02rem;
}

.fg-btn__icon {
	display: inline-flex;
	line-height: 0;
}

/* -------------------------------------------------------------------------
   6. HEADER / NAVEGAÇÃO
   ------------------------------------------------------------------------- */
.fg-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(250, 248, 243, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fg-header.is-scrolled {
	border-bottom-color: var(--fg-border);
	box-shadow: 0 8px 24px -20px rgba(65, 67, 64, 0.4);
}

.fg-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 0.9rem;
}

.fg-header__brand {
	flex-shrink: 0;
}

.fg-header__logo img {
	max-height: 56px;
	width: auto;
}

.fg-header__brand-text {
	font-family: var(--fg-font-display);
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--fg-petroleo-dark);
}

.fg-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	flex-wrap: wrap;
}

.fg-nav__link {
	font-size: 0.98rem;
	font-weight: 500;
	color: var(--fg-text);
	position: relative;
	padding-block: 0.3rem;
}

.fg-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: var(--fg-petroleo);
	transition: width 0.2s ease;
}

.fg-nav__link:hover::after,
.fg-nav__link:focus-visible::after {
	width: 100%;
}

.fg-header__actions {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	flex-shrink: 0;
}

.fg-header__whatsapp .fg-btn__label {
	display: none;
}

.fg-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border-radius: var(--fg-radius-sm);
}

.fg-menu-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--fg-grafite);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.fg-hero {
	padding-top: clamp(2.5rem, 6vw, 4.5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
	background: linear-gradient(180deg, var(--fg-bege) 0%, var(--fg-marfim) 78%);
}

.fg-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.fg-hero__title {
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	max-width: 15ch;
}

.fg-hero__subtitle {
	margin-top: 1.25rem;
	font-size: 1.15rem;
	color: var(--fg-text-muted);
	max-width: 42ch;
}

.fg-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.25rem;
}

.fg-hero__media {
	position: relative;
	aspect-ratio: 4 / 5;
}

.fg-hero__media-shape {
	position: absolute;
	inset: -6%;
	z-index: 0;
	background-color: var(--fg-nevoa);
	border-radius: 42% 58% 63% 37% / 45% 40% 60% 55%;
}

.fg-hero__image,
.fg-hero .fg-img-fallback {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 40% 60% 58% 42% / 48% 42% 58% 52%;
	box-shadow: var(--fg-shadow);
}

/* -------------------------------------------------------------------------
   8. FALLBACK VISUAL DE IMAGEM
   ------------------------------------------------------------------------- */
.fg-img-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--fg-nevoa), var(--fg-acinzentado));
	color: var(--fg-branco);
	min-height: 220px;
}

.fg-img-fallback__mark {
	font-family: var(--fg-font-display);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	letter-spacing: 0.04em;
	opacity: 0.92;
}

/* -------------------------------------------------------------------------
   9. BLOCO DE ATENDIMENTO
   ------------------------------------------------------------------------- */
.fg-support {
	background-color: var(--fg-bg);
}

.fg-support__inner {
	max-width: 720px;
}

.fg-support__desc {
	margin-top: 1.1rem;
	color: var(--fg-text-muted);
	font-size: 1.05rem;
}

.fg-support__desc p + p {
	margin-top: 0.9rem;
}

.fg-support__highlight {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 1.5rem;
	padding: 0.7rem 1.2rem;
	background-color: var(--fg-nevoa);
	border-radius: 999px;
	color: var(--fg-petroleo-dark);
	font-weight: 600;
	font-size: 0.95rem;
}

.fg-support__status {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.1rem;
	color: var(--fg-text-muted);
	font-size: 0.95rem;
}

.fg-support__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--fg-petroleo);
}

.fg-support .fg-btn {
	margin-top: 1.75rem;
}

/* -------------------------------------------------------------------------
   10. SERVIÇOS (grid assimétrico)
   ------------------------------------------------------------------------- */
.fg-services {
	background-color: var(--fg-bg-soft);
}

.fg-services__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.25rem;
}

.fg-service {
	background-color: var(--fg-marfim);
	border: 1px solid var(--fg-border);
	border-radius: var(--fg-radius-md);
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	grid-column: span 2;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.fg-service--lg {
	grid-column: span 3;
}

.fg-service:hover {
	border-color: var(--fg-acinzentado);
}

.fg-service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--fg-nevoa);
	color: var(--fg-petroleo-dark);
	margin-bottom: 0.4rem;
}

.fg-service--lg .fg-service__title {
	font-size: 1.55rem;
}

.fg-service__title {
	font-size: 1.25rem;
}

.fg-service__desc {
	color: var(--fg-text-muted);
	font-size: 0.98rem;
	flex-grow: 1;
}

.fg-service__btn {
	align-self: flex-start;
	margin-top: 0.5rem;
}

/* -------------------------------------------------------------------------
   11. COMO FUNCIONA (linha do tempo numerada)
   ------------------------------------------------------------------------- */
.fg-process {
	background-color: var(--fg-bg);
}

.fg-process__list {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3vw, 2.5rem);
	max-width: 780px;
}

.fg-process__list::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 12px;
	bottom: 12px;
	width: 1.5px;
	background-color: var(--fg-border);
}

.fg-process__step {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	position: relative;
}

.fg-process__number {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--fg-petroleo);
	color: var(--fg-branco);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--fg-font-display);
	font-size: 1.15rem;
	position: relative;
	z-index: 1;
}

.fg-process__title {
	font-size: 1.2rem;
	margin-bottom: 0.35rem;
}

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

/* -------------------------------------------------------------------------
   12. OCORREU UM ÓBITO? (faixa de destaque)
   ------------------------------------------------------------------------- */
.fg-urgent {
	background: linear-gradient(120deg, var(--fg-petroleo) 0%, var(--fg-petroleo-dark) 100%);
	color: var(--fg-branco);
}

.fg-urgent__inner {
	text-align: center;
	max-width: 640px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.fg-urgent__title {
	color: var(--fg-branco);
	font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.fg-urgent__text {
	color: var(--fg-nevoa);
	font-size: 1.1rem;
	max-width: 46ch;
}

.fg-urgent .fg-btn {
	margin-top: 0.75rem;
}

/* -------------------------------------------------------------------------
   13. O QUE FAZER APÓS UM FALECIMENTO
   ------------------------------------------------------------------------- */
.fg-guidance {
	background-color: var(--fg-bg-mist);
}

.fg-guidance__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.fg-guidance__intro {
	margin-top: 1.1rem;
	color: var(--fg-text-muted);
}

.fg-guidance__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.fg-guidance__item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	background-color: var(--fg-marfim);
	border-radius: var(--fg-radius-sm);
	padding: 0.9rem 1.1rem;
}

.fg-guidance__bullet {
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	margin-top: 0.5rem;
	border-radius: 50%;
	background-color: var(--fg-petroleo);
}

.fg-guidance__note {
	grid-column: 1 / -1;
	margin-top: 0.5rem;
	color: var(--fg-text-muted);
	font-size: 0.92rem;
	font-style: italic;
	max-width: 70ch;
}

/* -------------------------------------------------------------------------
   14. DOCUMENTAÇÃO E ORIENTAÇÕES
   ------------------------------------------------------------------------- */
.fg-docs {
	background-color: var(--fg-bg);
}

.fg-docs__inner {
	display: flex;
	gap: 1.75rem;
	align-items: flex-start;
	background-color: var(--fg-bg-soft);
	border-radius: var(--fg-radius-lg);
	padding: clamp(2rem, 4vw, 3rem);
}

.fg-docs__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--fg-marfim);
	color: var(--fg-petroleo-dark);
}

.fg-docs__text p {
	color: var(--fg-text-muted);
	margin-top: 0.75rem;
	max-width: 60ch;
}

.fg-docs__text .fg-btn {
	margin-top: 1.5rem;
}

/* -------------------------------------------------------------------------
   15. DIFERENCIAIS
   ------------------------------------------------------------------------- */
.fg-diff {
	background-color: var(--fg-bg-soft);
}

.fg-diff__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background-color: var(--fg-border);
	border: 1px solid var(--fg-border);
	border-radius: var(--fg-radius-md);
	overflow: hidden;
}

.fg-diff__item {
	background-color: var(--fg-marfim);
	padding: clamp(1.5rem, 2.5vw, 2rem);
}

.fg-diff__title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.fg-diff__desc {
	color: var(--fg-text-muted);
	font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   16. QUEM SOMOS
   ------------------------------------------------------------------------- */
.fg-about {
	background-color: var(--fg-bg);
}

.fg-about__inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.fg-about__media {
	aspect-ratio: 1 / 1;
	border-radius: var(--fg-radius-lg);
	overflow: hidden;
}

.fg-about__image,
.fg-about .fg-img-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fg-about__desc {
	margin-top: 1.1rem;
	color: var(--fg-text-muted);
	font-size: 1.05rem;
}

.fg-about__desc p + p {
	margin-top: 0.9rem;
}

/* -------------------------------------------------------------------------
   17. ÁREA DE ATENDIMENTO
   ------------------------------------------------------------------------- */
.fg-area {
	background-color: var(--fg-bg-mist);
}

.fg-area__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.fg-area__col-title {
	font-size: 1.05rem;
	margin-bottom: 0.85rem;
	color: var(--fg-petroleo-dark);
}

.fg-area__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: var(--fg-text-muted);
}

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

/* -------------------------------------------------------------------------
   18. LOCALIZAÇÃO / CONTATO
   ------------------------------------------------------------------------- */
.fg-contact {
	background-color: var(--fg-bg);
}

.fg-contact__inner {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: stretch;
}

.fg-contact__list {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	margin-top: 1.5rem;
}

.fg-contact__item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.fg-contact__label {
	font-size: 0.82rem;
	color: var(--fg-text-muted);
}

.fg-contact__item--empty {
	color: var(--fg-text-muted);
}

.fg-contact__map {
	border-radius: var(--fg-radius-md);
	overflow: hidden;
	min-height: 320px;
	background-color: var(--fg-bg-soft);
}

.fg-contact__map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
	display: block;
}

.fg-contact__map-fallback {
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: var(--fg-cinza);
	text-align: center;
	padding: 2rem;
}

/* -------------------------------------------------------------------------
   19. FAQ (accordion)
   ------------------------------------------------------------------------- */
.fg-faq {
	background-color: var(--fg-bg-soft);
}

.fg-faq__list {
	max-width: 820px;
	border-top: 1px solid var(--fg-border);
}

.fg-faq__item {
	border-bottom: 1px solid var(--fg-border);
}

.fg-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 0.25rem;
	text-align: left;
	font-family: var(--fg-font-display);
	font-size: 1.08rem;
	color: var(--fg-grafite);
}

.fg-faq__icon {
	flex-shrink: 0;
	position: relative;
	width: 20px;
	height: 20px;
}

.fg-faq__icon::before,
.fg-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--fg-petroleo);
	transition: transform 0.25s ease;
}

.fg-faq__icon::before {
	width: 14px;
	height: 2px;
	transform: translate(-50%, -50%);
}

.fg-faq__icon::after {
	width: 2px;
	height: 14px;
	transform: translate(-50%, -50%);
}

.fg-faq__item.is-open .fg-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.fg-faq__answer {
	padding: 0 0.25rem 1.35rem;
	color: var(--fg-text-muted);
	max-width: 68ch;
}

/* -------------------------------------------------------------------------
   20. FOOTER
   ------------------------------------------------------------------------- */
.fg-footer {
	background-color: var(--fg-grafite);
	color: var(--fg-nevoa);
}

.fg-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: clamp(2rem, 4vw, 3rem);
	padding-block: clamp(3rem, 5vw, 4.5rem);
}

.fg-footer__logo img {
	max-height: 48px;
	filter: brightness(0) invert(1);
}

.fg-footer__brand-text {
	font-family: var(--fg-font-display);
	font-size: 1.3rem;
	color: var(--fg-branco);
}

.fg-footer__desc {
	margin-top: 1rem;
	color: var(--fg-acinzentado);
	font-size: 0.95rem;
	max-width: 32ch;
}

.fg-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}

.fg-footer__social a {
	font-size: 0.88rem;
	color: var(--fg-nevoa);
	border-bottom: 1px solid transparent;
}

.fg-footer__social a:hover {
	border-bottom-color: var(--fg-nevoa);
}

.fg-footer__title {
	font-size: 1rem;
	font-family: var(--fg-font-body);
	font-weight: 600;
	color: var(--fg-branco);
	margin-bottom: 1.1rem;
}

.fg-footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	font-size: 0.92rem;
	color: var(--fg-acinzentado);
}

.fg-footer__list a:hover {
	color: var(--fg-branco);
}

.fg-footer__list--contact li {
	line-height: 1.5;
}

.fg-footer__whatsapp {
	margin-top: 1.1rem;
}

.fg-footer__bottom {
	border-top: 1px solid rgba(220, 230, 229, 0.15);
	padding-block: 1.25rem;
	font-size: 0.85rem;
	color: var(--fg-acinzentado);
}

/* -------------------------------------------------------------------------
   21. BOTÃO VOLTAR AO TOPO
   ------------------------------------------------------------------------- */
.fg-back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--fg-petroleo);
	color: var(--fg-branco);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	box-shadow: var(--fg-shadow);
}

.fg-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* -------------------------------------------------------------------------
   22. PÁGINAS INTERNAS GENÉRICAS (page.php, single.php, index.php)
   ------------------------------------------------------------------------- */
.fg-breadcrumb {
	font-size: 0.88rem;
	color: var(--fg-text-muted);
	padding-top: 1.5rem;
}

.fg-breadcrumb a:hover {
	color: var(--fg-petroleo);
}

.fg-generic-page__header {
	padding-block: 1.5rem 2rem;
}

.fg-generic-page__title {
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.fg-generic-page__layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.fg-page-content__thumb {
	border-radius: var(--fg-radius-md);
	overflow: hidden;
	margin-bottom: 2rem;
}

.fg-page-content__body {
	max-width: 72ch;
}

.fg-page-content__body p {
	margin-bottom: 1.1rem;
	max-width: none;
}

.fg-page-content__body a {
	color: var(--fg-petroleo);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fg-generic-page__sidebar {
	background-color: var(--fg-bg-soft);
	border-radius: var(--fg-radius-md);
	padding: 1.75rem;
}

.fg-widget__title {
	font-size: 1.05rem;
	margin-bottom: 1rem;
}

.fg-post-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.fg-post-card {
	background-color: var(--fg-marfim);
	border: 1px solid var(--fg-border);
	border-radius: var(--fg-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.fg-post-card__thumb img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.fg-post-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex-grow: 1;
}

.fg-post-card__title {
	font-size: 1.15rem;
}

.fg-post-card__excerpt {
	color: var(--fg-text-muted);
	font-size: 0.94rem;
	flex-grow: 1;
}

.fg-post-card__more {
	color: var(--fg-petroleo);
	font-weight: 600;
	font-size: 0.9rem;
	align-self: flex-start;
}

.fg-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
	gap: 0.75rem;
}

.fg-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 0.5rem;
	border-radius: 50%;
	color: var(--fg-text);
}

.fg-pagination .page-numbers.current {
	background-color: var(--fg-petroleo);
	color: var(--fg-branco);
}

.fg-entry__meta {
	margin-top: 0.75rem;
	color: var(--fg-text-muted);
	font-size: 0.88rem;
	display: flex;
	gap: 0.75rem;
}

/* -------------------------------------------------------------------------
   23. 404
   ------------------------------------------------------------------------- */
.fg-404 {
	background-color: var(--fg-bg-soft);
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.fg-404__inner {
	text-align: center;
	max-width: 560px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}

.fg-404__code {
	font-family: var(--fg-font-display);
	font-size: clamp(3rem, 8vw, 5rem);
	color: var(--fg-acinzentado);
}

.fg-404__actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* -------------------------------------------------------------------------
   24. RESPONSIVIDADE
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.fg-hero__inner,
	.fg-guidance__inner,
	.fg-about__inner,
	.fg-contact__inner {
		grid-template-columns: 1fr;
	}

	.fg-hero__media {
		order: -1;
		max-width: 420px;
		margin-inline: auto;
	}

	.fg-guidance__note {
		grid-column: auto;
	}

	.fg-diff__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fg-area__grid {
		grid-template-columns: 1fr 1fr;
	}

	.fg-generic-page__layout {
		grid-template-columns: 1fr;
	}

	.fg-post-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.fg-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 782px) {
	.fg-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 84vw);
		height: 100vh;
		background-color: var(--fg-marfim);
		padding: 6rem 1.75rem 2rem;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		box-shadow: -20px 0 40px -30px rgba(0, 0, 0, 0.4);
	}

	.fg-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.4rem;
	}

	.fg-nav__link {
		font-size: 1.1rem;
	}

	.fg-header.fg-nav-open .fg-nav {
		transform: translateX(0);
	}

	.fg-menu-toggle {
		display: flex;
	}

	.fg-header.fg-nav-open .fg-menu-toggle__bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.fg-header.fg-nav-open .fg-menu-toggle__bar:nth-child(2) {
		opacity: 0;
	}

	.fg-header.fg-nav-open .fg-menu-toggle__bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.fg-header__whatsapp .fg-btn__label {
		display: none;
	}
}

@media (max-width: 640px) {
	:root {
		--fg-section-pad: clamp(2.75rem, 10vw, 4rem);
	}

	.fg-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.fg-hero__actions .fg-btn {
		justify-content: center;
	}

	.fg-services__grid {
		grid-template-columns: 1fr;
	}

	.fg-service,
	.fg-service--lg {
		grid-column: span 1;
	}

	.fg-diff__grid {
		grid-template-columns: 1fr;
	}

	.fg-area__grid {
		grid-template-columns: 1fr;
	}

	.fg-post-list {
		grid-template-columns: 1fr;
	}

	.fg-footer__grid {
		grid-template-columns: 1fr;
	}

	.fg-docs__inner {
		flex-direction: column;
	}

	.fg-urgent__inner,
	.fg-404__inner {
		padding-inline: 0.5rem;
	}

	.fg-back-to-top {
		right: 1rem;
		bottom: 1rem;
	}
}

/* Garantia extra contra rolagem horizontal em qualquer largura */
html, body {
	max-width: 100%;
	overflow-x: hidden;
}


/* -------------------------------------------------------------------------
   23. HERO EM FORMATO DE BANNER — DESTAQUE DE CREMAÇÃO
   ------------------------------------------------------------------------- */
.fg-hero--banner {
	position: relative;
	min-height: clamp(560px, 58vw, 700px);
	padding-block: 0;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	background: var(--fg-petroleo-dark);
}

.fg-hero--banner .fg-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: clamp(560px, 58vw, 700px);
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.fg-hero--banner .fg-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	aspect-ratio: auto;
	max-width: none;
	margin: 0;
}

.fg-hero--banner .fg-hero__image,
.fg-hero--banner .fg-hero .fg-img-fallback,
.fg-hero--banner .fg-img-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.fg-hero--banner .fg-hero__media-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(25, 42, 45, 0.88) 0%, rgba(25, 42, 45, 0.66) 43%, rgba(25, 42, 45, 0.28) 100%),
		linear-gradient(180deg, rgba(20, 32, 34, 0.12), rgba(20, 32, 34, 0.38));
}

.fg-hero--banner .fg-hero__content {
	position: relative;
	z-index: 3;
	padding-block: clamp(4rem, 8vw, 7rem);
}

.fg-hero--banner .fg-hero__title {
	color: var(--fg-branco);
	font-size: clamp(2.25rem, 4.5vw, 3.8rem);
	max-width: 15ch;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.fg-hero--banner .fg-hero__subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	max-width: 48ch;
}

.fg-hero--banner .fg-hero__actions {
	margin-top: 2rem;
}

.fg-hero--banner .fg-btn--outline {
	color: var(--fg-branco);
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.08);
}

.fg-hero--banner .fg-btn--outline:hover {
	background: var(--fg-branco);
	color: var(--fg-petroleo-dark);
	border-color: var(--fg-branco);
}

.fg-hero__offer {
	position: relative;
	z-index: 4;
	justify-self: center;
	width: min(330px, 100%);
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.25rem;
	color: var(--fg-branco);
	background: linear-gradient(145deg, rgba(73, 107, 112, 0.98), rgba(58, 85, 89, 0.98));
	border: 7px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.fg-hero__offer::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px dashed rgba(255, 255, 255, 0.48);
	border-radius: 50%;
}

.fg-hero__offer-label {
	position: relative;
	font-family: var(--fg-font-display);
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	font-weight: 600;
	line-height: 1;
}

.fg-hero__offer-small {
	position: relative;
	margin-top: 0.45rem;
	font-size: 1rem;
}

.fg-hero__offer-price {
	position: relative;
	margin-top: 0.15rem;
	font-size: clamp(2.5rem, 5vw, 3.7rem);
	line-height: 1;
	letter-spacing: -0.04em;
}

.fg-hero__offer-price span {
	font-size: 0.42em;
	vertical-align: top;
	position: relative;
	top: 0.12em;
}

.fg-hero__offer-note {
	position: relative;
	margin-top: 0.85rem;
	max-width: 21ch;
	font-size: 0.88rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.88);
}

/* Evita o comportamento antigo do bloco de imagem em telas menores. */
@media (max-width: 1023px) {
	.fg-hero--banner {
		min-height: 620px;
	}

	.fg-hero--banner .fg-hero__inner {
		min-height: 620px;
		grid-template-columns: 1fr 0.72fr;
	}

	.fg-hero__offer {
		width: min(280px, 100%);
	}

	.fg-hero--banner .fg-hero__content {
		padding-block: 4rem;
	}
}

@media (max-width: 640px) {
	.fg-hero--banner,
	.fg-hero--banner .fg-hero__inner {
		min-height: 680px;
	}

	.fg-hero--banner .fg-hero__inner {
		grid-template-columns: 1fr;
		align-content: center;
		gap: 1.5rem;
		padding-block: 3rem;
	}

	.fg-hero--banner .fg-hero__content {
		padding-block: 0;
	}

	.fg-hero--banner .fg-hero__title {
		font-size: clamp(2rem, 9vw, 2.8rem);
	}

	.fg-hero--banner .fg-hero__subtitle {
		font-size: 1rem;
	}

	.fg-hero__offer {
		width: 220px;
		border-width: 5px;
		padding: 1.5rem;
	}

	.fg-hero__offer::before {
		inset: 9px;
	}

	.fg-hero__offer-label {
		font-size: 1.55rem;
	}

	.fg-hero__offer-price {
		font-size: 2.45rem;
	}

	.fg-hero__offer-note {
		font-size: 0.76rem;
		margin-top: 0.55rem;
	}
}

/* -------------------------------------------------------------------------
   24. HERO FULL-WIDTH + MAIOR LEGIBILIDADE
   ------------------------------------------------------------------------- */
.fg-hero--banner {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.fg-hero--banner .fg-hero__inner {
	max-width: none;
	padding-inline: clamp(1.25rem, 8vw, 8rem);
}

.fg-hero--banner .fg-hero__media-overlay {
	background:
		linear-gradient(90deg, rgba(18, 29, 32, 0.88) 0%, rgba(18, 29, 32, 0.60) 48%, rgba(18, 29, 32, 0.34) 100%),
		linear-gradient(180deg, rgba(10, 18, 20, 0.16), rgba(10, 18, 20, 0.46));
}

.fg-hero--banner .fg-hero__title {
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48), 0 1px 3px rgba(0, 0, 0, 0.72);
}

.fg-hero--banner .fg-hero__subtitle {
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.48);
}

@media (max-width: 640px) {
	.fg-hero--banner {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
	}

	.fg-hero--banner .fg-hero__inner {
		padding-inline: 1.25rem;
	}
}


/* -------------------------------------------------------------------------
   25. HERO — GRADIENTE DE LEGIBILIDADE NO LADO ESQUERDO
   ------------------------------------------------------------------------- */
.fg-hero--banner .fg-hero__media-overlay {
    background:
        linear-gradient(90deg,
            rgba(14, 25, 28, 0.88) 0%,
            rgba(14, 25, 28, 0.72) 24%,
            rgba(14, 25, 28, 0.48) 43%,
            rgba(14, 25, 28, 0.20) 63%,
            rgba(14, 25, 28, 0.03) 82%,
            rgba(14, 25, 28, 0) 100%),
        linear-gradient(180deg, rgba(8, 16, 18, 0.06), rgba(8, 16, 18, 0.16));
}

.fg-hero--banner .fg-hero__content {
    max-width: 760px;
}

.fg-hero--banner .fg-hero__title {
    color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.70), 0 1px 3px rgba(0, 0, 0, 0.90);
}

.fg-hero--banner .fg-hero__subtitle {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
}

@media (max-width: 640px) {
    .fg-hero--banner .fg-hero__media-overlay {
        background:
            linear-gradient(180deg,
                rgba(14, 25, 28, 0.38) 0%,
                rgba(14, 25, 28, 0.68) 55%,
                rgba(14, 25, 28, 0.82) 100%);
    }
}

/* -------------------------------------------------------------------------
   26. HERO — ACABAMENTO CINEMATOGRÁFICO / OFERTA DE CREMAÇÃO
   ------------------------------------------------------------------------- */
.fg-hero--banner .fg-hero__media-overlay {
    background:
        linear-gradient(90deg,
            rgba(7, 18, 22, 0.94) 0%,
            rgba(7, 18, 22, 0.88) 18%,
            rgba(7, 18, 22, 0.70) 38%,
            rgba(7, 18, 22, 0.43) 58%,
            rgba(7, 18, 22, 0.18) 78%,
            rgba(7, 18, 22, 0.08) 100%),
        linear-gradient(180deg,
            rgba(5, 14, 17, 0.20) 0%,
            rgba(5, 14, 17, 0.10) 42%,
            rgba(5, 14, 17, 0.28) 100%);
}

.fg-hero--banner .fg-hero__content {
    padding-top: clamp(3.5rem, 7vw, 6rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.fg-hero--banner .fg-hero__eyebrow {
    position: relative;
    z-index: 4;
    margin: 0 0 0.8rem;
    color: #72C0D3;
    font-size: clamp(0.78rem, 1.2vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.fg-hero--banner .fg-hero__title {
    font-size: clamp(2.65rem, 5vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    max-width: 13ch;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.85),
        0 1px 4px rgba(0, 0, 0, 0.95);
}

.fg-hero--banner .fg-hero__subtitle {
    max-width: 50ch;
    margin-top: 1.15rem;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
}

/* Selo com recortes decorativos, inspirado no acabamento da referência. */
.fg-hero__offer {
    width: min(350px, 100%);
    aspect-ratio: 1;
    padding: 2.7rem;
    border: 0;
    border-radius: 0;
    background: #315F67;
    clip-path: polygon(
        50% 0%, 56% 4%, 63% 2%, 69% 7%, 76% 6%, 81% 12%,
        88% 13%, 90% 20%, 96% 23%, 95% 30%, 100% 36%, 97% 43%,
        100% 50%, 96% 57%, 98% 64%, 93% 70%, 94% 77%, 87% 80%,
        84% 87%, 77% 87%, 72% 94%, 65% 92%, 59% 98%, 52% 95%,
        45% 100%, 39% 95%, 32% 97%, 27% 91%, 20% 92%, 16% 85%,
        9% 83%, 10% 76%, 4% 72%, 6% 65%, 1% 59%, 4% 52%,
        0% 45%, 4% 39%, 2% 32%, 8% 27%, 7% 20%, 14% 18%,
        18% 11%, 25% 12%, 31% 6%, 38% 8%, 44% 3%
    );
    box-shadow: none;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.36));
}

/* Anel interno do selo. */
.fg-hero__offer::before {
    inset: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.fg-hero__offer::after {
    content: "❧";
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.78);
    font-size: 2rem;
    line-height: 1;
}

.fg-hero__offer-label {
    font-size: clamp(1.8rem, 3.2vw, 2.65rem);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.fg-hero__offer-small {
    margin-top: 0.55rem;
    font-size: 1.05rem;
}

.fg-hero__offer-price {
    margin-top: 0.2rem;
    font-size: clamp(2.7rem, 5.4vw, 4rem);
    font-weight: 800;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.fg-hero__offer-note {
    margin-top: 0.95rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.fg-hero--banner .fg-hero__actions {
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.fg-hero--banner .fg-btn--primary {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1023px) {
    .fg-hero__offer {
        width: min(300px, 100%);
        padding: 2.2rem;
    }
}

@media (max-width: 640px) {
    .fg-hero--banner .fg-hero__media-overlay {
        background:
            linear-gradient(180deg,
                rgba(7, 18, 22, 0.55) 0%,
                rgba(7, 18, 22, 0.82) 48%,
                rgba(7, 18, 22, 0.92) 100%);
    }

    .fg-hero--banner .fg-hero__eyebrow {
        font-size: 0.75rem;
    }

    .fg-hero--banner .fg-hero__title {
        max-width: 11ch;
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .fg-hero__offer {
        width: 235px;
        padding: 1.65rem;
    }

    .fg-hero__offer::before {
        inset: 13px;
    }

    .fg-hero__offer::after {
        bottom: 21px;
        font-size: 1.45rem;
    }
}


/* -------------------------------------------------------------------------
   25. HERO — ACABAMENTO PREMIUM DO SELO DE CREMAÇÃO
   ------------------------------------------------------------------------- */
.fg-hero__offer {
	width: min(350px, 100%);
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 50% 42%, rgba(122, 154, 158, 0.98) 0%, rgba(72, 107, 112, 0.98) 52%, rgba(43, 69, 73, 0.99) 100%);
	border: 8px solid rgba(255, 255, 255, 0.30);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.38),
		0 0 0 2px rgba(255, 255, 255, 0.16),
		0 0 0 10px rgba(64, 91, 95, 0.20),
		inset 0 0 0 2px rgba(255, 255, 255, 0.22),
		inset 0 0 35px rgba(15, 29, 31, 0.30);
	transition: transform .25s ease, box-shadow .25s ease;
}

.fg-hero__offer:hover {
	transform: translateY(-5px) scale(1.015);
	box-shadow:
		0 34px 78px rgba(0, 0, 0, 0.42),
		0 0 0 2px rgba(255, 255, 255, 0.20),
		0 0 0 11px rgba(64, 91, 95, 0.24),
		inset 0 0 0 2px rgba(255, 255, 255, 0.25),
		inset 0 0 40px rgba(15, 29, 31, 0.28);
}

.fg-hero__offer::before {
	inset: 14px;
	border: 2px dashed rgba(255, 255, 255, 0.55);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.fg-hero__offer::after {
	content: "";
	position: absolute;
	inset: 23px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	pointer-events: none;
}

.fg-hero__offer-kicker {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin-bottom: .8rem;
	padding: .42rem .85rem;
	border: 1px solid rgba(255,255,255,.42);
	border-radius: 999px;
	background: rgba(255,255,255,.10);
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.fg-hero__offer-kicker::before,
.fg-hero__offer-kicker::after {
	content: "✦";
	font-size: .7rem;
	opacity: .9;
}

.fg-hero__offer-dot {
	position: absolute;
	z-index: 3;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,.9);
	box-shadow: 0 0 0 4px rgba(255,255,255,.10), 0 0 14px rgba(255,255,255,.32);
}

.fg-hero__offer-dot--top {
	top: 27%;
	left: 14%;
}

.fg-hero__offer-dot--bottom {
	bottom: 27%;
	right: 14%;
}

.fg-hero__offer-label {
	z-index: 2;
	font-size: clamp(1.8rem, 3.2vw, 2.55rem);
	letter-spacing: .01em;
	text-shadow: 0 2px 10px rgba(0,0,0,.20);
}

.fg-hero__offer-small {
	z-index: 2;
	font-size: .92rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .92;
}

.fg-hero__offer-price {
	z-index: 2;
	margin-top: .18rem;
	font-size: clamp(2.7rem, 5.2vw, 4rem);
	text-shadow: 0 3px 16px rgba(0,0,0,.24);
}

.fg-hero__offer-note {
	z-index: 2;
	margin-top: .85rem;
	padding-top: .75rem;
	border-top: 1px solid rgba(255,255,255,.25);
	font-size: .8rem;
	letter-spacing: .01em;
}

@media (max-width: 640px) {
	.fg-hero__offer {
		width: 235px;
		border-width: 6px;
	}

	.fg-hero__offer::before { inset: 10px; }
	.fg-hero__offer::after { inset: 17px; }
	.fg-hero__offer-kicker { font-size: .56rem; padding: .34rem .62rem; }
	.fg-hero__offer-label { font-size: 1.55rem; }
	.fg-hero__offer-small { font-size: .7rem; }
	.fg-hero__offer-price { font-size: 2.55rem; }
	.fg-hero__offer-note { font-size: .68rem; margin-top: .55rem; padding-top: .55rem; }
}
