/* ==========================================================================
   Deuxys — Design System (Saira Condensed)
   ========================================================================== */

:root {
	--lq-primary: #edf6f2;
	--lq-accent: #2fc176;
	--lq-accent-hover: #23945b;
	--lq-success: #2fc176;
	--lq-text: #edf6f2;
	--lq-muted: #9fb3aa;
	--lq-bg: #040607;
	--lq-bg-alt: #0b1213;
	--lq-bg-card: #0b1213;
	--lq-dark: #040607;
	--lq-border: #1b2b28;
	--lq-radius: 6px;
	--lq-radius-lg: 12px;
	--lq-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
	--lq-shadow-card: 0 0 0 1px var(--lq-border);
	--lq-container: 1140px;
	--lq-narrow: 720px;
	--lq-section-pad: clamp(3.5rem, 8vw, 5.5rem);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	font-family: "Saira Condensed", system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--lq-text);
	background: var(--lq-bg);
	-webkit-font-smoothing: antialiased;
	color-scheme: dark;
}

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

a { color: var(--lq-accent); text-decoration: none; transition: color 0.2s, background 0.2s, border-color 0.2s; }
a:hover { color: var(--lq-accent-hover); }

h1, h2, h3, h4 { line-height: 1.15; margin-top: 0; color: var(--lq-text); }

.lq-container {
	width: 100%;
	max-width: var(--lq-container);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}

.lq-container--narrow { max-width: var(--lq-narrow); }

/* Section titles — estilo referência */
.lq-section-title {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	font-weight: 400;
	text-align: center;
	margin: 0 auto 3rem;
	max-width: 28ch;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.lq-section-title { color: var(--lq-text); }
.lq-section-title strong { color: var(--lq-text); }

.lq-link { font-weight: 600; color: var(--lq-accent); }

/* Buttons */
.lq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.375rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--lq-radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
	text-decoration: none;
	white-space: nowrap;
}

.lq-btn--lg { padding: 0.9375rem 1.75rem; font-size: 1rem; }

.lq-btn--primary { background: var(--lq-accent); color: #072110; border-color: var(--lq-accent-hover); }
.lq-btn--primary:hover { background: var(--lq-accent-hover); border-color: var(--lq-accent-hover); color: #072110; transform: translateY(-1px); }

.lq-btn--outline { background: transparent; color: var(--lq-text); border-color: rgba(255, 255, 255, 0.25); }
.lq-btn--outline:hover { border-color: var(--lq-accent); color: var(--lq-accent); background: rgba(47, 193, 118, 0.12); }

.lq-btn--whatsapp { background: var(--lq-success); color: #fff; border-color: var(--lq-success); }
.lq-btn--whatsapp:hover { background: #1fb855; color: #fff; }

/* Header */
.lq-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--lq-border);
}

.lq-header__logo img {
	height: 36px;
	width: auto;
	filter: brightness(0) invert(1);
}

.lq-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 1rem;
}

.lq-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
}

.lq-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--lq-text);
	border-radius: 1px;
}

.lq-header__nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.lq-menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lq-menu__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.lq-menu a,
.lq-menu__parent {
	color: var(--lq-muted);
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
}

.lq-menu a:hover,
.lq-menu__parent:hover {
	color: var(--lq-text);
}

.lq-menu__toggle {
	display: none;
	width: 1.75rem;
	height: 1.75rem;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--lq-muted);
	cursor: pointer;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.lq-menu__toggle span {
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translate(-1px, -1px);
	transition: transform 0.2s ease;
}

.lq-menu__item--has-children.is-open .lq-menu__toggle span {
	transform: rotate(-135deg) translate(-1px, -1px);
}

.lq-menu__dropdown {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #0d0d0d;
	border: 1px solid var(--lq-border);
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 120;
}

.lq-menu__dropdown a {
	display: block;
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	white-space: nowrap;
}

.lq-menu__dropdown a:hover {
	background: rgba(47, 193, 118, 0.08);
	color: var(--lq-text);
}

@media (min-width: 769px) {
	.lq-menu__item--has-children:hover .lq-menu__dropdown,
	.lq-menu__item--has-children:focus-within .lq-menu__dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.lq-header__cta { font-size: 0.875rem; padding: 0.625rem 1.25rem; }

.lq-lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: -1.5rem;
}

