:root {
	--color-navy: #0b1832;
	--color-navy-soft: #13264a;
	--color-blue: #0a4f83;
	--color-blue-bright: #0d6aa8;
	--color-yellow: #ffdc19;
	--color-yellow-dark: #e0b900;
	--color-white: #ffffff;
	--color-ink: #14213b;
	--color-muted: #5f6b7d;
	--color-line: #dfe5ed;
	--color-soft: #f4f7fb;
	--color-soft-blue: #eaf4fb;
	--color-success: #168a54;
	--shadow-sm: 0 8px 24px rgba(11, 24, 50, 0.08);
	--shadow-md: 0 18px 48px rgba(11, 24, 50, 0.13);
	--shadow-lg: 0 28px 70px rgba(11, 24, 50, 0.2);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--container: 1180px;
	--header-height: 86px;
	--transition: 180ms ease;
}

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

html {
	max-width: 100%;
	overflow-x: hidden;
	scroll-behavior: auto;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
	max-width: 100%;
	margin: 0;
	overflow-x: hidden;
	background: var(--color-white);
	color: var(--color-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

img {
	height: auto;
}

.header-logo,
.hero-logo,
.about-logo,
.footer-logo {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

iframe {
	border: 0;
}

a {
	color: var(--color-blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--color-navy);
}

p,
ul,
ol {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.7em;
	color: var(--color-navy);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.45rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
	font-size: 1.18rem;
}

::selection {
	background: var(--color-yellow);
	color: var(--color-navy);
}

:focus-visible {
	outline: 3px solid var(--color-white);
	outline-offset: 2px;
	box-shadow: 0 0 0 6px var(--color-navy);
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.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;
}

.screen-reader-text:focus {
	top: 10px;
	left: 10px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	overflow: visible;
	clip: auto;
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: 800;
	white-space: normal;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
}

.skip-link {
	position: fixed !important;
}

.section {
	padding-block: clamp(74px, 9vw, 120px);
}

.section-anchor {
	scroll-margin-top: calc(var(--header-height) + 18px);
}

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

.section--navy {
	background:
		radial-gradient(circle at 10% 20%, rgba(13, 106, 168, 0.35), transparent 30%),
		linear-gradient(135deg, var(--color-navy), #081226);
	color: var(--color-white);
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(36px, 5vw, 58px);
}

.section-heading p {
	color: var(--color-muted);
	font-size: 1.08rem;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr);
	gap: 48px;
	align-items: end;
	max-width: none;
}

.section-heading--split > p {
	margin-bottom: 10px;
}

.eyebrow {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px;
	color: var(--color-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow > span {
	color: var(--color-yellow-dark);
	font-size: 0.72em;
}

.eyebrow--light {
	color: #b9dcf5;
}

.button {
	display: inline-flex;
	max-width: 100%;
	min-height: 48px;
	padding: 13px 22px;
	gap: 9px;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1.2;
	overflow-wrap: anywhere;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--color-navy);
	color: var(--color-white);
	box-shadow: 0 10px 24px rgba(11, 24, 50, 0.2);
}

.button--primary:hover {
	background: var(--color-blue);
	color: var(--color-white);
	box-shadow: 0 14px 30px rgba(10, 79, 131, 0.25);
}

.button--secondary {
	border-color: var(--color-line);
	background: var(--color-white);
	color: var(--color-navy);
}

.button--secondary:hover {
	border-color: var(--color-blue);
	background: var(--color-soft-blue);
	color: var(--color-blue);
}

.button--yellow {
	background: var(--color-yellow);
	color: var(--color-navy);
	box-shadow: 0 10px 28px rgba(255, 220, 25, 0.2);
}

.button--yellow:hover {
	background: var(--color-white);
	color: var(--color-navy);
}

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--color-white);
}

.button--outline-light:hover {
	border-color: var(--color-white);
	background: var(--color-white);
	color: var(--color-navy);
}

.button--large {
	min-height: 54px;
	padding: 15px 25px;
}

.button--compact {
	min-height: 42px;
	padding: 10px 18px;
	font-size: 0.87rem;
}

.text-link {
	color: var(--color-blue);
	font-weight: 800;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}

.text-link--arrow span {
	display: inline-block;
	transition: transform var(--transition);
}

.text-link--arrow:hover span {
	transform: translateX(4px);
}

/* Cabeçalho */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	min-height: var(--header-height);
	border-bottom: 1px solid rgba(223, 229, 237, 0.72);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(15px);
	transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 28px rgba(11, 24, 50, 0.09);
}

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

.header-inner {
	display: flex;
	min-height: var(--header-height);
	gap: 25px;
	align-items: center;
	justify-content: space-between;
}

.site-branding {
	display: flex;
	flex: 0 0 auto;
	gap: 11px;
	align-items: center;
}

.brand-link {
	display: inline-flex;
	flex: 0 0 auto;
	text-decoration: none;
}

.header-logo {
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	color: var(--color-navy);
	line-height: 1.1;
	text-decoration: none;
}

.brand-copy:hover {
	color: var(--color-navy);
}

.brand-name {
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.brand-tagline {
	margin-top: 5px;
	color: var(--color-muted);
	font-size: 0.68rem;
	font-weight: 650;
}

.main-navigation {
	margin-left: auto;
}

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

.primary-menu a {
	display: inline-flex;
	min-height: 44px;
	padding: 11px 10px;
	align-items: center;
	color: var(--color-ink);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
	border-radius: 9px;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
	background: var(--color-soft);
	color: var(--color-blue);
}

.header-actions {
	display: flex;
	flex: 0 0 auto;
	gap: 14px;
	align-items: center;
}

.header-phone {
	display: inline-flex;
	gap: 7px;
	align-items: center;
	color: var(--color-navy);
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.header-phone:hover {
	color: var(--color-blue);
}

.menu-toggle,
.mobile-nav-header,
.mobile-nav-actions {
	display: none;
}

/* Hero */
.hero {
	position: relative;
	min-height: min(760px, calc(100svh - var(--header-height)));
	padding-block: clamp(54px, 6vw, 88px);
	overflow: hidden;
	background:
		linear-gradient(110deg, rgba(234, 244, 251, 0.82), rgba(255, 255, 255, 0.96) 55%, rgba(255, 246, 187, 0.45)),
		var(--color-white);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	min-height: 610px;
	gap: clamp(45px, 7vw, 90px);
	align-items: center;
}

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

.hero h1 {
	margin-bottom: 24px;
	max-width: 740px;
}

.hero-subtitle {
	max-width: 610px;
	margin-bottom: 30px;
	color: var(--color-muted);
	font-size: clamp(1.08rem, 1.7vw, 1.3rem);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.hero-indicators {
	display: flex;
	padding: 0;
	margin-bottom: 23px;
	gap: 11px 20px;
	flex-wrap: wrap;
	list-style: none;
}

.hero-indicators li {
	display: flex;
	gap: 7px;
	align-items: center;
	color: var(--color-navy);
	font-size: 0.84rem;
	font-weight: 750;
}

.hero-indicators span {
	display: inline-grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border-radius: 50%;
	background: #def5e9;
	color: var(--color-success);
	font-size: 0.72rem;
	font-weight: 900;
}

.delivery-note {
	display: flex;
	max-width: 610px;
	padding: 13px 16px;
	margin-bottom: 0;
	gap: 9px;
	align-items: flex-start;
	border: 1px solid #d7e4ed;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-muted);
	font-size: 0.8rem;
	line-height: 1.5;
}

.delivery-note span {
	flex: 0 0 auto;
	color: var(--color-blue);
	font-weight: 900;
}

.hero-visual {
	position: relative;
	display: grid;
	min-height: 550px;
	place-items: center;
}

.hero-logo-card {
	position: relative;
	width: min(100%, 460px);
	padding: 25px 35px 30px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 38px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-lg);
	text-align: center;
	transform: rotate(1.5deg);
}

.hero-logo-card::before {
	position: absolute;
	inset: 13px;
	z-index: -1;
	border: 2px dashed rgba(10, 79, 131, 0.14);
	border-radius: 29px;
	content: "";
}

.hero-card-kicker {
	display: inline-flex;
	padding: 7px 13px;
	margin-bottom: 5px;
	border-radius: 999px;
	background: var(--color-yellow);
	color: var(--color-navy);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-logo {
	width: min(100%, 365px);
	margin: -5px auto -4px;
	object-fit: contain;
}

.hero-card-caption {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.hero-card-caption strong {
	color: var(--color-navy);
	font-size: 1.12rem;
}

.hero-card-caption span {
	color: var(--color-muted);
	font-size: 0.79rem;
}

.hero-delivery-badge {
	position: absolute;
	right: -15px;
	bottom: 52px;
	display: flex;
	padding: 13px 17px;
	gap: 11px;
	align-items: center;
	border: 4px solid var(--color-white);
	border-radius: 16px;
	background: var(--color-navy);
	color: var(--color-white);
	box-shadow: var(--shadow-md);
	transform: rotate(-3deg);
}

.hero-delivery-badge__icon {
	font-size: 1.7rem;
}

.hero-delivery-badge > span:last-child {
	display: flex;
	flex-direction: column;
	font-size: 0.72rem;
	line-height: 1.3;
}

.hero-delivery-badge strong {
	color: var(--color-yellow);
	font-size: 0.93rem;
}

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

.hero-orb--one {
	top: -170px;
	right: -100px;
	width: 470px;
	height: 470px;
	background: rgba(255, 220, 25, 0.16);
}

.hero-orb--two {
	bottom: -220px;
	left: -180px;
	width: 470px;
	height: 470px;
	background: rgba(13, 106, 168, 0.1);
}

/* Benefícios */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.benefit-card {
	padding: 29px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-shadow: 0 1px 0 rgba(11, 24, 50, 0.03);
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
	border-color: #b8d5e8;
	box-shadow: var(--shadow-sm);
	transform: translateY(-4px);
}

.card-icon,
.product-card__icon,
.contact-card__icon {
	display: inline-grid;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	place-items: center;
	border-radius: 14px;
	background: var(--color-soft-blue);
	color: var(--color-blue);
	font-size: 1.35rem;
}

.benefit-card h3 {
	margin-bottom: 9px;
}

.benefit-card p {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 0.91rem;
}

/* Marcas */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.brand-card {
	position: relative;
	display: grid;
	min-height: 105px;
	padding: 15px;
	overflow: hidden;
	place-items: center;
	border: 1px solid var(--color-line);
	border-radius: 15px;
	background: var(--color-white);
	color: var(--color-navy);
	font-size: 1.06rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	text-align: center;
	box-shadow: 0 5px 18px rgba(11, 24, 50, 0.04);
}

.brand-card::after {
	position: absolute;
	right: -20px;
	bottom: -28px;
	width: 65px;
	height: 65px;
	border: 10px solid rgba(255, 220, 25, 0.38);
	border-radius: 50%;
	content: "";
}

.brand-card span {
	position: relative;
	z-index: 1;
}

.section-action {
	margin-top: 28px;
	text-align: center;
}

/* Produtos */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.product-card {
	display: flex;
	min-height: 300px;
	padding: 30px;
	flex-direction: column;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:nth-child(even) .product-card__icon {
	background: #fff6bd;
	color: #8a6d00;
}

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

.product-card__content {
	flex: 1 1 auto;
}

.product-card__content p {
	color: var(--color-muted);
	font-size: 0.92rem;
}

.product-card__link {
	display: flex;
	min-height: 44px;
	padding-top: 16px;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--color-line);
	color: var(--color-blue);
	font-size: 0.87rem;
	font-weight: 850;
	text-decoration: none;
}

.product-card__link:hover {
	color: var(--color-navy);
}

/* CTA */
.cta-band {
	padding-block: clamp(55px, 7vw, 82px);
	background:
		linear-gradient(125deg, rgba(13, 106, 168, 0.8), rgba(11, 24, 50, 0.98)),
		var(--color-navy);
	color: var(--color-white);
}

.cta-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.cta-band h2 {
	margin-bottom: 12px;
	color: var(--color-white);
}

.cta-band p:not(.eyebrow) {
	max-width: 730px;
	margin-bottom: 0;
	color: #d3dfec;
}

/* Sobre */
.about-grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(50px, 8vw, 100px);
	align-items: center;
}

.about-visual {
	position: relative;
	min-height: 535px;
	padding: 38px;
	border-radius: 34px;
	background:
		linear-gradient(140deg, rgba(255, 220, 25, 0.92), rgba(255, 240, 143, 0.75)),
		var(--color-yellow);
}

.about-visual::before {
	position: absolute;
	inset: 20px;
	border: 2px dashed rgba(11, 24, 50, 0.18);
	border-radius: 25px;
	content: "";
}

.about-visual__logo {
	position: relative;
	display: grid;
	height: 100%;
	min-height: 455px;
	place-items: center;
}

.about-logo {
	width: min(100%, 375px);
	filter: drop-shadow(0 20px 25px rgba(11, 24, 50, 0.14));
}

.about-stat {
	position: absolute;
	right: -24px;
	bottom: 48px;
	display: flex;
	max-width: 220px;
	padding: 17px 20px;
	flex-direction: column;
	border: 4px solid var(--color-white);
	border-radius: 16px;
	background: var(--color-navy);
	color: var(--color-white);
	box-shadow: var(--shadow-md);
}

.about-stat strong {
	color: var(--color-yellow);
	font-size: 1.16rem;
}

.about-stat span {
	font-size: 0.78rem;
}

.about-content > h2 {
	margin-bottom: 22px;
}

.about-text {
	color: var(--color-muted);
	font-size: 1.02rem;
}

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

.check-list {
	display: grid;
	padding: 0;
	margin: 28px 0 34px;
	gap: 12px;
	list-style: none;
}

.check-list li {
	display: flex;
	gap: 11px;
	align-items: center;
	color: var(--color-navy);
	font-weight: 750;
}

.check-list span {
	display: inline-grid;
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: #def5e9;
	color: var(--color-success);
	font-size: 0.75rem;
}

/* Depoimentos */
.testimonials-empty {
	max-width: 620px;
	padding: 34px;
	margin-inline: auto;
	border: 1px dashed #b7c6d5;
	border-radius: var(--radius-md);
	background: var(--color-white);
	color: var(--color-muted);
	text-align: center;
}

.testimonials-empty > span {
	color: var(--color-yellow-dark);
	font-family: Georgia, serif;
	font-size: 3.4rem;
	line-height: 1;
}

.testimonials-empty p {
	margin: 8px 0 0;
}

/* Localização */
.location-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
	gap: clamp(45px, 7vw, 85px);
	align-items: center;
}

.location h2 {
	color: var(--color-white);
}

.location-address {
	display: flex;
	max-width: 510px;
	margin: 24px 0 30px;
	gap: 13px;
	align-items: flex-start;
	color: #d8e2ef;
	font-size: 1.03rem;
}

.location-address span {
	display: inline-grid;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 220, 25, 0.14);
	color: var(--color-yellow);
}

.location-actions {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
}

.map-frame {
	min-height: 420px;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.12);
	border-radius: 25px;
	background: var(--color-white);
	box-shadow: var(--shadow-lg);
}

.map-frame iframe {
	width: 100%;
	height: 420px;
}

.map-placeholder {
	display: flex;
	min-height: 404px;
	padding: 40px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
		repeating-linear-gradient(45deg, #e9eef4 0, #e9eef4 2px, transparent 2px, transparent 22px);
	color: var(--color-muted);
	text-align: center;
}

.map-placeholder__pin {
	display: inline-grid;
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
	place-items: center;
	border-radius: 50% 50% 50% 10%;
	background: var(--color-yellow);
	color: var(--color-navy);
	font-size: 2rem;
	transform: rotate(-45deg);
}

.map-placeholder__pin::first-letter {
	transform: rotate(45deg);
}

.map-placeholder strong {
	color: var(--color-navy);
	font-size: 1.25rem;
}

.map-placeholder p {
	max-width: 420px;
	margin: 10px auto 18px;
}

/* Contato */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 17px;
}

.contact-card {
	display: grid;
	min-height: 115px;
	padding: 22px;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-white);
	color: var(--color-navy);
	text-decoration: none;
	transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
	border-color: #b9d4e5;
	color: var(--color-navy);
	box-shadow: var(--shadow-sm);
	transform: translateY(-3px);
}

