/**
 * Telefer theme — main styles
 * Based on Figma design: Telefer Home
 */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
	--telefer-primary-dark: #15325f;
	--telefer-primary: #0051d5;
	--telefer-primary-blue: #004ca0;
	--telefer-accent: #fdb813;
	--telefer-danger: #fd1313;
	--telefer-whatsapp: #25d366;
	--telefer-footer-bg: #1a1f2b;
	--telefer-neutral-50: #ffffff;
	--telefer-neutral-200: #dddddd;
	--telefer-neutral-400: #c7c7cc;
	--telefer-neutral-600: #94a3b8;
	--telefer-neutral-800: #1b1b1d;
	--telefer-neutral-900: #374b6c;
	--telefer-cta-bg: #194182;
	--telefer-text-muted: #d3d3d3;
	--telefer-text-light: #dbeafe;
	--telefer-link: #3b82f6;
	--telefer-icon-bg: #dae2fd;
	--telefer-glass: rgba(255, 255, 255, 0.04);
	--telefer-border: rgba(255, 255, 255, 0.16);
	--telefer-container: 1280px;
	--telefer-container-pad: 24px;
	--telefer-section-pad-y: 120px;
	--telefer-font-heading: 'Montserrat', sans-serif;
	--telefer-font-body: 'Inter', sans-serif;
	--telefer-font-alt: 'Manrope', sans-serif;
	--telefer-radius-sm: 12px;
	--telefer-radius-md: 16px;
	--telefer-radius-pill: 9999px;
	--telefer-header-height: 70px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--telefer-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	background: var(--telefer-primary-dark);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.telefer-home {
	overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, p {
	margin: 0;
}

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

.telefer-container {
	width: 100%;
	max-width: calc(var(--telefer-container) + var(--telefer-container-pad) * 2);
	margin: 0 auto;
	padding-left: var(--telefer-container-pad);
	padding-right: var(--telefer-container-pad);
}

.telefer-text-accent {
	color: var(--telefer-accent);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.telefer-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: var(--telefer-radius-pill);
	font-family: var(--telefer-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
	white-space: nowrap;
}

.telefer-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.telefer-btn--sm {
	padding: 8px 24px;
	font-size: 14px;
	font-family: var(--telefer-font-alt);
	font-weight: 700;
	line-height: 24px;
}

.telefer-btn--primary {
	background: var(--telefer-primary);
	color: var(--telefer-neutral-50);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.telefer-btn--accent {
	background: var(--telefer-accent);
	color: #000;
}

.telefer-btn--outline {
	background: transparent;
	color: var(--telefer-primary);
	border: 1px solid var(--telefer-primary);
}

.telefer-btn--outline-white {
	background: transparent;
	color: var(--telefer-neutral-50);
	border: 1px solid var(--telefer-neutral-50);
}

/* --------------------------------------------------------------------------
   Header — Figma node 11088:1572
   -------------------------------------------------------------------------- */
.telefer-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 16px 0;
	backdrop-filter: blur(2.75px);
	-webkit-backdrop-filter: blur(2.75px);
	background: transparent;
}

.telefer-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: clamp(24px, 5.83vw, 112px);
	padding-right: clamp(24px, 5.83vw, 112px);
}

/* Logo + nav agrupados à esquerda (gap 40px) */
.telefer-header__left {
	display: flex;
	align-items: center;
	gap: 40px;
}

.telefer-header__logo {
	display: flex;
	flex-shrink: 0;
	line-height: 0;
}

.telefer-header__logo img {
	width: 155px;
	height: 38px;
	object-fit: contain;
}

.telefer-nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.telefer-nav__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--telefer-neutral-50);
	border-radius: 2px;
}

.telefer-nav__list {
	display: flex;
	align-items: center;
	gap: 24px;
}

.telefer-nav__list a {
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: var(--telefer-neutral-50);
	white-space: nowrap;
	transition: opacity 0.2s;
}

.telefer-nav__list a.is-active {
	color: rgba(204, 204, 204, 0.5);
}

.telefer-nav__list a:hover {
	opacity: 0.85;
}

.telefer-nav__cta-item {
	display: none;
	width: 100%;
}