.lq-lang-switcher__item {
	color: var(--lq-muted);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.45rem;
	border: 1px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1;
}

.lq-lang-switcher__item:hover { color: var(--lq-text); }

.lq-lang-switcher__item.is-active {
	color: var(--lq-text);
	font-weight: 700;
	border-color: var(--lq-border);
}

/* Blocks — spacing */
.lq-block { padding-block: var(--lq-section-pad); }
.lq-block.lq-logos { padding-block: 3rem; }

/* Logos */
.lq-logos__title {
	text-align: center;
	color: var(--lq-muted);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2.5rem;
	font-weight: 500;
}

.lq-logos__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: center;
	justify-items: center;
	gap: 2rem 1.5rem;
}

.lq-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 180px;
	min-height: 64px;
	padding: 0.5rem;
	background: transparent;
	transition: transform 0.2s ease;
}

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

.lq-logos__item img {
	display: block;
	max-height: 56px;
	max-width: min(150px, 100%);
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.9;
	filter: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lq-logos__item:hover img {
	opacity: 1;
	transform: scale(1.04);
}
.lq-hero {
	padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.lq-hero--bg {
	position: relative;
	width: 100%;
	min-height: clamp(420px, 65vh, 600px);
	display: flex;
	align-items: center;
	padding-block: clamp(3.5rem, 8vw, 5.5rem) clamp(2rem, 4vw, 3rem);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.lq-hero--bg .lq-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to right,
			rgba(0, 0, 0, 0.92) 0%,
			rgba(0, 0, 0, 0.8) 45%,
			rgba(0, 0, 0, 0.35) 75%,
			transparent 100%
		);
	pointer-events: none;
	z-index: 1;
}

.lq-hero--bg::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(140px, 22vh, 220px);
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.45) 35%,
		rgba(0, 0, 0, 0.82) 70%,
		#000000 100%
	);
	pointer-events: none;
	z-index: 1;
}

.lq-block.lq-hero--bg + .lq-block.lq-logos {
	margin-top: -1px;
	padding-top: 2.5rem;
}

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

.lq-hero--bg .lq-hero__inner {
	position: relative;
	z-index: 2;
}

.lq-hero--bg .lq-hero__content {
	max-width: 640px;
}

.lq-hero__title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 1.25rem;
	letter-spacing: -0.03em;
	line-height: 1.08;
}

.lq-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--lq-muted);
	margin-bottom: 2rem;
	max-width: 480px;
	line-height: 1.7;
}

.lq-hero--bg .lq-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	max-width: 540px;
}

.lq-hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }

.lq-block.lq-tech--compact { padding-block: 0 3rem; margin-top: -1.5rem; }

/* Services */
.lq-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.lq-services__card {
	display: flex;
	flex-direction: column;
	padding: 2rem 1.75rem;
	background: var(--lq-bg-card);
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
	transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
	color: inherit;
	min-height: 100%;
}

.lq-services__card:hover {
	box-shadow: var(--lq-shadow-card);
	border-color: #333333;
	transform: translateY(-2px);
}

.lq-services__icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 56px;
	margin-bottom: 1.25rem;
	background: transparent;
	border-radius: 0;
}

.lq-services__icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	display: block;
}

.lq-services__icon--api img,
.lq-services__icon--cloud img,
.lq-services__icon--ai img {
	width: 52px;
	height: 52px;
}

.lq-services__card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.lq-services__card p {
	color: var(--lq-muted);
	font-size: 0.9375rem;
	margin: 0 0 1.5rem;
	flex-grow: 1;
	line-height: 1.65;
}

.lq-services__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lq-accent);
	margin-top: auto;
}

/* Tech icons */
.lq-tech__badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem 2.75rem;
}

.lq-tech__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	min-width: 88px;
}

.lq-tech__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
}

.lq-tech__icon img {
	display: block;
	width: auto;
	height: 56px;
	max-width: 88px;
	object-fit: contain;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lq-tech__item:hover .lq-tech__icon img {
	transform: scale(1.08);
}

.lq-tech__label {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--lq-muted);
	text-align: center;
	line-height: 1.2;
}