.contact-card--featured {
	border-color: var(--color-navy);
	background: var(--color-navy);
	color: var(--color-white);
}

.contact-card--featured:hover {
	border-color: var(--color-blue);
	background: var(--color-blue);
	color: var(--color-white);
}

.contact-card__icon {
	width: 44px;
	height: 44px;
	margin: 0;
	font-size: 1.1rem;
}

.contact-card--featured .contact-card__icon {
	background: var(--color-yellow);
	color: var(--color-navy);
}

.contact-card > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.contact-card strong,
.contact-card small {
	overflow-wrap: anywhere;
	white-space: normal;
}

.contact-card small {
	color: var(--color-muted);
	font-size: 0.75rem;
}

.contact-card--featured small {
	color: #d6e2ef;
}

.contact-address {
	max-width: 760px;
	margin: 31px auto 0;
	color: var(--color-muted);
	text-align: center;
}

/* Conteúdo interno */
.content-shell {
	min-height: 60vh;
	padding-block: clamp(64px, 8vw, 105px);
	background: var(--color-soft);
}

.content-container {
	padding: clamp(28px, 5vw, 62px);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.content-container--narrow {
	max-width: 880px;
}

.content-header {
	padding-bottom: 25px;
	margin-bottom: 34px;
	border-bottom: 1px solid var(--color-line);
}

.content-header h1 {
	margin-bottom: 12px;
	font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.content-header p,
.archive-description {
	margin-bottom: 0;
	color: var(--color-muted);
}

.entry-content {
	color: #334158;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content > .alignwide {
	max-width: 100%;
}

.entry-content > .alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	transform: none;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.entry-thumbnail {
	margin: 0 0 34px;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.entry-footer {
	padding-top: 24px;
	margin-top: 35px;
	border-top: 1px solid var(--color-line);
	color: var(--color-muted);
	font-size: 0.88rem;
}

.entry-tags a {
	font-weight: 750;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-white);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.03);
}

.post-card__body {
	padding: 25px;
}

.post-card__meta {
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: 0.78rem;
}

.post-card__title {
	font-size: 1.35rem;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--color-muted);
	font-size: 0.92rem;
}