.telefer-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 14px 24px;
	border-radius: var(--telefer-radius-pill);
	background: var(--telefer-primary);
	color: var(--telefer-neutral-50);
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: opacity 0.2s, transform 0.2s;
}

.telefer-nav__cta:hover {
	opacity: 0.92;
}

/* CTA — botão direita */
.telefer-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 8px 24px;
	border-radius: var(--telefer-radius-pill);
	background: var(--telefer-primary);
	color: var(--telefer-neutral-50);
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	white-space: nowrap;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: opacity 0.2s, transform 0.2s;
}

.telefer-header__cta:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Section shared
   -------------------------------------------------------------------------- */
.telefer-section {
	position: relative;
	overflow: hidden;
}

.telefer-section__header {
	text-align: center;
	margin-bottom: 56px;
}

.telefer-section__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
}

.telefer-section__title--center {
	text-align: center;
}

.telefer-section__subtitle {
	margin-top: 16px;
	font-size: 18px;
	line-height: 28.8px;
	color: var(--telefer-neutral-200);
	max-width: 754px;
	margin-left: auto;
	margin-right: auto;
}

.telefer-section__subtitle--bold {
	font-weight: 700;
}

/* --------------------------------------------------------------------------
   Hero — Figma node 11088:1002 (1920×800 canvas)
   -------------------------------------------------------------------------- */
.telefer-hero {
	position: relative;
	width: 100%;
	max-width: 1920px;
	height: 800px;
	min-height: 800px;
	margin: 0 auto;
	padding: 160px clamp(24px, 18.33vw, 352px) 32px;
	background:
		linear-gradient(160.89277128363716deg, rgba(0, 0, 0, 0.4) 24.507%, rgba(0, 0, 0, 0) 68.31%),
		rgb(21, 50, 95);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Visual layer: geométrico (atrás) + homem (frente) */
.telefer-hero__visuals {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

/* logo-bg — faixas geométricas (camada 1) */
.telefer-hero__bg-logo {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.telefer-hero__bg-logo-frame {
	position: absolute;
	left: 55.1328125%;
	top: -491.56px;
	width: 1324.809px;
	height: 1256.016px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.telefer-hero__bg-logo-rotate {
	flex-shrink: 0;
	transform: rotate(-105.752deg);
}

.telefer-hero__bg-logo-shape {
	position: relative;
	width: 996.007px;
	height: 1095.565px;
}

.telefer-hero__bg-logo-shape img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
}

/* Foto do homem (camada 2 — acima do geométrico) */
.telefer-hero__image {
	position: absolute;
	bottom: 0;
	left: calc(50% - 42.6px);
	transform: translateX(-50%);
	width: 1756.8px;
	height: 732px;
	z-index: 2;
}

.telefer-hero__image > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center top;
}

.telefer-hero__image-gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(179.18878487807817deg, rgba(21, 50, 95, 0) 52.421%, rgb(21, 50, 95) 89.753%);
	pointer-events: none;
}

/* Content — text top, highlights bottom */
.telefer-hero__inner {
	position: relative;
	z-index: 3;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	min-height: 0;
}

.telefer-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22.8px;
	max-width: 657px;
}