.lq-tech--compact .lq-tech__badges {
	gap: 1.75rem 2.5rem;
}

.lq-tech--compact .lq-tech__icon {
	width: 96px;
	height: 72px;
}

.lq-tech--compact .lq-tech__icon img {
	height: 64px;
	max-width: 110px;
}

.lq-tech__item--woocommerce .lq-tech__icon {
	width: 110px;
	height: 88px;
}

.lq-tech__item--woocommerce .lq-tech__icon img {
	height: 80px;
	max-width: 110px;
}

.lq-tech--compact .lq-tech__item--woocommerce .lq-tech__icon {
	width: 120px;
	height: 92px;
}

.lq-tech--compact .lq-tech__item--woocommerce .lq-tech__icon img {
	height: 84px;
	max-width: 120px;
}

.lq-tech--compact .lq-tech__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Technologies grid — mirrors /pt/index.html#tecnologias */
.lq-technologies {
	padding-block: var(--lq-section-pad);
}

.lq-technologies__head {
	text-align: center;
	margin: 0 0 48px;
}

.lq-technologies__title {
	font-size: clamp(1.95rem, 3.8vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 16px;
}

.lq-technologies__subtitle {
	font-size: 1.2rem;
	line-height: 1.75;
	color: var(--lq-muted);
	margin: 0 auto;
	max-width: 52ch;
}

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

.lq-technologies__group {
	border: 1px solid var(--lq-border);
	border-radius: 16px;
	padding: 22px 20px 20px;
	background: rgba(255, 255, 255, 0.02);
}

.lq-technologies__group-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--lq-accent);
	margin: 0 0 14px;
}

.lq-technologies__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.lq-technologies__card {
	background: transparent;
	border: 1px solid var(--lq-border);
	border-radius: 12px;
	padding: 16px 14px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s, transform 0.2s;
	min-height: 100%;
}

.lq-technologies__card:hover {
	border-color: rgba(47, 193, 118, 0.4);
	transform: translateY(-2px);
}

.lq-technologies__icon {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	border: 1px solid var(--lq-border);
	background: rgba(47, 193, 118, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	flex-shrink: 0;
}

.lq-technologies__icon i {
	font-size: 28px;
	line-height: 1;
}

.lq-technologies__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
}

.lq-technologies__icon--woo {
	color: #c08cd6;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.lq-technologies__icon--aws i {
	font-size: 22px;
}

.lq-technologies__card h4 {
	font-size: 1.05rem;
	margin: 0 0 6px;
}

.lq-technologies__card p {
	font-size: 0.92rem;
	flex: 1;
	line-height: 1.55;
	color: var(--lq-muted);
	margin: 0;
}

.lq-technologies__card--link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.lq-technologies__card--link:hover {
	color: inherit;
}

.lq-technologies__link {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--lq-accent);
}

.lq-technologies__card--link:hover .lq-technologies__link {
	color: var(--lq-accent-hover);
}

/* Process */
.lq-process--dark {
	color: #fff;
}

.lq-process--dark .lq-section-title { color: #fff; }
.lq-process--dark .lq-section-title strong { color: #fff; }

.lq-process__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.lq-process__item {
	text-align: center;
	padding: 1rem 0.5rem;
}

.lq-process__icon {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.lq-process__item h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #fff;
}

.lq-process__item p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	margin: 0;
	line-height: 1.6;
}

.lq-process__cta { text-align: center; margin-top: 2.5rem; }

.lq-process:not(.lq-process--dark) .lq-process__list {
	grid-template-columns: 1fr;
	max-width: 640px;
	margin-inline: auto;
}

.lq-process:not(.lq-process--dark) .lq-process__item { text-align: left; display: flex; gap: 1rem; }

/* Benefits & Problems */
.lq-benefits__grid,
.lq-problems__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.lq-benefits__item,
.lq-problems__item {
	padding: 1.5rem;
	background: var(--lq-bg-card);
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
}

.lq-benefits__item h3,
.lq-problems__item h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }

.lq-benefits__item p,
.lq-problems__item p { color: var(--lq-muted); margin: 0; font-size: 0.9375rem; }

.lq-solution__content p { font-size: 1.0625rem; color: var(--lq-muted); text-align: left; line-height: 1.75; margin-bottom: 1.25rem; }
.lq-solution__content p:last-of-type { margin-bottom: 1.5rem; }