.navigation.pagination {
	margin-top: 38px;
}

.nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-grid;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 12px;
	place-items: center;
	border: 1px solid var(--color-line);
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-navy);
	font-weight: 800;
	text-decoration: none;
}

.page-numbers.current {
	border-color: var(--color-navy);
	background: var(--color-navy);
	color: var(--color-white);
}

.no-results {
	padding: 45px;
	border: 1px dashed #b7c6d5;
	border-radius: var(--radius-md);
	text-align: center;
}

/* Comentários */
.comments-area {
	padding-top: 42px;
	margin-top: 48px;
	border-top: 1px solid var(--color-line);
}

.comments-title,
.comment-reply-title {
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.comment-list,
.comment-list .children {
	padding: 0;
	list-style: none;
}

.comment-list .children {
	padding-left: 28px;
}

.comment-body {
	padding: 22px;
	margin-bottom: 18px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-soft);
}

.comment-meta {
	margin-bottom: 14px;
}

.comment-author {
	display: flex;
	gap: 12px;
	align-items: center;
}

.comment-author .avatar {
	border-radius: 50%;
}

.comment-metadata {
	margin-top: 8px;
	font-size: 0.78rem;
}

.comment-content {
	overflow-wrap: anywhere;
}

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

.reply {
	margin-top: 12px;
	font-size: 0.84rem;
	font-weight: 800;
}

