/*
Theme Name: Dexprag
Theme URI: https://dexpragnf.com.br
Author: Dexprag
Description: Tema personalizado para o site da Dexprag (V2).
Version: 0.7.5
Requires PHP: 8.0
License: Proprietary
Text Domain: dexprag
*/

/* ==========================================================================
   Design tokens — ver DESIGN.md
   ========================================================================== */

:root {
	--color-primary: #ed1c24;
	--color-primary-strong: #db2c34;
	--color-primary-deep: #c4151c;
	--color-accent: #fc3b00;
	--color-black: #040708;
	--color-graphite: #1f2124;
	--color-slate: #54595f;
	--color-mist: #7a7a7a;
	--color-border: #d5d8dc;
	--color-smoke: #f7f7f7;
	--color-white: #ffffff;
	--color-whatsapp: #25d366;
	--color-whatsapp-deep: #15803d;

	--font-display: "Roboto Slab", Georgia, serif;
	--font-body: "Roboto", Arial, sans-serif;

	--container: 1200px;
	--radius: 6px;
	--shadow-soft: 0 8px 24px rgba(4, 7, 8, 0.08);
	--shadow-lift: 0 14px 34px rgba(4, 7, 8, 0.16);
	--header-h: 88px;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--color-graphite);
	background: var(--color-white);
}

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

h1, h2, h3 {
	font-family: var(--font-display);
	margin: 0;
	line-height: 1.15;
}

p {
	margin: 0;
}

:focus-visible {
	outline: 2px solid var(--color-primary-strong);
	outline-offset: 2px;
}

.site-topbar :focus-visible,
.site-header :focus-visible,
.hero :focus-visible,
.whatsapp-float:focus-visible {
	outline-color: var(--color-white);
}

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

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

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

.icon {
	width: 1.1em;
	height: 1.1em;
	flex-shrink: 0;
	vertical-align: -0.18em;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: var(--color-white);
	color: var(--color-black);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lift);
}

/* ==========================================================================
   Botões
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 26px;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lg {
	padding: 17px 34px;
	font-size: 17px;
}

.btn-primary {
	background: var(--color-primary-strong);
	color: var(--color-white);
}

.btn-primary:hover {
	background: var(--color-primary-deep);
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
}

.btn:active {
	transform: translateY(0) scale(0.98);
}

.btn-primary:active {
	background: var(--color-primary-deep);
	box-shadow: none;
}

.btn-ghost {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
	border-color: var(--color-white);
	background: rgba(255, 255, 255, 0.1);
}

/* Botão secundário sobre fundos claros (ver DESIGN.md) */
.btn-outline {
	background: var(--color-white);
	color: var(--color-graphite);
	border-color: var(--color-border);
}

.btn-outline:hover {
	border-color: var(--color-primary);
	color: var(--color-primary-deep);
	background: var(--color-white);
}

/* ==========================================================================
   Topbar
   ========================================================================== */