.telefer-hero__title {
	font-family: var(--telefer-font-alt);
	font-size: clamp(32px, 2.92vw, 56px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.96px;
	color: var(--telefer-neutral-50);
	max-width: 657px;
}

.telefer-hero__subtitle {
	font-size: 18px;
	line-height: 28.8px;
	color: #c7c7cc;
	max-width: 556.88px;
	margin: 0;
}

.telefer-hero__content .telefer-btn--accent {
	margin-top: 0;
}

/* Trust bar */
.telefer-hero__highlights {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	width: 100%;
}

.telefer-hero__highlight {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 12px;
	letter-spacing: 0.6px;
	color: var(--telefer-neutral-50);
	white-space: nowrap;
}

.telefer-hero__highlight img {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

/* Floating bubbles — node 11088:1041 */
.telefer-hero__bubbles {
	position: absolute;
	left: 78.75%; /* 1512px @ 1920 */
	top: 558px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.telefer-hero__bubble {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	border-radius: 99999px;
	background: linear-gradient(to bottom, rgba(153, 153, 153, 0.16), rgba(255, 255, 255, 0.16));
	border: 1px solid rgba(255, 255, 255, 0.24);
	backdrop-filter: blur(2.75px);
	-webkit-backdrop-filter: blur(2.75px);
}

.telefer-hero__bubble--logo {
	position: relative;
	width: 56px;
	height: 56px;
	overflow: hidden;
}

.telefer-hero__bubble--logo img {
	position: absolute;
	width: 475%;
	max-width: none;
	height: 97.59%;
	object-fit: none;
	object-position: left top;
	top: 1.2%;
	left: 0;
}

.telefer-hero__bubble-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 16px;
	width: 16px;
}

.telefer-hero__bubble-connector img {
	display: block;
	width: 16px;
	height: 1px;
	transform: rotate(-90deg);
}

/* --------------------------------------------------------------------------
   Pain points — Figma node 11088:1050
   -------------------------------------------------------------------------- */
.telefer-pain {
	position: relative;
	padding: 120px clamp(24px, 5.83vw, 112px);
	background: rgb(21, 50, 95);
	overflow: hidden;
}

.telefer-pain__glow {
	position: absolute;
	pointer-events: none;
}

.telefer-pain__glow img {
	width: 100%;
	height: 100%;
}

.telefer-pain__glow--right {
	left: 56.09%; /* 1077px @ 1920 */
	top: 41px;
	width: 824px;
	height: 824px;
}

.telefer-pain__glow--left {
	left: -715px;
	top: 724px;
	width: 1375px;
	height: 460px;
}

.telefer-pain__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 56px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.telefer-pain__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
	width: 100%;
}

.telefer-pain__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	max-width: 930px;
}

.telefer-pain__subtitle {
	font-size: 18px;
	line-height: 28.8px;
	color: var(--telefer-neutral-200);
	margin: 0;
}

.telefer-pain__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
}