.comment-form {
	display: grid;
	gap: 16px;
}

.comment-form p {
	margin: 0;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	color: var(--color-navy);
	font-size: 0.86rem;
	font-weight: 800;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid #b9c5d2;
	border-radius: 10px;
	background: var(--color-white);
	color: var(--color-ink);
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-form-cookies-consent {
	display: flex;
	gap: 9px;
	align-items: flex-start;
}

.comment-form-cookies-consent label {
	margin: 0;
	font-weight: 500;
}

.comment-form .submit {
	display: inline-flex;
	min-height: 48px;
	padding: 13px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--color-navy);
	color: var(--color-white);
	font-weight: 850;
	cursor: pointer;
}

.not-found-page {
	display: grid;
	min-height: 70vh;
	padding-block: 70px;
	place-items: center;
	background: var(--color-soft);
}

.not-found-card {
	max-width: 760px;
	padding: clamp(35px, 7vw, 75px);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: var(--shadow-md);
	text-align: center;
}

.not-found-code {
	margin-bottom: 8px;
	color: var(--color-yellow-dark);
	font-size: clamp(4.5rem, 13vw, 8rem);
	font-weight: 950;
	line-height: 0.9;
}

.not-found-card > p:not(.not-found-code) {
	color: var(--color-muted);
}