.site-topbar {
	background: linear-gradient(90deg, var(--color-primary-deep), var(--color-primary-strong));
	color: var(--color-white);
	font-size: 13.5px;
	font-weight: 500;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Lista de cidades não pode encolher (o flex comprimia e invadia os ícones) */
.topbar-regions {
	flex: none;
	font-size: 12.5px;
	white-space: nowrap;
}

/* Fallback em degraus: a lista completa só cabe a partir de ~1000px;
   abaixo disso entra só a cobertura, e o rótulo do WhatsApp sai a ≤640px */
.topbar-regions-short {
	display: none;
}

@media (max-width: 1000px) {
	.topbar-regions-full {
		display: none;
	}

	.topbar-regions-short {
		display: inline;
	}
}

@media (max-width: 640px) {
	.topbar-label {
		display: none;
	}
}

.topbar-item a {
	display: inline-flex;
	align-items: center;
	padding: 11px 4px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.topbar-item a:hover {
	color: var(--color-white);
	text-decoration-thickness: 2px;
}

.topbar-social {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

/* Área de toque de 44px sem mudar o tamanho visual do ícone */
.topbar-social::after {
	content: "";
	position: absolute;
	inset: -9px;
	border-radius: 50%;
}

.topbar-social .icon {
	width: 14px;
	height: 14px;
	vertical-align: 0;
}

.topbar-social:hover {
	background: rgba(255, 255, 255, 0.32);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #000;
	transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(4, 7, 8, 0.45);
}

/* Header sticky não fica sob a barra de admin do WP para usuários logados */
body.admin-bar .site-header {
	top: var(--wp-admin--admin-bar--height, 32px);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: var(--header-h);
}

.site-brand {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
}

.site-brand img {
	width: 190px;
	height: auto;
}

/* Navegação */

.site-nav {
	margin-left: auto;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-menu > li {
	position: relative;
}

.nav-menu a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 15.5px;
	font-weight: 500;
	border-radius: var(--radius);
	transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu > li > a::after {
	content: "";
	width: 7px;
	height: 7px;
	margin-left: 2px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.7;
	transition: transform 0.2s ease;
}

.nav-menu > li.menu-item-has-children > a::after {
	display: inline-block;
}

.nav-menu li:not(.menu-item-has-children) > a::after {
	display: none;
}

.nav-menu a:hover,
.nav-menu > li.current-menu-item > a {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.08);
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.14);
}

/* Dropdown */

.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 460px;
	padding: 10px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px 8px;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: var(--shadow-lift);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-menu .sub-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

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

.nav-menu .sub-menu a {
	color: var(--color-graphite);
	font-size: 15px;
	padding: 10px 14px;
	border-radius: var(--radius);
	overflow-wrap: break-word;
}

.nav-menu .sub-menu a:hover {
	background: var(--color-smoke);
	color: var(--color-primary);
}

/* Contato + CTA do header */

.header-cta {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: 8px;
}

.header-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
}

/* Recorte irregular de pincelada — ecoa o X pintado da hero */
.header-phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: none;
	background: var(--color-primary);
	color: var(--color-white);
	clip-path: polygon(5% 16%, 98% 2%, 95% 86%, 0% 98%);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-phone-icon .icon {
	width: 19px;
	height: 19px;
}

.header-phone:hover .header-phone-icon {
	background: var(--color-primary-strong);
	transform: rotate(-3deg);
}

.header-phone-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.header-phone-text small {
	font-size: 11.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.02em;
}

.header-phone-text strong {
	font-size: 16.5px;
	font-weight: 700;
	white-space: nowrap;
}

.header-btn {
	white-space: nowrap;
}

.header-btn:hover {
	transform: none;
}

/* Toggle mobile */

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
}

.nav-toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--color-white);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 42px - var(--header-h));
	/* Suporte a barras dinâmicas do mobile (iOS Safari) */
	min-height: calc(100svh - 42px - var(--header-h));
	padding: 90px 0 150px;
	background: var(--color-black);
	overflow: hidden;
}

.hero-media {
	position: absolute;
	inset: 0;
	background-image: url("assets/hero.jpg");
	background-size: cover;
	background-position: 72% center;
}

/* Phones carregam a variante de 960px (39 KB) em vez da de 1920px (120 KB) */
@media (max-width: 640px) {
	.hero-media {
		background-image: url("assets/hero-mobile.jpg");
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 7, 8, 0.97) 0%, rgba(4, 7, 8, 0.88) 38%, rgba(4, 7, 8, 0.55) 68%, rgba(4, 7, 8, 0.28) 100%),
		linear-gradient(0deg, rgba(4, 7, 8, 0.9) 0%, rgba(4, 7, 8, 0) 40%);
}

/* Assinatura: o X vermelho do logo, em pincelada sutil */

.hero-x {
	position: absolute;
	right: 3%;
	top: 4%;
	width: clamp(160px, 20vw, 320px);
	fill: var(--color-primary);
	opacity: 0.1;
	transform: rotate(8deg);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero-content {
	max-width: 640px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left;
	max-width: 100%;
}

.hero-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

.hero-title {
	margin: 26px 0 20px;
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 800;
	color: var(--color-white);
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.hero-title em {
	font-style: normal;
	color: var(--color-primary);
	white-space: nowrap;
}

.hero-subtitle {
	max-width: 540px;
	margin-bottom: 34px;
	font-size: clamp(17px, 1.6vw, 20px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	overflow-wrap: break-word;
}

.hero-subtitle strong {
	color: var(--color-white);
	font-weight: 700;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}

/* Chips de confiança — texto puro, sem contêiner de vidro */

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
}

.hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14.5px;
	font-weight: 500;
}

.hero-chip .icon {
	color: var(--color-primary);
	width: 17px;
	height: 17px;
}

/* Divisor curvo para a próxima seção */

.hero-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	line-height: 0;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: clamp(40px, 6vw, 90px);
	fill: var(--color-smoke);
}