.telefer-pain__card {
	flex: 1 1 300px;
	max-width: 374px;
	min-height: 310px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: 48px 48px 48px 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.telefer-pain__card:first-child {
	min-height: 334px;
	max-width: 373px;
}

.telefer-pain__card--shadow {
	box-shadow: -8px 0 16.5px rgba(0, 0, 0, 0.06);
}

.telefer-pain__card-icon {
	width: 66px;
	height: 66px;
	border-radius: 24px;
	background: #fd1313;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.telefer-pain__card-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.telefer-pain__card-title {
	font-family: var(--telefer-font-alt);
	font-size: 24px;
	font-weight: 700;
	line-height: 31.2px;
	color: var(--telefer-neutral-50);
	margin: 0;
}

.telefer-pain__card-text {
	font-size: 16px;
	line-height: 24px;
	color: var(--telefer-neutral-200);
	margin: 0;
}

.telefer-pain__cta {
	display: flex;
	align-items: center;
	gap: 32px;
	width: 100%;
	padding: 32px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: -5px -10px 16.7px rgba(0, 0, 0, 0.04);
}

.telefer-pain__cta-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 99999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.telefer-pain__cta-icon img {
	width: 44px;
	height: 48px;
	object-fit: contain;
}

.telefer-pain__cta-text {
	flex: 1;
	font-size: 18px;
	line-height: 1.4;
	color: var(--telefer-neutral-200);
	margin: 0;
}

.telefer-pain__cta-btn {
	flex-shrink: 0;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Solutions — Figma node 11088:1100
   -------------------------------------------------------------------------- */
.telefer-solutions {
	padding: 80px clamp(24px, 5.83vw, 112px);
	background: rgb(21, 50, 95);
}

.telefer-solutions__inner {
	display: flex;
	flex-direction: column;
	gap: 56px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.telefer-solutions__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
	width: 100%;
}

.telefer-solutions__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	max-width: 864px;
	margin: 0;
}

.telefer-solutions__subtitle {
	font-size: 18px;
	line-height: 28.8px;
	color: var(--telefer-neutral-200);
	max-width: 534px;
	margin: 0;
}

.telefer-solutions__grid {
	display: flex;
	gap: 24px;
	width: 100%;
}

.telefer-solution-card {
	flex: 1 1 0;
	min-width: 0;
	height: 555px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid rgba(198, 198, 205, 0.3);
	border-radius: 12px;
	padding: 41px 33px 87px;
	box-shadow: 0 4px 8.25px rgba(0, 0, 0, 0.06);
}

.telefer-solution-card--support {
	padding-bottom: 111px;
}

.telefer-solution-card--featured {
	background: #0051d5;
	border: none;
	padding: 40px 32px;
	box-shadow: 0 4px 16.5px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.telefer-solution-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 24px;
	background: #dae2fd;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.telefer-solution-card__icon--featured {
	background: rgba(255, 255, 255, 0.2);
}

.telefer-solution-card__title {
	font-family: var(--telefer-font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 31.2px;
	color: #1b1b1d;
	margin: 0;
}

.telefer-solution-card--featured .telefer-solution-card__title {
	color: #ffffff;
}

.telefer-solution-card__intro {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.telefer-solution-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.telefer-solution-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	line-height: 24px;
	color: #1b1b1d;
}

.telefer-solution-card__list li img {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

.telefer-solution-card__list--white li {
	color: #ffffff;
}

.telefer-solution-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border: 1px solid #0051d5;
	border-radius: 9999px;
	background: transparent;
	color: #0051d5;
	font-family: var(--telefer-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	white-space: nowrap;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.telefer-solution-card__btn:hover {
	opacity: 0.85;
}

.telefer-solution-card__btn--white {
	border-color: #ffffff;
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   Diferenciais — Figma node 11088:1233
   -------------------------------------------------------------------------- */
.telefer-diferenciais {
	padding: 120px clamp(24px, 5.83vw, 112px);
	background: #004ca0;
}

.telefer-diferenciais__bg {
	position: absolute;
	inset: 0;
	opacity: 0.24;
	overflow: hidden;
	pointer-events: none;
}

.telefer-diferenciais__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.telefer-diferenciais::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-0.64deg, rgba(21, 50, 95, 0) 46.8%, rgb(21, 50, 95) 84%), linear-gradient(178.79deg, rgba(21, 50, 95, 0) 52.4%, rgb(21, 50, 95) 89.8%);
	pointer-events: none;
}

.telefer-diferenciais__glow {
	position: absolute;
	width: 824px;
	height: 824px;
	top: 41px;
	right: -200px;
	pointer-events: none;
	z-index: 0;
}

.telefer-diferenciais__glow img {
	width: 100%;
	height: 100%;
}

.telefer-diferenciais__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 56px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.telefer-diferenciais__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	text-align: center;
	margin: 0;
	width: 100%;
}

.telefer-diferenciais__grid {
	display: flex;
	gap: 24px;
	align-items: stretch;
	width: 100%;
}

.telefer-diferenciais__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 803px;
	min-width: 0;
}

.telefer-diferencial-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: 24px;
	box-shadow: -8px 0 16.5px rgba(0, 0, 0, 0.06);
	width: 100%;
}

.telefer-diferencial-item__left {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 0 1 300px;
	min-width: 0;
}

.telefer-diferencial-item__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

.telefer-diferencial-item__left strong {
	font-family: var(--telefer-font-heading);
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
	color: #ffffff;
}

.telefer-diferencial-item__badge {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: #fdb813;
	box-shadow: 0 0 8.6px rgba(253, 184, 19, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 18px;
}

.telefer-diferencial-item__badge img {
	width: 18px;
	height: 18px;
}

.telefer-diferencial-item p {
	flex: 0 1 284px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #d3d3d3;
	margin: 0;
}

.telefer-diferenciais__image {
	position: relative;
	flex: 0 0 388px;
	border-radius: 12px;
	overflow: hidden;
	align-self: stretch;
	min-height: 400px;
}

.telefer-diferenciais__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 27% 16%;
}

.telefer-diferenciais__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 38.756%, rgba(0, 0, 0, 0.32) 100%);
	pointer-events: none;
}

/* --------------------------------------------------------------------------
   Social proof — Figma node 11088:1362
   -------------------------------------------------------------------------- */
.telefer-social-proof {
	padding: 120px clamp(24px, 5.83vw, 112px);
	background: #15325f;
}

.telefer-social-proof__bg {
	position: absolute;
	inset: 0;
	opacity: 0.12;
	overflow: hidden;
	pointer-events: none;
}