.not-found-actions {
	display: flex;
	margin-top: 29px;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.legal-page .entry-content {
	font-size: 1rem;
}

/* Rodapé */
.site-footer {
	padding-top: 70px;
	background: #071126;
	color: #bfcbd9;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.9fr 0.65fr;
	padding-bottom: 55px;
	gap: clamp(40px, 7vw, 90px);
}

.footer-brand {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.footer-logo {
	width: 90px;
	height: 90px;
	flex: 0 0 auto;
	object-fit: contain;
}

.footer-brand strong {
	display: block;
	margin: 7px 0 8px;
	color: var(--color-white);
	font-size: 1.25rem;
}

.footer-brand p {
	max-width: 360px;
	margin-bottom: 0;
	font-size: 0.88rem;
}

.footer-column h2,
.footer-widget__title {
	margin-bottom: 18px;
	color: var(--color-white);
	font-size: 0.94rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

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

.footer-list li {
	margin-bottom: 10px;
	font-size: 0.87rem;
}

.footer-list a,
.footer-widgets a {
	color: #dce7f1;
	text-decoration: none;
}

.footer-list a:hover,
.footer-widgets a:hover {
	color: var(--color-yellow);
	text-decoration: underline;
}

.footer-widgets {
	display: grid;
	padding-block: 35px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
	display: flex;
	min-height: 75px;
	padding-block: 17px;
	gap: 25px;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.78rem;
}

.legal-links {
	display: flex;
	gap: 10px 20px;
	flex-wrap: wrap;
}

.legal-links a {
	color: #dce7f1;
	font-size: 0.78rem;
	text-decoration: none;
}

.legal-links a:hover {
	color: var(--color-yellow);
}

/* WhatsApp flutuante */
.whatsapp-float {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
	z-index: 850;
	display: inline-flex;
	min-height: 56px;
	padding: 8px 18px 8px 8px;
	gap: 10px;
	align-items: center;
	border: 3px solid var(--color-white);
	border-radius: 999px;
	background: #128c52;
	color: var(--color-white);
	font-size: 0.84rem;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
	transition: transform var(--transition), background-color var(--transition), opacity var(--transition), visibility var(--transition);
}

.whatsapp-float:hover {
	background: #0d7644;
	color: var(--color-white);
	transform: translateY(-3px);
}

.whatsapp-float.is-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transform: translateY(18px);
}

.whatsapp-float__icon {
	display: inline-grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	font-size: 1.25rem;
}

/* Classes clássicas exigidas pelo WordPress */
.alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.gallery-caption {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 0.82rem;
	text-align: center;
}

.sticky {
	border-top: 4px solid var(--color-yellow);
}

.bypostauthor > .comment-body {
	border-color: #a9cce2;
	background: var(--color-soft-blue);
}

.is-style-pethouse-yellow .wp-block-button__link {
	background: var(--color-yellow);
	color: var(--color-navy);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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