/* Animação de entrada */

.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-actions,
.hero-chips {
	animation: rise 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}

.hero-title { animation-delay: 0.08s; }
.hero-subtitle { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }
.hero-chips { animation-delay: 0.32s; }

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero-eyebrow, .hero-title, .hero-subtitle, .hero-actions, .hero-chips { animation: none; }
	.hero-eyebrow-dot { animation: none; }
	.btn,
	.btn-primary,
	.whatsapp-float,
	.nav-menu .sub-menu,
	.site-header,
	.product-card,
	.service-card,
	.service-card::before,
	.service-icon,
	.service-link .icon,
	.pest-card,
	.pest-card .pest-media img,
	.pest-arrow {
		transition-duration: 0.01ms;
	}
}

/* ==========================================================================
   Produtos — cards de tratamento sobre fundo fumaça
   ========================================================================== */

.products {
	background: var(--color-smoke);
	padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 8.5vw, 104px);
	/* Compensa header sticky ao navegar por âncora (/#tratamentos) */
	scroll-margin-top: calc(var(--header-h) + 42px);
}

.section-head {
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 60px);
	text-align: center;
}

.section-title {
	margin: 0 0 14px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(29px, 3.6vw, 38px);
	line-height: 1.15;
	letter-spacing: -0.5px;
	color: var(--color-black);
}

.section-title em {
	font-style: normal;
	color: var(--color-primary);
}

.section-lede {
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-slate);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.product-card {
	display: flex;
	flex-direction: column;
	padding: 34px 30px 30px;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-icon {
	width: 46px;
	height: 46px;
	color: var(--color-primary);
}

.product-name {
	margin: 18px 0 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	color: var(--color-black);
}

.product-tagline {
	margin: 0 0 20px;
	font-size: 15.5px;
	line-height: 1.5;
	color: var(--color-slate);
}

.product-price {
	display: flex;
	flex-direction: column;
	padding: 18px 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.product-price-label {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-slate);
}

.product-price-value {
	display: flex;
	align-items: baseline;
	gap: 3px;
	margin: 4px 0 0;
	font-family: var(--font-display);
	color: var(--color-primary-deep);
}

.price-currency {
	font-size: 20px;
	font-weight: 700;
}

.price-amount {
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
}

.price-cents {
	font-size: 20px;
	font-weight: 700;
}

/* Unidade junto ao número grande (ex.: "30 min") — mesmo peso do cifrão */
.price-unit {
	font-size: 20px;
	font-weight: 700;
}

/* Link secundário do card de tratamento: página do serviço */
.product-more {
	margin: 0 0 18px;
}

.product-card--featured .product-more {
	color: var(--color-white);
}

.product-promo {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 10px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-slate);
}

.product-promo .icon {
	width: 15px;
	height: 15px;
}

/* Card em destaque: Preto Dexprag, desconto na pincelada */

.product-card--featured {
	background: var(--color-black);
	box-shadow: 0 14px 34px rgba(4, 7, 8, 0.28);
}

.product-card--featured .product-name {
	color: var(--color-white);
}

.product-card--featured .product-tagline {
	color: rgba(255, 255, 255, 0.72);
}

.product-deal {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* Pincelada (ver DESIGN.md) — variação do recorte, gesto diagonal mantido */
.product-deal-swash {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 104px;
	height: 86px;
	background: var(--color-primary-strong);
	color: var(--color-white);
	clip-path: polygon(6% 8%, 100% 0%, 94% 94%, 0% 100%);
}

.product-deal-swash small {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.product-deal-swash strong {
	font-family: var(--font-display);
	font-size: 35px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
}

.product-deal-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 0;
}

.product-deal-text strong {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-white);
}

.product-deal-text span {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.72);
}

.product-benefits {
	flex: 1;
	margin: 20px 0 24px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15.5px;
	line-height: 1.45;
	color: var(--color-graphite);
}

.product-benefits .icon {
	margin-top: 2px;
	color: var(--color-primary);
	width: 18px;
	height: 18px;
}

.product-card--featured .product-benefits li {
	color: rgba(255, 255, 255, 0.88);
}