.telefer-social-proof__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.telefer-social-proof::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-0.63deg, rgba(21, 50, 95, 0) 46.8%, rgb(21, 50, 95) 84%), linear-gradient(178.81deg, rgba(21, 50, 95, 0) 52.4%, rgb(21, 50, 95) 89.8%);
	pointer-events: none;
}

.telefer-social-proof__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.telefer-social-proof__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
	width: 100%;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.telefer-social-proof__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	max-width: 790px;
	margin: 0;
}

.telefer-social-proof__lead {
	font-size: 18px;
	font-weight: 700;
	line-height: 28.8px;
	color: var(--telefer-neutral-200);
	margin: 0;
	width: 100%;
}

.telefer-social-proof__body {
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	color: var(--telefer-neutral-200);
	max-width: 754px;
	margin: 0;
}

.telefer-social-proof__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	width: 100%;
}

.telefer-social-proof__stat {
	flex: 1 1 0;
	min-width: 140px;
	height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	box-shadow: -8px 0 16.5px rgba(0, 0, 0, 0.06);
	text-align: center;
}

.telefer-social-proof__stat:last-child {
	gap: 32px;
}

.telefer-social-proof__stat-value {
	font-family: var(--telefer-font-alt);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 32px;
	color: #fdb813;
	letter-spacing: -0.32px;
	width: 100%;
}

.telefer-social-proof__stat-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--telefer-neutral-200);
	letter-spacing: 0.6px;
	width: 100%;
}

.telefer-social-proof__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 9999px;
	background: #0051d5;
	color: #ffffff;
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	transition: opacity 0.2s;
	white-space: nowrap;
}

.telefer-social-proof__btn:hover {
	opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.telefer-process {
	padding: 40px 0 var(--telefer-section-pad-y);
	background: var(--telefer-primary-dark);
}

.telefer-process .telefer-section__title {
	margin-bottom: 80px;
}

.telefer-process__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
}

.telefer-process__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 24px 12px;
}

.telefer-process__num {
	width: 48px;
	height: 48px;
	border-radius: var(--telefer-radius-md);
	background: var(--telefer-primary);
	box-shadow: 0 0 8.6px rgba(0, 81, 213, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
}

.telefer-process__step h3 {
	font-family: var(--telefer-font-alt);
	font-size: 24px;
	font-weight: 700;
	line-height: 31.2px;
}

.telefer-process__step p {
	font-size: 14px;
	line-height: 20px;
	color: var(--telefer-neutral-200);
	max-width: 160px;
}

.telefer-process__line {
	width: 51px;
	height: 2px;
	background: #d7d7d7;
	margin-top: 48px;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Testimonials — Figma node 11088:1421
   -------------------------------------------------------------------------- */
.telefer-testimonials {
	padding: 120px clamp(24px, 5.83vw, 112px);
	background: #004ca0;
}

.telefer-testimonials__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.telefer-testimonials__bg-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.telefer-testimonials__bg-img--primary {
	opacity: 0.2;
}

.telefer-testimonials__bg-img--secondary {
	opacity: 0.24;
	object-position: center top;
}

.telefer-testimonials::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-0.55deg, rgba(21, 50, 95, 0) 46.8%, rgb(21, 50, 95) 84%), linear-gradient(178.97deg, rgba(21, 50, 95, 0) 52.4%, rgb(21, 50, 95) 89.8%);
	pointer-events: none;
}

.telefer-testimonials__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.telefer-testimonials__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	text-align: center;
	margin: 0;
	width: 100%;
}

.telefer-testimonials__carousel {
	position: relative;
	width: 100%;
}

.telefer-testimonials__track {
	display: flex;
	gap: 10px;
	width: 100%;
}

.telefer-testimonial-card {
	flex: 1 1 0;
	min-width: 0;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 16px;
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
	box-shadow: -8px 0 16.5px rgba(0, 0, 0, 0.06);
}

.telefer-testimonial-card__quote {
	width: 58px;
	height: 58px;
	flex-shrink: 0;
}

.telefer-testimonial-card__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--telefer-neutral-200);
	margin: 0;
	width: 100%;
}