.lq-solution__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0.75rem 1.5rem;
}

.lq-solution__list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9375rem;
	color: var(--lq-text);
	line-height: 1.5;
}

.lq-solution__list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--lq-accent);
	font-weight: 700;
}

/* Cases */
.lq-cases__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.lq-cases__item {
	padding: 1.75rem;
	background: var(--lq-bg-card);
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
}

.lq-cases__logo {
	margin-bottom: 1.25rem;
	min-height: 48px;
	display: flex;
	align-items: center;
}

.lq-cases__logo img {
	max-height: 48px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}

.lq-cases__client {
	font-size: 1.125rem;
	margin-bottom: 0.375rem;
}

.lq-cases__project {
	color: var(--lq-muted);
	font-size: 0.9375rem;
	margin: 0 0 1rem;
}

.lq-cases__tags {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.lq-cases__tag {
	font-size: 0.75rem;
	padding: 0.25rem 0.625rem;
	border: 1px solid var(--lq-border);
	border-radius: 999px;
	color: var(--lq-muted);
}

/* Service checklist */
.lq-service-list__grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.875rem 1.5rem;
}

.lq-service-list__item {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9375rem;
	color: var(--lq-text);
	line-height: 1.5;
}

.lq-service-list__item::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--lq-accent);
	font-weight: 700;
}

.lq-hero--landing { padding-block: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.lq-hero--landing .lq-hero__title { font-size: clamp(1.875rem, 4vw, 2.75rem); }
.lq-hero--landing .lq-hero__inner { justify-items: center; }
.lq-hero--landing .lq-hero__content { max-width: 800px; }
.lq-hero--landing .lq-hero__subtitle { margin-inline: auto; max-width: 640px; }
.lq-hero--landing .lq-hero__actions { justify-content: center; }

.lq-process--dark {
	background: #0a0a0a;
	border-block: 1px solid var(--lq-border);
}

.lq-cta--primary {
	background: linear-gradient(180deg, #111 0%, #000 100%);
	border-block: 1px solid var(--lq-border);
	padding-block: clamp(3rem, 6vw, 4rem);
}

/* Testimonials */
.lq-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.lq-testimonials__item {
	margin: 0;
	padding: 1.75rem;
	background: var(--lq-bg-card);
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
	box-shadow: var(--lq-shadow-card);
	display: flex;
	flex-direction: column;
}

.lq-testimonials__stars {
	color: #F59E0B;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.lq-testimonials__content {
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
	color: var(--lq-text);
	flex-grow: 1;
}

.lq-testimonials__footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
}

.lq-testimonials__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lq-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
}

.lq-testimonials__footer strong { display: block; font-size: 0.875rem; color: var(--lq-text); }
.lq-testimonials__footer span { font-size: 0.8125rem; color: var(--lq-muted); }

/* FAQ */
.lq-faq__list { display: grid; gap: 0; border-top: 1px solid var(--lq-border); }

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

.lq-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	color: var(--lq-text);
}

.lq-faq__question::-webkit-details-marker { display: none; }

.lq-faq__toggle {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--lq-accent);
	transition: transform 0.2s;
}

.lq-faq__item[open] .lq-faq__toggle { transform: rotate(45deg); }