.product-cta {
	justify-content: center;
	width: 100%;
}

.product-card--featured .product-icon {
	color: var(--color-primary);
}

@media (max-width: 940px) {
	.products-grid {
		grid-template-columns: min(100%, 560px);
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.product-card {
		padding: 28px 22px 24px;
	}

	.price-amount {
		font-size: 40px;
	}
}

/* ==========================================================================
   Serviços — cards por audiência sobre fundo branco (ritmo: fumaça → branco)
   ========================================================================== */

.services {
	background: var(--color-smoke);
	padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 8.5vw, 104px);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px 30px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Filete vermelho revelado no hover — cor chapada, sem glow */
.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lift);
	border-color: transparent;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 52px;
	height: 52px;
	color: var(--color-primary);
	transition: transform 0.25s ease;
}

.service-card:hover .service-icon {
	transform: translateY(-3px);
}

.service-name {
	margin: 20px 0 10px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	color: var(--color-black);
}

.service-text {
	flex: 1;
	margin: 0 0 22px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--color-slate);
}

.service-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--color-primary-deep);
}

.service-link .icon {
	transition: transform 0.2s ease;
}

.service-link:hover .icon {
	transform: translateX(4px);
}

@media (max-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.service-card {
		padding: 28px 22px 24px;
	}
}

/* Diretório de pragas — seção própria, com as menos comuns atrás de "ver todas" */

.pests {
	background: var(--color-white);
	padding: clamp(56px, 8vw, 96px) 0 clamp(60px, 8.5vw, 104px);
	/* Compensa header sticky ao navegar por âncora (#pragas) */
	scroll-margin-top: calc(var(--header-h) + 42px);
}

.pests-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

/* Sem JS as 14 pragas aparecem; com JS o diretório nasce recolhido em 8 */
.pests-grid.is-collapsed .pest-card:nth-child(n + 9) {
	display: none;
}

.pests-actions {
	margin-top: 34px;
	text-align: center;
}

.pests-toggle[hidden] {
	display: none;
}

.pest-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pest-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lift);
	border-color: transparent;
}

.pest-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 5 / 4;
}

.pest-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.pest-card:hover .pest-media img {
	transform: scale(1.06);
}

.pest-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex: 1;
	padding: 16px 20px;
}

.pest-name {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	line-height: 1.25;
	color: var(--color-black);
	transition: color 0.2s ease;
}

.pest-card:hover .pest-name {
	color: var(--color-primary-deep);
}

.pest-arrow {
	display: inline-flex;
	flex: none;
	width: 20px;
	height: 20px;
	color: var(--color-slate);
	transition: transform 0.2s ease, color 0.2s ease;
}

.pest-card:hover .pest-arrow {
	transform: translateX(4px);
	color: var(--color-primary-deep);
}

@media (max-width: 1100px) {
	.pests-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.pests-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.pest-body {
		padding: 12px 14px;
	}

	.pest-name {
		font-size: 17px;
	}

	.pest-arrow {
		width: 18px;
		height: 18px;
	}
}

/* ==========================================================================
   Orçamento — bloco dividido: intro escura com foto + painel vermelho do form
   ========================================================================== */

.quote {
	background: var(--color-white);
	padding: 0 0 clamp(72px, 9vw, 120px);
	/* Compensa header sticky (e barra de admin) ao navegar por âncora */
	scroll-margin-top: calc(var(--header-h) + 42px);
}

.quote-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 24px 54px rgba(4, 7, 8, 0.22);
}

/* Coluna esquerda: foto com overlay escuro, na linguagem da hero */

.quote-intro {
	position: relative;
	display: flex;
	align-items: center;
	padding: clamp(40px, 5vw, 64px) clamp(28px, 3.5vw, 48px);
	background: var(--color-black);
	overflow: hidden;
}

.quote-intro-media {
	position: absolute;
	inset: 0;
	background-image: url("assets/hero.jpg");
	background-size: cover;
	background-position: 30% center;
}

.quote-intro-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(4, 7, 8, 0.9) 0%, rgba(4, 7, 8, 0.78) 100%),
		linear-gradient(90deg, rgba(4, 7, 8, 0.55) 0%, rgba(4, 7, 8, 0.2) 100%);
}

.quote-intro-content {
	position: relative;
	z-index: 1;
	max-width: 420px;
}