.telefer-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 8px;
}

.telefer-testimonial-card__author strong {
	font-size: 14px;
	font-weight: 600;
	color: var(--telefer-neutral-50);
}

.telefer-testimonial-card__author img {
	width: 80px;
	height: 16px;
	flex-shrink: 0;
}

.telefer-testimonials__nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(1304px, calc(100% + 96px));
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 2;
}

.telefer-testimonials__nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	pointer-events: auto;
	transition: opacity 0.2s;
	padding: 0;
}

.telefer-testimonials__nav-btn:hover {
	opacity: 0.85;
}

.telefer-testimonials__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 9999px;
	background: #0051d5;
	color: #ffffff;
	font-family: var(--telefer-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	transition: opacity 0.2s;
	white-space: nowrap;
}

.telefer-testimonials__btn:hover {
	opacity: 0.9;
}

/* --------------------------------------------------------------------------
   FAQ — Figma node 11088:1470
   -------------------------------------------------------------------------- */
.telefer-faq {
	padding: 120px clamp(24px, 5.83vw, 112px);
	background: #15325f;
}

.telefer-faq__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	max-width: 768px;
	margin: 0 auto;
	width: 100%;
}

.telefer-faq__title {
	font-family: var(--telefer-font-heading);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.5;
	color: var(--telefer-neutral-50);
	text-align: center;
	margin: 0;
}

.telefer-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.telefer-faq__item {
	background: #eeeeee;
	border: 1px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	width: 100%;
}

.telefer-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 25px;
	font-family: var(--telefer-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 28px;
	color: #1b1b1d;
	cursor: pointer;
	list-style: none;
}

.telefer-faq__question-text {
	flex: 1;
	min-width: 0;
}

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

.telefer-faq__chevron {
	width: 12px;
	height: 7.4px;
	transition: transform 0.2s;
	flex-shrink: 0;
}

.telefer-faq__item[open] .telefer-faq__chevron {
	transform: rotate(180deg);
}

.telefer-faq__answer {
	padding: 0 25px 25px;
	color: #1b1b1d;
	font-size: 15px;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CTA Final
   -------------------------------------------------------------------------- */
.telefer-cta-final {
	padding: 80px 0;
	min-height: 545px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.telefer-cta-final__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.telefer-cta-final__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.08;
}

.telefer-cta-final::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--telefer-cta-bg);
}

.telefer-cta-final::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180.16deg, rgb(21, 50, 95) 11%, rgba(15, 23, 42, 0) 45%), linear-gradient(179.3deg, rgba(26, 31, 43, 0) 41%, rgb(26, 31, 43) 90%);
}

.telefer-cta-final__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px;
	max-width: 544px;
}

.telefer-cta-final__title {
	font-family: var(--telefer-font-alt);
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	line-height: 43.2px;
}

.telefer-cta-final__subtitle {
	font-size: 18px;
	line-height: 28.8px;
	color: var(--telefer-text-light);
	max-width: 534px;
}

/* --------------------------------------------------------------------------
   Footer — Figma node 11088:1513
   -------------------------------------------------------------------------- */
.telefer-footer {
	background: #1a1f2b;
	padding: 120px clamp(24px, 5.83vw, 112px) 32px;
}

.telefer-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 120px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
}

.telefer-footer__main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
	width: 100%;
}

.telefer-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 286px;
	flex-shrink: 0;
}

.telefer-footer__logo {
	width: 220px;
	height: 54px;
	object-fit: contain;
}

.telefer-footer__desc {
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 500;
	line-height: 22.75px;
	color: #94a3b8;
	margin: 0;
}

.telefer-footer__col {
	display: flex;
	flex-direction: column;
	gap: 23px;
	width: 288px;
	flex-shrink: 0;
}

.telefer-footer__col--social {
	gap: 24px;
	padding-bottom: 99px;
}

.telefer-footer__heading {
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 700;
	line-height: 22.75px;
	color: #3b82f6;
	margin: 0;
}

.telefer-footer__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.telefer-footer__list a {
	font-family: var(--telefer-font-alt);
	font-size: 14px;
	font-weight: 500;
	line-height: 22.75px;
	color: #94a3b8;
	transition: color 0.2s;
}