.lq-faq__answer {
	padding: 0 0 1.25rem;
	color: var(--lq-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.lq-faq__answer p { margin: 0; }

.lq-faq__cta { text-align: center; margin-top: 2.5rem; }

/* CTA block */
.lq-cta { color: #fff; text-align: center; }
.lq-cta .lq-cta__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; }
.lq-cta .lq-cta__text { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-bottom: 1.5rem; max-width: 520px; margin-inline: auto; }

/* Form */
.lq-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.lq-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.lq-form__field--full { grid-column: 1 / -1; }

.lq-form label { font-weight: 500; font-size: 0.875rem; color: var(--lq-text); }

.lq-form input,
.lq-form select,
.lq-form textarea {
	padding: 0.875rem 1rem;
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius);
	font-family: inherit;
	font-size: 0.9375rem;
	background: var(--lq-bg-card);
	color: var(--lq-text);
	transition: border-color 0.2s, box-shadow 0.2s;
	width: 100%;
}

.lq-form input::placeholder,
.lq-form textarea::placeholder { color: var(--lq-muted); }

.lq-form select option { background: var(--lq-bg-card); color: var(--lq-text); }

.lq-form input:focus,
.lq-form select:focus,
.lq-form textarea:focus {
	outline: none;
	border-color: var(--lq-accent);
	box-shadow: 0 0 0 3px rgba(242, 99, 33, 0.25);
}

.lq-form__honeypot { position: absolute; left: -9999px; }
.lq-form__privacy { font-size: 0.8125rem; color: var(--lq-muted); margin: 1rem 0 1.25rem; }

.lq-form .lq-btn--primary { width: 100%; padding: 1rem; font-size: 1rem; }

.lq-alert {
	padding: 1rem 1.25rem;
	border-radius: var(--lq-radius);
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.lq-alert--success { background: rgba(16, 185, 129, 0.15); color: #6EE7B7; border: 1px solid rgba(16, 185, 129, 0.3); }
.lq-alert--error { background: rgba(239, 68, 68, 0.15); color: #FCA5A5; border: 1px solid rgba(239, 68, 68, 0.3); }

/* Breadcrumbs */
.lq-breadcrumbs { padding: 1.5rem 0 0; font-size: 0.8125rem; }
.lq-breadcrumbs__list { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.lq-breadcrumbs__item { color: var(--lq-muted); }
.lq-breadcrumbs__item a { color: var(--lq-muted); }
.lq-breadcrumbs__item + .lq-breadcrumbs__item::before { content: '/'; margin-right: 0.5rem; color: var(--lq-border); }

/* Footer */
.lq-footer {
	color: rgba(255, 255, 255, 0.65);
	padding: 4rem 0 1.5rem;
	margin-top: 0;
	border-top: 1px solid var(--lq-border);
}

.lq-footer__brand img { filter: brightness(0) invert(1); }

.lq-footer a { color: rgba(255, 255, 255, 0.7); }
.lq-footer a:hover { color: #fff; }

.lq-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.lq-footer__brand p { margin-top: 1rem; max-width: 280px; font-size: 0.875rem; line-height: 1.65; }

.lq-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.lq-footer__social a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--lq-radius);
	font-size: 0.75rem;
	font-weight: 700;
}

.lq-footer h2 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.lq-footer ul { list-style: none; padding: 0; margin: 0; }
.lq-footer li { margin-bottom: 0.625rem; font-size: 0.875rem; }

.lq-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.8125rem;
}

/* WhatsApp float */
.lq-whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 99;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lq-success);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
	transition: transform 0.2s;
}

.lq-whatsapp-float:hover { transform: scale(1.06); color: #fff; }

/* Blog */
.lq-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.lq-post-card {
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
	overflow: hidden;
	transition: box-shadow 0.2s;
	background: var(--lq-bg-card);
}

.lq-post-card:hover { box-shadow: var(--lq-shadow-card); }

.lq-post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.lq-post-card__body { padding: 1.25rem; }
.lq-post-card__title { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.lq-post-card__title a { color: var(--lq-text); }
.lq-post-card__excerpt { color: var(--lq-muted); font-size: 0.875rem; }

.lq-post__header { margin-bottom: 2rem; padding-top: 2rem; }
.lq-post__title { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
.lq-post__meta { color: var(--lq-muted); font-size: 0.875rem; display: flex; gap: 1rem; }
.lq-post__content { font-size: 1.0625rem; line-height: 1.8; }

.lq-page__header { padding-top: 2rem; margin-bottom: 1rem; }
.lq-page__title { font-size: clamp(1.75rem, 3vw, 2.5rem); }

.lq-page__body {
	max-width: var(--lq-narrow);
	margin-inline: auto;
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.lq-page__body > .wp-block-heading,
.lq-page__body h2,
.lq-page__body h3 {
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

.lq-page__body > .wp-block-heading:first-child,
.lq-page__body h2:first-child {
	margin-top: 0;
}

.lq-page__body p {
	color: var(--lq-muted);
	font-size: 1.0625rem;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.lq-page__body strong { color: var(--lq-text); }

.lq-page__body ul {
	color: var(--lq-muted);
	font-size: 1.0625rem;
	line-height: 1.75;
	padding-left: 1.25rem;
	margin: 0 0 1.5rem;
}

.lq-page__body li { margin-bottom: 0.75rem; }
.lq-page__body li strong { color: var(--lq-text); }

.lq-page__breadcrumbs {
	padding-top: 1.5rem;
	font-size: 0.8125rem;
	color: var(--lq-muted);
}

.lq-page--about .lq-page__about-wrap {
	padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}

.lq-page--about .lq-page__breadcrumbs,
.lq-page--about .lq-breadcrumbs {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* About page — team section (mirrors /pt/index.html#quem-somos) */
.lq-about--team {
	padding: 0;
}

.lq-about--team .lq-team-layout {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: clamp(2rem, 4vw, 3rem);
	width: 100%;
}

.lq-about--team .lq-leader-list {
	flex: 1 1 520px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
	min-width: 0;
}

.lq-about--team .lq-team-text {
	flex: 1 1 320px;
	min-width: min(100%, 360px);
	max-width: 100%;
}

.lq-leader-item {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.lq-leader-photo {
	width: 100%;
	aspect-ratio: 257 / 318;
	object-fit: cover;
	object-position: center top;
	border-radius: 10px;
	border: 1px solid var(--lq-border);
	display: block;
}

.lq-leader-text {
	padding-top: 16px;
}

.lq-leader-name {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--lq-text);
	margin: 0 0 6px;
}

.lq-leader-role {
	font-size: 1.05rem;
	color: var(--lq-muted);
	margin: 0 0 14px;
}

.lq-leader-contact {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lq-leader-contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--lq-border);
	color: var(--lq-muted);
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lq-leader-contact a:hover {
	color: var(--lq-accent);
	border-color: var(--lq-accent);
	background: rgba(47, 193, 118, 0.08);
}

.lq-team-text h2 {
	font-size: clamp(1.95rem, 3.8vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 20px;
	text-align: left;
}

.lq-about--team .lq-team-text h2 {
	margin-top: 0;
}

.lq-team-desc {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.8;
	margin: 0 0 24px;
	color: var(--lq-muted);
	max-width: 52ch;
}

.lq-team-text .lq-btn {
	margin-top: 4px;
}

.lq-about__hero {
	display: grid;
	grid-template-columns: minmax(260px, 380px) 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding-block: clamp(1rem, 3vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.lq-about__media {
	margin: 0;
	position: relative;
}

.lq-about__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 45%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
	border-radius: 0 0 var(--lq-radius-lg) var(--lq-radius-lg);
	pointer-events: none;
}

.lq-about__media img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	object-position: center top;
	border-radius: var(--lq-radius-lg);
	border: 1px solid var(--lq-border);
}

.lq-about__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--lq-accent);
	margin: 0 0 0.75rem;
}

.lq-about__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin: 0 0 0.5rem;
}

.lq-about__role {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--lq-muted);
	margin: 0 0 1.25rem;
}

.lq-about__lead {
	font-size: clamp(1.0625rem, 2vw, 1.1875rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 2rem;
	max-width: 52ch;
}

.lq-about__lead strong { color: var(--lq-accent); }

.lq-about__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--lq-border);
}

.lq-about__stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.lq-about__stat-value {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--lq-text);
}

.lq-about__stat-label {
	font-size: 0.75rem;
	color: var(--lq-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.lq-about__story {
	max-width: var(--lq-narrow);
	margin-inline: auto;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lq-about__section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
	text-align: center;
}

.lq-about__section-lead {
	text-align: center;
	color: var(--lq-muted);
	margin: -0.75rem 0 2rem;
	font-size: 1.0625rem;
}

.lq-about__prose p {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: var(--lq-muted);
	margin: 0 0 1.25rem;
}

.lq-about__prose p:last-child { margin-bottom: 0; }

.lq-about__highlight {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	background: rgba(242, 99, 33, 0.08);
	border: 1px solid rgba(242, 99, 33, 0.25);
	border-left: 3px solid var(--lq-accent);
	border-radius: var(--lq-radius-lg);
}

.lq-about__highlight p {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
}

.lq-about__highlight strong { color: var(--lq-text); }

.lq-about__pillars-wrap {
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lq-about__pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.lq-about__pillar {
	padding: 1.75rem;
	background: var(--lq-bg-card);
	border: 1px solid var(--lq-border);
	border-radius: var(--lq-radius-lg);
}

.lq-about__pillar-icon {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--lq-accent);
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.lq-about__pillar h4 {
	font-size: 1.0625rem;
	margin: 0 0 0.625rem;
}

.lq-about__pillar p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--lq-muted);
}

.lq-about__closing {
	max-width: var(--lq-narrow);
	margin-inline: auto;
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid var(--lq-border);
}

.lq-about__closing-text {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--lq-muted);
	margin: 0 0 2rem;
}

.lq-404 { text-align: center; padding: 6rem 0; }

/* Responsive */
@media (max-width: 1024px) {
	.lq-services__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
	.lq-technologies__groups { grid-template-columns: 1fr; }
	.lq-technologies__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lq-logos__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.25rem; }
	.lq-logos__item img { max-height: 48px; }
	.lq-process__list { grid-template-columns: repeat(2, 1fr); }
	.lq-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
	.lq-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.lq-header__toggle { display: flex; }

	.lq-header__nav {
		position: fixed;
		inset: 76px 0 auto 0;
		background: var(--lq-bg);
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem;
		border-bottom: 1px solid var(--lq-border);
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s, opacity 0.25s;
		gap: 1.5rem;
	}

	.lq-header__nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.lq-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 1rem; }
	.lq-menu__item { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
	.lq-menu__item--has-children { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "link toggle" "dropdown dropdown"; align-items: center; }
	.lq-menu__item--has-children .lq-menu__parent { grid-area: link; }
	.lq-menu__item--has-children .lq-menu__toggle { display: inline-flex; grid-area: toggle; }
	.lq-menu__dropdown {
		position: static;
		grid-area: dropdown;
		min-width: 0;
		width: 100%;
		margin-top: 0.25rem;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		padding-left: 0.5rem;
	}
	.lq-menu__item--has-children.is-open .lq-menu__dropdown { display: block; }
	.lq-header__cta { width: 100%; text-align: center; }
	.lq-lang-switcher { margin-left: 0; justify-content: center; }

	.lq-hero--bg {
		min-height: clamp(380px, 55vh, 520px);
		background-position: center;
	}

	.lq-hero--bg .lq-hero__overlay {
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.75) 0%,
			rgba(0, 0, 0, 0.55) 40%,
			transparent 100%
		);
	}

	.lq-hero--bg::after {
		height: clamp(100px, 18vh, 160px);
	}

	.lq-hero__subtitle { max-width: none; }

	.lq-about__hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lq-about__media {
		max-width: 320px;
		margin-inline: auto;
	}

	.lq-about__lead { margin-inline: auto; }

	.lq-about__stats {
		justify-content: center;
	}

	.lq-about__pillars {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-inline: auto;
	}

	.lq-team-layout {
		flex-direction: column;
		gap: 36px;
	}

	.lq-about--team .lq-leader-list {
		flex-basis: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.lq-about--team .lq-team-text {
		flex-basis: 100%;
		max-width: none;
	}

	.lq-about--team .lq-team-desc {
		max-width: none;
	}

	.lq-logos__grid { grid-template-columns: repeat(2, 1fr); }
	.lq-logos__item { min-height: 56px; padding: 0.25rem; }
	.lq-logos__item img { max-height: 48px; }

	.lq-process__list { grid-template-columns: 1fr 1fr; }
	.lq-form__grid { grid-template-columns: 1fr; }
	.lq-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.lq-process__list { grid-template-columns: 1fr; }

	.lq-about--team .lq-leader-list {
		grid-template-columns: 1fr;
		max-width: 440px;
		margin-inline: auto;
	}

	.lq-about--team .lq-team-text {
		text-align: center;
	}

	.lq-about--team .lq-team-text h2 {
		text-align: center;
	}

	.lq-about--team .lq-team-text .lq-btn {
		width: 100%;
		max-width: 320px;
	}

	.lq-technologies__groups {
		grid-template-columns: 1fr;
	}

	.lq-technologies__grid {
		grid-template-columns: 1fr;
	}
}