.quote-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.quote-eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
	animation: breathe 2s ease-in-out infinite;
}

.quote-title {
	margin: 18px 0 14px;
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--color-white);
}

.quote-title em {
	font-style: normal;
	color: var(--color-primary);
}

.quote-lede {
	margin: 0 0 26px;
	font-size: 16.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}

.quote-lede strong {
	color: var(--color-white);
}

.quote-points {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin: 0 0 30px;
}

.quote-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}

.quote-points .icon {
	flex: none;
	margin-top: 2px;
	width: 17px;
	height: 17px;
	color: var(--color-primary);
}

/* Coluna direita: painel vermelho com o formulário (embed HubSpot estilizado via main.js) */

.quote-panel {
	position: relative;
	padding: clamp(32px, 4vw, 52px) clamp(24px, 3.5vw, 48px);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* Formulário próprio — envio via wa.me (sem integrações externas) */

.quote-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 18px;
}

.quote-field {
	margin: 0 0 18px;
	border: 0;
	padding: 0;
	min-width: 0;
}

.quote-label {
	display: block;
	margin: 0 0 8px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--color-white);
}

.quote-req {
	color: rgba(255, 255, 255, 0.75);
}

.quote-input {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--color-graphite);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-textarea {
	height: auto;
	padding: 12px 14px;
	line-height: 1.5;
	resize: vertical;
	min-height: 110px;
}

.quote-input::placeholder {
	color: var(--color-mist);
}

.quote-input:focus {
	outline: none;
	border-color: var(--color-black);
	box-shadow: inset 0 0 0 1px var(--color-black);
}

.quote-input[aria-invalid="true"] {
	border-color: var(--color-black);
	box-shadow: inset 0 0 0 1px var(--color-black);
}

.quote-error {
	margin: 7px 0 0;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--color-white);
}

/* Checkboxes como chips brancos — toque único da seção */

.quote-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
}

.quote-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.quote-check:hover {
	border-color: var(--color-black);
}

.quote-check input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.quote-check-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--color-border);
	border-radius: 3px;
	background: var(--color-white);
	color: transparent;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.quote-check-box .icon {
	width: 13px;
	height: 13px;
}

.quote-check input:checked + .quote-check-box {
	background: var(--color-primary-deep);
	border-color: var(--color-primary-deep);
	color: var(--color-white);
}

.quote-check input:focus-visible + .quote-check-box {
	outline: 2px solid var(--color-black);
	outline-offset: 2px;
}

.quote-check-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-graphite);
}

/* Envio: botão branco (variante alto contraste) com ícone do WhatsApp */

.quote-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	width: 100%;
	padding: 16px 26px;
	margin-top: 4px;
	background: var(--color-white);
	border: 0;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 16.5px;
	font-weight: 700;
	color: var(--color-primary-deep);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.quote-submit .quote-submit-wpp {
	width: 20px;
	height: 20px;
	color: var(--color-whatsapp-deep);
}

.quote-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(4, 7, 8, 0.18);
}

.quote-submit:active {
	transform: translateY(0) scale(0.98);
	box-shadow: none;
}

.quote-submit[disabled] {
	cursor: wait;
	opacity: 0.75;
	transform: none;
	box-shadow: none;
}

.quote-note {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
}

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

	.quote-intro-content {
		max-width: 560px;
	}
}