.telefer-footer__list a:hover {
	color: var(--telefer-neutral-50);
}

.telefer-footer__social {
	display: flex;
	gap: 16px;
}

.telefer-footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1e293b;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: opacity 0.2s;
}

.telefer-footer__social-link:hover {
	opacity: 0.85;
}

.telefer-footer__social-link img {
	width: 13px;
	height: 13px;
}

.telefer-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	width: 100%;
}

.telefer-footer__copyright,
.telefer-footer__credit span {
	font-family: var(--telefer-font-alt);
	font-size: 12px;
	font-weight: 500;
	line-height: 22.75px;
	color: #374b6c;
	margin: 0;
	white-space: nowrap;
}

.telefer-footer__legal {
	font-family: var(--telefer-font-alt);
	font-size: 12px;
	font-weight: 500;
	line-height: 22.75px;
	color: #374b6c;
	text-decoration: underline;
	white-space: nowrap;
	transition: color 0.2s;
}

.telefer-footer__legal:hover {
	color: var(--telefer-neutral-600);
}

.telefer-footer__credit {
	display: flex;
	align-items: center;
	gap: 4px;
}

.telefer-footer__credit img {
	width: 48px;
	height: 15px;
	object-fit: contain;
}

/* --------------------------------------------------------------------------
   WhatsApp FAB — Figma node 11088:1555
   -------------------------------------------------------------------------- */
.telefer-whatsapp-fab {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 24px;
	background: #25d366;
	border-radius: 9999px;
	box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
	font-family: var(--telefer-font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.2s, opacity 0.2s;
}

.telefer-whatsapp-fab__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.telefer-whatsapp-fab__text {
	white-space: nowrap;
}

.telefer-whatsapp-fab:hover {
	transform: scale(1.03);
	opacity: 0.95;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
	.telefer-diferenciais__grid {
		flex-direction: column;
	}

	.telefer-diferenciais__list {
		flex: 1 1 auto;
	}

	.telefer-diferenciais__image {
		flex: 0 0 auto;
		width: 100%;
		max-height: 420px;
	}

	.telefer-diferencial-item {
		flex-wrap: wrap;
	}

	.telefer-diferencial-item p {
		flex: 1 1 100%;
	}
}

@media (max-width: 1024px) {
	.telefer-pain__card {
		flex: 1 1 calc(50% - 12px);
		max-width: none;
	}

	.telefer-solutions__grid {
		flex-direction: column;
	}

	.telefer-solution-card,
	.telefer-solution-card--support,
	.telefer-solution-card--featured {
		flex: 0 0 auto;
		height: auto;
		padding: 32px 24px 40px;
	}

	.telefer-social-proof__stats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.telefer-social-proof__stat {
		flex: none;
		min-width: 0;
	}

	.telefer-testimonials__track {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.telefer-testimonials__track::-webkit-scrollbar {
		display: none;
	}

	.telefer-testimonial-card {
		flex: 0 0 calc(50% - 5px);
		scroll-snap-align: start;
	}

	.telefer-footer__main {
		flex-wrap: wrap;
	}

	.telefer-footer__brand,
	.telefer-footer__col {
		width: calc(50% - 24px);
		min-width: 200px;
	}

	.telefer-footer__col--social {
		padding-bottom: 0;
	}

	.telefer-process__steps {
		flex-wrap: wrap;
		gap: 16px;
	}

	.telefer-process__line {
		display: none;
	}

	.telefer-process__step {
		flex: 0 0 calc(33.333% - 16px);
	}

	.telefer-hero__bubbles {
		display: none;
	}

	.telefer-hero {
		height: auto;
		min-height: 720px;
		padding: calc(var(--telefer-header-height) + 48px) clamp(24px, 6vw, 80px) 32px;
	}

	.telefer-hero__image {
		width: 140%;
		max-width: 1756.8px;
		height: 732px;
	}
}

@media (max-width: 1200px) {
	.telefer-hero__bg-logo-frame {
		left: 45%;
		transform: scale(0.85);
		transform-origin: top left;
	}

	.telefer-hero__image {
		width: 130%;
		height: 620px;
	}
}

@media (max-width: 768px) {
	:root {
		--telefer-section-pad-y: 80px;
	}

	.telefer-nav__toggle {
		display: flex;
	}

	.telefer-header__inner {
		position: relative;
	}

	.telefer-header__left {
		width: 100%;
		justify-content: space-between;
		gap: 16px;
	}

	.telefer-nav {
		position: static;
	}

	.telefer-nav__list {
		display: none;
		position: fixed;
		top: var(--telefer-header-height);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		background: rgba(21, 50, 95, 0.98);
		backdrop-filter: blur(2.75px);
		padding: 24px clamp(24px, 5.83vw, 112px);
		gap: 16px;
		border-top: 1px solid var(--telefer-border);
		z-index: 999;
	}

	.telefer-nav.is-open .telefer-nav__list {
		display: flex;
	}

	.telefer-header__cta {
		display: none;
	}

	.telefer-nav__cta-item {
		display: block;
		margin-top: 8px;
		padding-top: 16px;
		border-top: 1px solid var(--telefer-border);
	}

	.telefer-pain__cards {
		flex-direction: column;
		align-items: stretch;
	}

	.telefer-pain__card,
	.telefer-pain__card:first-child {
		max-width: none;
		min-height: auto;
	}

	.telefer-pain__cta {
		flex-direction: column;
		text-align: center;
	}

	.telefer-pain__glow--right {
		left: 40%;
		width: 400px;
		height: 400px;
		opacity: 0.6;
	}

	.telefer-pain__glow--left {
		left: -300px;
		width: 600px;
		height: 200px;
		opacity: 0.5;
	}

	.telefer-solutions__grid {
		flex-direction: column;
	}

	.telefer-solution-card,
	.telefer-solution-card--support,
	.telefer-solution-card--featured {
		flex: 0 0 auto;
		height: auto;
		padding: 32px 24px 40px;
	}

	.telefer-social-proof__stats {
		grid-template-columns: 1fr;
	}

	.telefer-testimonial-card {
		flex: 0 0 85%;
	}

	.telefer-hero {
		height: auto;
		min-height: 640px;
		padding: calc(var(--telefer-header-height) + 32px) 24px 32px;
		display: flex;
		flex-direction: column;
		max-width: none;
	}

	.telefer-hero__inner {
		order: 1;
		position: relative;
		z-index: 3;
		min-height: auto;
		gap: 48px;
	}

	.telefer-hero__visuals {
		order: 2;
		position: relative;
		width: 100%;
		height: 380px;
		margin-top: 24px;
	}

	.telefer-hero__image {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 140%;
		height: 100%;
	}

	.telefer-hero__image-gradient {
		background: linear-gradient(179.19deg, rgba(21, 50, 95, 0) 40%, rgb(21, 50, 95) 85%);
	}

	.telefer-hero__bg-logo-frame {
		left: 35%;
		top: -180px;
		transform: scale(0.5);
		transform-origin: top left;
	}

	.telefer-process__step {
		flex: 0 0 calc(50% - 8px);
	}

	.telefer-footer__inner {
		gap: 60px;
	}

	.telefer-footer__main {
		flex-direction: column;
		gap: 40px;
	}

	.telefer-footer__brand,
	.telefer-footer__col {
		width: 100%;
	}

	.telefer-footer__col--social {
		padding-bottom: 0;
	}

	.telefer-footer__bottom {
		flex-direction: column;
		text-align: center;
	}

	.telefer-whatsapp-fab__text {
		display: none;
	}

	.telefer-whatsapp-fab {
		padding: 16px;
		border-radius: 50%;
	}
}

@media (max-width: 480px) {
	:root {
		--telefer-section-pad-y: 56px;
	}

	.telefer-hero {
		min-height: auto;
		padding-bottom: 24px;
	}

	.telefer-hero__visuals {
		height: 280px;
		margin-top: 16px;
	}

	.telefer-hero__highlights {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.telefer-hero__subtitle {
		font-size: 16px;
		line-height: 1.6;
	}

	.telefer-section__subtitle {
		font-size: 16px;
		line-height: 1.6;
	}

	.telefer-pain__glow--left,
	.telefer-pain__glow--right {
		opacity: 0.3;
	}

	.telefer-process__step {
		flex: 0 0 100%;
	}
}