@media (max-width: 560px) {
	.quote-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ==========================================================================
   Footer — Preto Dexprag com divisor curvo e X em pincelada ao fundo
   ========================================================================== */

.site-footer {
	position: relative;
	background: var(--color-black);
	color: rgba(255, 255, 255, 0.75);
	padding-top: clamp(48px, 6vw, 80px);
}

/* FAQ da home — acordeão nativo reusando .serv-faq das páginas de serviço */

.faq {
	background: var(--color-smoke);
	padding: clamp(56px, 8vw, 96px) 0 clamp(76px, 9vw, 116px);
}

.faq-list {
	max-width: 780px;
	margin: 0 auto;
}

/* Links nas respostas (o reset global deixa o <a> cor-herdada e sem marca) */
.faq .serv-faq p a {
	color: var(--color-primary-deep);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
}

.faq .serv-faq p a:hover {
	color: var(--color-primary);
}

.faq-close {
	max-width: 780px;
	margin: 26px auto 0;
	text-align: center;
	font-size: 15.5px;
	color: var(--color-slate);
}

.faq-close a {
	font-weight: 700;
	color: var(--color-primary-deep);
}

/* Divisor curvo: arco preto subindo sobre a seção branca anterior */
.footer-wave {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	line-height: 0;
	pointer-events: none;
}

.footer-wave svg {
	display: block;
	width: 100%;
	height: clamp(40px, 6vw, 90px);
	fill: var(--color-black);
}

/* Recorte que mantém a pincelada X confinada ao footer */
.footer-x-clip {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

/* Assinatura: X vermelho do logo em pincelada sutil */
.footer-x {
	position: absolute;
	right: 2%;
	top: 10%;
	width: clamp(200px, 24vw, 360px);
	fill: var(--color-primary);
	opacity: 0.07;
	transform: rotate(8deg);
}

.footer-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
	gap: clamp(36px, 4.5vw, 64px);
	padding-bottom: clamp(48px, 6vw, 76px);
}

.footer-brand {
	display: inline-flex;
	margin: 0 0 20px;
}

.footer-brand img {
	width: 200px;
	height: auto;
}

.footer-desc {
	max-width: 46ch;
	margin: 0;
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.66);
}

.footer-title {
	margin: 0 0 22px;
	padding-left: 14px;
	border-left: 3px solid var(--color-primary);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17.5px;
	line-height: 1.3;
	color: var(--color-white);
}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-list a {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-size: 15.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.footer-list a .icon {
	width: 18px;
	height: 18px;
	color: var(--color-primary);
	transition: color 0.2s ease;
}

.footer-list a:hover {
	color: var(--color-white);
}

.footer-list a:hover .icon {
	color: var(--color-primary-strong);
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 15.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item .icon {
	flex: none;
	margin-top: 3px;
	width: 18px;
	height: 18px;
	color: var(--color-primary);
}

.footer-contact-item a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.footer-contact-item a:hover {
	color: var(--color-white);
}

/* Barra final de copyright */

.footer-bar {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0;
}

.footer-bar p {
	margin: 0;
	text-align: center;
	font-size: 13.5px;
	color: var(--color-mist);
}

@media (max-width: 940px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-x-clip {
		display: none;
	}
}

@media (max-width: 560px) {
	.footer-brand img {
		width: 164px;
	}

	.footer-bar p {
		font-size: 12.5px;
	}
}

/* ==========================================================================
   Páginas internas de serviço/praga (template-servico.php)
   ========================================================================== */

.serv-hero {
	position: relative;
	background: var(--color-black);
	color: var(--color-white);
	padding: clamp(56px, 7vw, 96px) 0 clamp(88px, 10vw, 130px);
	overflow: hidden;
}

.serv-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 7, 8, 0.95) 0%, rgba(4, 7, 8, 0.78) 55%, rgba(4, 7, 8, 0.45) 100%),
		linear-gradient(0deg, rgba(4, 7, 8, 0.9) 0%, rgba(4, 7, 8, 0) 45%);
}

.serv-hero-x {
	position: absolute;
	right: 3%;
	top: 6%;
	width: clamp(160px, 18vw, 300px);
	fill: var(--color-primary);
	opacity: 0.1;
	transform: rotate(8deg);
	pointer-events: none;
}

.serv-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.serv-breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 26px;
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
}

.serv-breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s ease;
}

.serv-breadcrumb a:hover {
	color: var(--color-primary);
}

.serv-kicker {
	display: inline-block;
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.serv-title {
	max-width: 640px;
	margin: 0 0 18px;
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1.12;
	color: var(--color-white);
	text-wrap: balance;
}

.serv-title em {
	font-style: normal;
	color: var(--color-primary);
}

.serv-lead {
	max-width: 560px;
	margin: 0 0 30px;
	font-size: clamp(16.5px, 1.4vw, 18.5px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.serv-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Hero dividido: texto à esquerda, foto da praga à direita */

.serv-hero--split .serv-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.serv-hero-figure {
	margin: 0;
	position: relative;
}

/* Sem onda: a faixa de estatísticas faz o papel de separador */
.serv-hero--nowave {
	padding-bottom: clamp(48px, 6vw, 80px);
}

.serv-hero-figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
	box-shadow: 0 24px 54px rgba(4, 7, 8, 0.55);
}

.serv-hero-wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	z-index: 2;
	line-height: 0;
}

.serv-hero-wave svg {
	display: block;
	width: 100%;
	height: clamp(40px, 6vw, 90px);
	fill: var(--color-white);
}

/* Blocos de conteúdo */

.serv-section {
	padding: clamp(52px, 7vw, 92px) 0;
	scroll-margin-top: calc(var(--header-h) + 42px);
}

.serv-section--smoke {
	background: var(--color-smoke);
}

.serv-section--flush {
	padding: 0;
}

.serv-h2 {
	margin: 0 0 clamp(24px, 3.5vw, 40px);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(26px, 3vw, 34px);
	letter-spacing: -0.5px;
	line-height: 1.2;
	color: var(--color-black);
}

.serv-h2--center {
	text-align: center;
}

/* Texto corrido */

.serv-texto {
	max-width: 780px;
}

.serv-texto p {
	margin: 0 0 16px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-slate);
}

.serv-texto p:last-of-type {
	margin-bottom: 0;
}

.serv-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-size: 15.5px;
	font-weight: 700;
	color: var(--color-primary-deep);
}

.serv-text-link .icon {
	transition: transform 0.2s ease;
}

.serv-text-link:hover .icon {
	transform: translateX(4px);
}

/* Cards com ícone */

.serv-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.serv-card {
	padding: 26px 22px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.serv-card .icon {
	width: 40px;
	height: 40px;
	color: var(--color-primary);
}

.serv-card h3 {
	margin: 14px 0 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17.5px;
	color: var(--color-black);
}

.serv-card p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--color-slate);
}

/* Checklist com check vermelho */

.serv-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 32px;
	margin: 0;
	padding: 0;
	list-style: none;
	max-width: 860px;
}

.serv-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-graphite);
}

.serv-checklist .icon {
	flex: none;
	margin-top: 3px;
	width: 19px;
	height: 19px;
	color: var(--color-primary);
}

/* Passos numerados */

.serv-passos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(24px, 3vw, 40px);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: serv-passo;
}

.serv-passo-num {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 44px;
	line-height: 1;
	color: var(--color-primary);
}

.serv-passos h3 {
	margin: 12px 0 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18.5px;
	color: var(--color-black);
}

.serv-passos p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-slate);
}

/* Faixa de estatísticas (gradiente de marca, como a home) */

.serv-stats {
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	padding: clamp(36px, 5vw, 56px) 0;
}

.serv-stats-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.serv-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.serv-stat:first-child {
	border-left: 0;
}

.serv-stat strong {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(36px, 4vw, 52px);
	line-height: 1;
	color: var(--color-white);
}

.serv-stat span {
	font-size: 14.5px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

/* FAQ em acordeão nativo */

.serv-faq-wrap {
	max-width: 780px;
}

.serv-faq {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
	margin-bottom: 14px;
}

.serv-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 22px;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--color-black);
	list-style: none;
}

.serv-faq summary::-webkit-details-marker {
	display: none;
}

.serv-faq-icon {
	position: relative;
	flex: none;
	width: 16px;
	height: 16px;
}

.serv-faq-icon::before,
.serv-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--color-primary);
	border-radius: 2px;
	transition: transform 0.2s ease;
}

.serv-faq-icon::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2.5px;
}

.serv-faq-icon::after {
	top: 0;
	left: 7px;
	width: 2.5px;
	height: 16px;
}

.serv-faq[open] .serv-faq-icon::after {
	transform: scaleY(0);
}

.serv-faq[open] summary {
	color: var(--color-primary-deep);
}

.serv-faq p {
	margin: 0;
	padding: 0 22px 20px;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--color-slate);
}

/* Links para os outros serviços */

.serv-related {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.serv-related-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 20px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-graphite);
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.serv-related-chip .icon {
	width: 15px;
	height: 15px;
	color: var(--color-primary);
	transition: transform 0.2s ease;
}

.serv-related-chip:hover {
	border-color: var(--color-primary);
	color: var(--color-primary-deep);
	transform: translateY(-2px);
}

.serv-related-chip:hover .icon {
	transform: translateX(3px);
}

/* Banda final de conversão */

.serv-cta {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	padding: clamp(48px, 6vw, 76px) 0;
}

.serv-cta-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.serv-cta-title {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(26px, 3.2vw, 36px);
	letter-spacing: -0.5px;
	color: var(--color-white);
}

.serv-cta-title em {
	font-style: normal;
	white-space: nowrap;
}

.serv-cta-text {
	margin: 0;
	max-width: 480px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

/* Botão branco emprestado do padrão .quote-submit */
.serv-cta-btn {
	width: auto;
}

.serv-cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

@media (max-width: 1100px) {
	.serv-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 940px) {
	.serv-hero--split .serv-hero-inner {
		grid-template-columns: 1fr;
	}

	.serv-hero-figure {
		max-width: 520px;
	}

	.serv-hero-x {
		opacity: 0.07;
	}

	.serv-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 560px) {
	.serv-cards {
		grid-template-columns: 1fr;
	}

	.serv-checklist {
		grid-template-columns: 1fr;
	}

	.serv-stats-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.serv-stat {
		border-left: 0;
	}

	.serv-hero-actions .btn,
	.serv-cta-actions .btn {
		flex: 1 1 auto;
		justify-content: center;
	}
}

/* ==========================================================================
   WhatsApp flutuante
   ========================================================================== */

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 100px;
	background: var(--color-whatsapp-deep);
	color: var(--color-white);
	font-weight: 700;
	font-size: 15.5px;
	box-shadow: 0 10px 30px rgba(4, 7, 8, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
	background: #10733a;
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(4, 7, 8, 0.4);
}

.whatsapp-float:active {
	transform: translateY(-1px) scale(0.98);
}

.whatsapp-float .icon {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1100px) {
	/* Telefone some do header: a topbar e o float já carregam o contato,
	   e logo + menu + CTA não cabem na faixa de ~941-960px */
	.header-phone {
		display: none;
	}

	.site-brand img {
		width: 160px;
	}
}

@media (max-width: 940px) {
	:root {
		--header-h: 72px;
	}

	.nav-toggle {
		display: flex;
		margin-left: auto;
	}

	.header-cta .header-btn {
		display: none;
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0;
		background: #000;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 24px 40px rgba(4, 7, 8, 0.5);
		padding: 12px 24px 20px;
		display: none;
	}

	.site-nav.is-open {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.nav-menu a {
		padding: 13px 10px;
		font-size: 16px;
		justify-content: space-between;
	}

	.nav-menu > li > a::after {
		display: none !important;
	}

	.nav-menu .sub-menu {
		position: static;
		min-width: 0;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.05);
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		padding: 4px 8px;
	}
	.nav-menu li.is-open > .sub-menu {
		display: block;
	}

	.nav-menu .sub-menu a {
		color: rgba(255, 255, 255, 0.8);
	}

	.nav-menu .sub-menu a:hover {
		background: rgba(255, 255, 255, 0.08);
		color: var(--color-white);
	}

	/* No mobile os dropdowns abrem por toque (classe .is-open via JS) */
	.hero {
		padding: 64px 0 120px;
	}

	/* Paisagem em telefones: menos padding para evitar scroll excessivo */
	@media (orientation: landscape) {
		.hero {
			min-height: 0;
			padding: 48px 0 90px;
		}

		.hero-title {
			font-size: clamp(30px, 7vh, 44px);
		}
	}

	.hero-media {
		background-position: 68% center;
	}

	.hero-overlay {
		background:
			linear-gradient(90deg, rgba(4, 7, 8, 0.94) 0%, rgba(4, 7, 8, 0.82) 100%),
			linear-gradient(0deg, rgba(4, 7, 8, 0.9) 0%, rgba(4, 7, 8, 0) 40%);
	}

	.hero-x {
		opacity: 0.08;
		top: auto;
		bottom: 12%;
	}

	.hero-actions .btn {
		flex: 1 1 auto;
		justify-content: center;
	}

	.whatsapp-float span {
		display: none;
	}

	.whatsapp-float {
		padding: 16px;
	}

	.topbar-message {
		font-size: 12.5px;
	}
}

@media (max-width: 560px) {
	.topbar-regions {
		display: none;
	}

	.topbar-label {
		display: none;
	}

	.topbar-inner {
		justify-content: center;
	}

	.site-brand img {
		width: 132px;
	}

	.header-phone {
		display: none;
	}

	.hero-title {
		font-size: clamp(31px, 9vw, 38px);
	}

	.hero-chips {
		gap: 10px 20px;
	}

	.hero-chip {
		font-size: 13.5px;
	}
}
