:root {
	--brand: #b8001c;
	--brand-light: #d33541;
	--dark: #0a0c0f;
	--light: #ffffff;
	--gray: #f7f8fa;
	--muted: #62656f;
	--radius: 12px;
	--header-h: 70px;
	--blue: linear-gradient(180deg, #0e2a47 0%, #163a63 100%);
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Poppins", sans-serif;
	color: var(--dark);
	background-color: var(--light);
	overflow-x: hidden;
	scroll-behavior: smooth;
}
h2 {
	text-align: center;
}

a {
	color: inherit;
	text-decoration: none;
}
.pb50 {
	padding-bottom: 50px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb30 {
	padding-bottom: 30px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-container {
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.8rem 1.5rem; /* mais espaçamento lateral */
}

.logo img {
	max-height: 50px; /* controla tamanho do logo */
	width: auto;
	display: block;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 2rem; /* mais espaçamento entre itens */
	align-items: center;
	margin: 0;
	padding: 0;
}

nav li {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1; /* garante alinhamento */
}

nav li a {
	text-decoration: none;
	color: inherit;
	padding: 0.25rem 0; /* cria baseline consistente */
	transition: color 0.2s ease;
}

nav li a:hover {
	color: var(--brand);
}

main {
	margin-top: 70px; /* offset for fixed header */
	scroll-snap-type: y mandatory;
}
section {
	/* min-height: 100vh; */
	width: 100%;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 1rem;
}
/* Hero Section */
#hero {
	position: relative;
	overflow: hidden;
	color: var(--light);
	/* background: linear-gradient(to bottom right, var(--brand), #45040c); Red */
	background: linear-gradient(180deg, #0e2a47 0%, #163a63 100%);
}
#hero {
	position: relative;
	color: var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 85vh;
	padding: 0 100px;
}
h1 {
	font-size: clamp(2.5rem, 6vw, 3.5rem);
}
#hero h1 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

#hero h1 span.dynamic-word {
	color: var(--brand-light);
}

#hero p.lead {
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	margin-bottom: 2rem;
	color: var(--gray);
}

#hero .cta-btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	font-size: 1rem;
	font-weight: 600;
	background: var(--brand);
	color: var(--light);
	border-radius: var(--radius);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}
.nav-right .cta-btn {
	padding: 0.4rem 0.9rem;
	font-size: 0.9rem;
	/* letter-spacing: 0.2cap; */
}

#hero .badges {
	display: flex;
	gap: 2rem;
	margin-top: 3rem;
}

.badge {
	text-align: center;
}

.badge .count {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--brand-light);
}

@media (max-width: 900px) {
	#hero {
		flex-direction: column;
	}
	#hero .hero-left,
	#hero .hero-right {
		width: 100%;
		min-height: 50vh;
	}
}

#hero .hero-content {
	display: flex;
}
.hero-image {
	max-width: 700px;
	position: absolute;
	right: 70px;
	bottom: 0;
	height: 100%;
	width: auto; /* mantém proporção */
	max-width: none; /* evita encolher por max-width padrão */
	object-fit: contain; /* segurança caso troque para 'width:100%' em algum breakpoint */
	pointer-events: none; /* não intercepta cliques */
}
#hero .left {
	width: 60%;
	align-items: center;
	/* padding: 4rem 2rem; */
	/* padding-left: 200px; /* Removido no v2 */
}

.cta-btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	font-size: 1rem;
	font-weight: 600;
	background: var(--brand);
	color: var(--light);
	border-radius: var(--radius);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn-secndary {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--brand);
	background: var(--light);
	border-radius: var(--radius);
	border-color: var(--brand);
}

#hero .cta-btn:hover,
.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
	background: var(--brand-light);
}
#hero .badges {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 3rem;
}
.badge {
	text-align: center;
	color: var(--light);
}
.badge .count {
	font-size: 2.5rem;
	font-weight: 700;
	display: block;
	margin-bottom: 0.3rem;
	color: var(--brand-light);
}
.badge p {
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0;
	color: var(--gray);
}
/* Why Section */
#why {
	background: var(--gray);
	padding-top: 6rem;
	padding-bottom: 6rem;
}
#why h2 {
	font-size: 2.2rem;
	margin-bottom: 3rem;
	text-align: center;
}
.why-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}
.why-card {
	background: var(--light);
	border-radius: var(--radius);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	width: 280px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
.why-card svg {
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	fill: var(--brand);
}
.why-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}
.why-card p {
	font-size: 0.9rem;
	color: var(--muted);
}

/* Process Section */
#process {
	padding-top: 6rem;
	padding-bottom: 6rem;
}
#process h2 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	text-align: center;
}
.process-wrapper {
	position: relative;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	display: flex;
	scroll-behavior: smooth;
}
.process-step {
	scroll-snap-align: center;
	flex: 0 0 100%;
	/* min-height: 70vh; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	position: relative;
}
.process-step h3 {
	font-size: 1.8rem;
	color: var(--brand);
	margin-bottom: 1rem;
}
.process-step p {
	max-width: 600px;
	text-align: center;
	font-size: 1rem;
	color: var(--muted);
}
.process-indicator {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
}
.process-indicator span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--muted);
	transition: background 0.3s, transform 0.3s;
}
.process-indicator span.active {
	background: var(--brand);
	transform: scale(1.3);
}

/* CTA Section */
#cta {
	background: var(--brand);
	color: var(--light);
	text-align: center;
	padding: 6rem 2rem;
}
#cta h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
#cta p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
#cta a.btn-dark {
	display: inline-block;
	padding: 0.7rem 2rem;
	border-radius: var(--radius);
	background: var(--light);
	color: var(--brand);
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
#cta a.btn-dark:hover {
	background: var(--brand-light);
	color: var(--light);
}
/* Footer */
footer {
	background: var(--blue);
	color: var(--light);
	padding: 3rem 2rem;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-column {
	flex: 1 1 220px;
	min-width: 200px;
}

footer h4 {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: var(--brand-light);
}

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

footer ul li {
	margin-bottom: 0.4rem;
}

footer ul li a {
	font-size: 0.9rem;
	color: var(--gray);
	transition: color 0.2s;
}

footer ul li a:hover {
	color: var(--light);
}

footer .social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

footer .social a svg {
	width: 24px;
	height: 24px;
	fill: var(--gray);
	transition: fill 0.2s;
}

footer .social a:hover svg {
	fill: var(--brand-light);
}

footer .copyright {
	margin-top: 2rem;
	text-align: center;
	font-size: 0.8rem;
	color: var(--muted);
}

footer .social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05); /* 👈 círculo sutil de fundo */
	transition: background 0.2s;
}

footer .social a:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	#hero h1 {
		font-size: 2.2rem;
	}
	.why-card {
		width: 90%;
	}

	.process-wrapper {
		flex-direction: column;
		overflow-y: auto;
		overflow-x: hidden;
		scroll-snap-type: y mandatory;
	}
	.process-step {
		flex: 0 0 auto;
		min-height: auto;
		padding: 4rem 1rem;
	}
}

.social {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* botão/bolinha uniforme */
.social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(256, 256, 256, 0.3);
	color: var(--dark); /* controla a cor do SVG via currentColor */
	transition: all 0.2s ease;
}

/* garante tamanho idêntico dos ícones */
.social a svg {
	width: 20px;
	height: 20px;
}

/* hover com sua cor de marca */
.social a:hover {
	background: var(--brand);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.lang-switcher a {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 500;
	color: #333;
}
.lang-switcher a img.flag {
	width: 20px;
	height: 14px;
	margin-right: 0.4rem;
	border-radius: 2px;
	object-fit: cover;
}

@media (max-width: 768px) {
	/* o container do hero */
	#hero {
		min-height: auto;
		padding: 80px 40px 0;
	}

	/* linha vira coluna */
	#hero .hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	/* coluna esquerda (texto) */
	#hero .left {
		width: 100%;
		padding-left: 0; /* remove aquele padding grande */
		text-align: center; /* centraliza o texto/botão */
	}

	/* coluna direita (imagem) */
	#hero .right {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	/* a imagem deixa de ser absolute e não sobrepõe o texto */
	.hero-image {
		position: static; /* <- chave para separar */
		right: auto;
		bottom: auto;
		width: min(420px, 90vw); /* tamanho bom no mobile */
		height: auto;
		max-height: none;
		object-fit: contain;
	}

	/* opcional: esconder as badges no mobile */
	#hero .badges {
		/* display: none; */
		margin: 50px 20px 0;
		gap: 1rem;
	}
	#hero .badge {
		flex: 1 1 30%;
	}
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #222;
	border-radius: 2px;
	transition: 0.2s;
}

.trust-strip {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	/* border-radius: 16px; */
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	max-width: 100%;
	margin: -32px auto 48px; /* “encosta” no hero */
	padding: 14px 8%;
	position: relative;
	z-index: 2;
}
.trust-wrap {
	display: flex;
	align-items: flex-start;
	gap: 10%;
}
.trust-item {
	flex: 1 1 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px 14px;
	align-items: start;
	min-width: 0;
	padding-left: 14px;
	position: relative;
}
.trust-item + .trust-item {
	border-left: 1px solid #eee;
}
.trust-item img {
	width: Auto;
	height: 50px;
	display: block;
	object-fit: contain;
	filter: none;
}
.trust-item p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.4;
	color: var(--dark);
}
.trust-item p strong {
	font-weight: 700;
}

/* Responsivo */
@media (max-width: 900px) {
	.trust-strip {
		margin: 16px 16px 32px;
		padding: 16px;
	}
	.trust-wrap {
		flex-direction: column;
		gap: 18px;
	}
	.trust-item {
		border-left: 0 !important;
		padding-left: 0;
	}
	.trust-item img {
		width: 40px;
	}
	.trust-item p {
		font-size: 0.95rem;
	}
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	/* padding-left: 25px;  */
	/* border-left: 1px solid #e9eef3;  */
}

/* se o header tiver fundo escuro, use um traço mais translúcido */
/* header.is-dark .lang-switcher {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
} */

/* mobile: tira o divisor quando empilhar */
@media (max-width: 900px) {
	.lang-switcher {
		border-left: none;
		padding-left: 0;
	}
}
/* links do seletor de idioma */
.lang-switcher a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 500;
}

/* flags consistentes (estado padrão = inativa/cinza) */
.lang-switcher .flag {
	width: 22px;
	height: auto;
	opacity: 0.45;
	filter: grayscale(100%);
	transition: filter 0.2s, opacity 0.2s;
}

/* ativa (link que recebeu .active) */
.lang-switcher a.active .flag {
	opacity: 1;
	filter: none;
}

/* acessibilidade: foco visível */
.lang-switcher a:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

/* se for a atual (aria-current), não clica */
.lang-switcher a[aria-current="page"] {
	pointer-events: none;
	cursor: default;
}

/* --- Mobile nav toggle (hamburger) --- */
.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	margin-left: 12px;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
}
.nav-toggle span {
	position: absolute;
	left: 8px;
	right: 8px;
	height: 2px;
	background: #111;
	transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) {
	top: 12px;
}
.nav-toggle span:nth-child(2) {
	top: 19px;
}
.nav-toggle span:nth-child(3) {
	top: 26px;
}

/* --- Mobile layout --- */
@media (max-width: 900px) {
	/* show the button */
	.nav-toggle {
		display: inline-block;
	}

	/* keep top bar compact */
	.nav-container {
		gap: 10px;
	}

	/* collapse items by default */
	.main-nav,
	.social,
	.lang-switcher {
		display: none;
	}

	header.menu-open .social {
		bottom: 72px;
		gap: 14px;
	}
	header.menu-open .lang-switcher {
		bottom: 20px;
		gap: 12px;
	}

	/* animate hamburger into an X */
	header.menu-open .nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	header.menu-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}
	header.menu-open .nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* --- mobile toggle button --- */

.nav-toggle span:nth-child(1) {
	top: 4px;
}
.nav-toggle span:nth-child(2) {
	top: 13px;
}
.nav-toggle span:nth-child(3) {
	top: 22px;
}
.nav-toggle.is-active span:nth-child(1) {
	top: 13px;
	transform: rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
	top: 13px;
	transform: rotate(-45deg);
}

/* --- mobile panel --- */
.mobile-panel {
	position: fixed;
	left: 0;
	right: 0;
	top: -100vh; /* hidden */
	background: #fff;
	border-bottom: 1px solid #e9eef3;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	padding: 18px 20px 24px;
	z-index: 98;
	transition: top 0.28s ease;
}
.mobile-panel.open {
	top: 60px;
} /* 60px ~ header height; ajuste se preciso */
.mobile-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.mobile-links a {
	font-size: 1.05rem;
}
.mobile-extras {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mobile-panel .social a {
	width: 40px;
	height: 40px;
}
.mobile-panel .lang-switcher {
	gap: 12px;
}

/* --- responsive switching --- */
@media (max-width: 900px) {
	.main-nav {
		display: none;
	}
	.nav-right {
		gap: 14px;
	}
	.social {
		display: none;
	}
	.lang-switcher {
		display: flex !important;
	}
	.nav-toggle {
		display: inline-flex;
	}
	.nav-right .cta-btn {
		display: none;
	}
}

/* optional: when panel open, lock body scroll */
body.menu-open {
	overflow: hidden;
}

/* Ready section */

.mw900 {
	max-width: 900px;
	place-self: center;
	padding: 100px 0px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.mw900 {
		padding: 100px 0px;
	}
}

.bg-light-grey {
	background: var(--gray);
}
.bg-light {
	background: white;
}

/* Eyebrow */
.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--brand);
	background: rgba(184, 0, 28, 0.08);
	padding: 0.35rem 0.55rem;
	border-radius: 6px;
	display: inline-block;
	margin: 0 0 12px;
}
/* Headline */
h2 {
	font-size: clamp(2rem, 3.6vw, 3.1rem);
}
h2.subpage {
	font-size: clamp(2.4rem, 4vw, 2.7rem);
}
h3.subpage {
	font-size: clamp(2rem, 2vw, 2rem);
}
.subpage {
	text-align: center;
}

.sub-header {
	font-size: 2rem;
	font-weight: 600;
	margin: 30px 0;
}

/* About Section */
/* Layout 2 colunas */

#about .about-copy {
	display: grid;
	grid-template-columns: 2fr 1fr; /* esquerda texto maior, direita foto */
	gap: 40px;
	align-items: start;
}

/* lista */
#about .about-highlights {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 20px;
}

#about .about-highlights li {
	display: grid;
	grid-template-columns: 30% 1fr; /* logo + texto */
	align-items: center;
	gap: 16px;
	background: #fff;
	padding: 12px 16px;
	border-radius: 10px;
	place-items: center;
}

#about .about-highlights img {
	max-width: 130px;
	max-height: 60px;
	object-fit: contain;
}

/* foto */
#about .about-photo img {
	width: 100%;
	max-height: 330px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* responsivo */
@media (max-width: 900px) {
	#about {
		padding: 40px 20px;
	}
	#about .about-copy {
		grid-template-columns: 1fr;
	}
	#about .about-photo {
		order: -1;
		text-align: center;
		padding: 20px 0px;
	}
	#about .about-photo img {
		max-width: 320px;
		margin: 0 auto;
	}
}

/* Services v2 */

.services-v2 {
	padding-top: 50px;
	text-align: left;
}

.services-v2-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	/* padding-top: 30px; */
}

.service-v2-card {
	flex: 1 1 280px;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #ffffff;
}

.service-v2-card h4 {
	font-size: 1.7rem;
	padding-bottom: 15px;
	color: #b8001c;
	font-weight: bold;
}

.services-v2-btn {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	margin-top: 40px;
}
/* Scroll Section Start */
/* seção NÃO participa do flex global */
.hst-section {
	display: block !important;
	align-items: initial !important;
	justify-content: flex-start !important;
	scroll-snap-align: unset !important;
	padding-top: 1.5rem;
	/* max-width: 900px; */
	place-self: center;
}

/* Scroll Section End */
/* testimonial gpt code */
.reviews {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	font-family: "Poppins", sans-serif;
}

div.reviews {
	/* padding-bottom: 50px; */
	max-width: 1200px;
	width: 100%;
}

/* --- CARROSSEL DE REVIEWS --- */
.reviews {
	max-width: 1200px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
}

.rating-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #eee;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 30px;
	gap: 30px;
	background-color: #f7f8fa;
}

.google-logo {
	font-family: Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: -6px;
}
.google-logo .g {
	color: #4285f4;
}
.google-logo .o1 {
	color: #db4437;
}
.google-logo .o2 {
	color: #f4b400;
}
.google-logo .g2 {
	color: #4285f4;
}
.google-logo .l {
	color: #0f9d58;
}
.google-logo .e {
	color: #db4437;
}

.rating-text {
	font-size: 22px;
	font-weight: 500;
	color: #666;
}
.rating-right {
	display: flex;
	align-items: center;
	gap: 8px;
}
.rating-score {
	font-size: 30px;
	font-weight: 600;
	color: #f39c12;
}
.stars {
	color: #f39c12;
	font-size: 20px;
}

/* ---- CARROSSEL ---- */

.reviews-viewport {
	flex: 1;
	overflow-x: auto; /* <-- AQUI: viewport é quem rola */
	scroll-behavior: smooth;
	scrollbar-width: none; /* Firefox */
}

.reviews-grid {
	display: flex;
	gap: 20px;
	overflow-x: auto; /* deixa rolar */
	scroll-behavior: smooth;
	scrollbar-width: none; /* esconde barra no Firefox */
	scroll-snap-type: x mandatory;
}

.review-card {
	flex: 0 0 calc(33.333% - 20px);
	min-width: 280px;
	max-width: 350px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	scroll-snap-align: start;
}

.review-card h4 {
	margin: 0 0 10px;
	font-size: 1.1rem;
	color: #000 !important;
}

.review-card p {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.4;
}

.reviews-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2rem;
}

.reviews-footer a {
	font-size: 1.1rem;
	color: #555;
	text-decoration: none;
	transition: color 0.3s;
}

.reviews-footer a:hover {
	color: #b8001c;
}

.reviews-footer button {
	background: #f7f8fa;
	color: #333;
	border: none;
	/* padding: 10px 15px; */
	border-radius: 20%;
	cursor: pointer;
	font-size: 3rem;
	transition: background 0.3s;
	height: 40px;
	width: 40px;
	line-height: 1;
	display: flex;
	align-items: flex-end; /* centraliza vertical */
	justify-content: center; /* centraliza horizontal */
}

.reviews-footer button:hover {
	background: #d33541;
}
.nav {
	background: #b8001c;
	color: #fff;
	border: none;
	width: 44px;
	height: 44px;
	font-size: 1.4rem;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s;
	flex-shrink: 0;
}
.nav:hover {
	background: #d33541;
}

/* Responsivo */
@media (max-width: 768px) {
	.review-card {
		flex: 0 0 80%;
	}
}
/* Rodapé */
.reviews-footer {
	margin-top: 24px;
	text-align: center;
}

.reviews-footer a {
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
	font-family: poppins, sans-serif;
}

.reviews-footer a:hover {
	color: #b8001c;
}

.review-header {
	display: flex;
	align-items: center;
	/* gap: 12px; */
	margin-bottom: 10px;
}

.review-info {
	display: flex;
	flex-direction: column; /* Força empilhar nome em cima e estrelas embaixo */
	line-height: 1.2; /* Diminui espaço entre linhas */
}

.review-info h4 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.avatar {
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #eee;
	height: 200px;
}

.review-header img.avatar {
	width: 70px !important;
	height: 70px !important;
	margin-right: 10px;
}
/* testimonial gpt code end */

/* Blog starts */
.blog-section {
	padding: 80px 20px;
	background: #f7f8fa;
}

.blog-section .section-subtitle {
	color: #62656f;
	margin-bottom: 40px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
}

.blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.2s ease-in-out;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-content {
	padding: 15px;
}
.blog-card-content-page {
	padding: 5px 15px 0 15px;
}
.blog-title {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #0a0c0f;
}

.blog-excerpt {
	font-size: 0.95rem;
	color: #62656f;
	margin-bottom: 15px;
}

.blog-link {
	color: #b8001c;
	font-weight: 600;
	text-decoration: none;
}

.blog-link:hover {
	text-decoration: underline;
}
.blog-meta {
	margin-top: 2px;
	display: flex;
	gap: 15px;
	justify-self: center;
	color: #9ca3af;
	font-size: 14px;
	line-height: 1.2;
	padding-bottom: 10px;
}

/* Blog ends */
/* Steps start */

/* Container principal */
.steps-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
}

/* Linha vertical */
.steps-wrapper::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #b8001c, #e5e5e5);
	animation: growLine 1.5s ease-in-out forwards;
}

@keyframes growLine {
	from {
		height: 0;
	}
	to {
		height: 100%;
	}
}

/* Blocos individuais */
.step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s forwards;
	/* max-width: 500px; */ /* largura máxima dos blocos */
}

.step:nth-child(1) {
	animation-delay: 0.2s;
}
.step:nth-child(2) {
	animation-delay: 0.4s;
}
.step:nth-child(3) {
	animation-delay: 0.6s;
}
.step:nth-child(4) {
	animation-delay: 0.8s;
}
.step:nth-child(5) {
	animation-delay: 1s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Bolha numerada */
.step-bubble {
	width: 40px;
	height: 40px;
	background-color: #b8001c;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	margin-right: 20px;
	flex-shrink: 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.step:hover .step-bubble {
	transform: scale(1.1);
}

/* Conteúdo */
.step-content {
	flex: 1;
}

.step-content .title {
	font-size: 1.4rem;
	font-weight: bold;
	color: #0a0c0f;
	margin-bottom: 6px;
}

.step-content p {
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

/* -----------Configuration for Desktop ------------- */
@media (min-width: 992px) {
	.steps-wrapper {
		position: relative;
		margin: 50px auto;
		/* padding: 20px 0; */
		/* width: 90%; */
		max-width: 900px;
	}

	.steps-wrapper::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 4px; /* largura da linha */
		height: 100%;
		background: #b8001c; /* cor da linha */
	}

	.step {
		position: relative;
		width: 50%;
		padding: 0px 40px;
		box-sizing: border-box;
		margin-bottom: 0px;
	}

	.step-bubble {
		position: absolute;
		top: 0px;
		right: -18px; /* ajuste quando está no lado esquerdo */
		width: 35px;
		height: 35px;
		border-radius: 50%;
		background: #b8001c;
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: bold;
	}

	/* Passos em lados alternados */
	.step:nth-child(odd) {
		left: 0;
		text-align: right;
		padding-left: 0px;
	}

	.step:nth-child(odd) .step-bubble {
		left: 433px;
	}

	.step:nth-child(even) {
		left: 50%;
		text-align: left;
		padding-right: 0px;
	}

	.step:nth-child(even) .step-bubble {
		left: -18px;
		right: auto;
	}
}

/* Intitucional */
.about-up {
	/* margin: 70px auto; */
	padding: 0px;
	text-align: left;
	align-items: flex-start;
	/* background-image: url(/img/Vancouver-bg-draw.webp); */
	background-image: url(/img/van.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}

.mask {
	background: rgba(255, 255, 255, 0.4);
	width: 100%;
	transition: 2s ease;
}

.mask.active {
	background: rgba(247, 248, 250, 0.9);
}

.timeline {
	display: flex;
	justify-content: space-around;
	gap: 80px;
	padding-top: 30px;
	text-align: left;
}
.milestone {
	flex: 1;
}

.milestone p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}
.milestone .reason {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #000;
}

/* 📱 Mobile friendly */
@media (max-width: 768px) {
	.ready {
		padding: 4rem 1rem !important;
	}

	.timeline {
		flex-direction: column;
		gap: 40px; /* menos espaço entre os blocos */
		padding-top: 20px;
		max-width: 90%;
		margin: auto;
	}

	.milestone {
		flex: none;
		width: 100%;
	}

	.milestone .reason {
		font-size: 1.3rem;
	}

	.milestone p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.about-up {
		padding: 4rem 1rem;
	}
	.about-up h2 {
		text-align: center; /* título centralizado no mobile */
		font-size: 1.8rem;
		padding: 20px;
	}
	.mask {
		background: rgba(255, 255, 255, 0.4);
		width: 100%;
		transition: 3.2s ease;
	}
	.mw900 {
		padding: 50px 0px;
	}
	.rating-bar {
		flex-direction: column;
		gap: 12px;
		max-width: fit-content;
		min-width: 100px;
		margin: auto;
		margin-bottom: 30px;
		border-radius: 30px;
	}
	.blog-grid {
		grid-template-columns: 1fr; /* uma coluna no mobile */
	}
	footer {
		grid-template-columns: 1fr; /* empilha colunas no mobile */
		text-align: center;
	}
	footer .social {
		justify-content: space-evenly;
	}
	.stats-grid::before {
		display: none; /* esconde a linha vertical no mobile */
	}
	.stats-grid {
		gap: 1rem !important; /* menos espaço entre os blocos */
	}
	.refusal-reasons h3 {
		text-align: center;
		padding: auto;
	}
	.reason-list {
		grid-template-columns: 1fr !important; /* uma coluna no mobile */
		justify-content: space-around;
		justify-items: stretch !important;
		width: fit-content !important;
	}
	.credentials-container {
		flex-direction: column;
		text-align: center;
	}

	.credentials {
		justify-content: center;
		flex-direction: column;
	}
	.credentials-foto {
		margin: 0 auto 20px;
	}
	.credentials img {
		width: 200px !important;
	}
	.credential h2 {
		text-align: center;
	}
	p.credential-text {
		padding: 0 20px;
		font-size: 1.7rem;
	}
	.hiw-title {
		font-size: 2rem;
	}
	.hiw-subtitle {
		font-size: 1.1rem;
	}
	.hiw-steps {
		grid-template-columns: 1fr !important; /* força uma coluna só */
	}
	#study-testimonials .reviews-grid {
		flex-direction: column;
		margin: auto;
		align-items: center;
	}

	#study-testimonials .review-card {
		max-width: 380px !important;
	}
}
/* ------------------------------------HOME ENDS -------------------------------- */
/* ------------------------------------STUDY PERMIT STARTS -------------------------------- */

.hero-secondary {
	background: var(--gray);
	/* padding: 6rem 2rem; */
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/* min-height: 700px; */
	padding: clamp(3rem, 6vw, 6rem) 1.5rem;
	min-height: clamp(420px, 60vh, 700px);
}
.page-study {
	background-image: url("/img/study-bg2.webp");
	background-position-x: center;
}
.page-work {
	background-image: url("/img/people-working-office1.webp");
	background-position-x: center;
}

.hero-secondary-container {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero-secondary h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
}
.hero-secondary .subtitle {
	font-size: 1.2rem;
	max-width: 500px;
	margin: 0 auto 2rem;
	color: var(--muted);
}
.subtitle {
	font-size: 1.2rem;
	max-width: 700px;
	margin: auto;
}

.hero-secondary .btn-primary {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: var(--radius);
	background: var(--brand);
	color: var(--light);
	font-weight: 600;
	transition: background 0.2s, transform 0.2s;
}
.hero-secondary .btn-primary:hover {
	background: var(--brand-light);
	transform: translateY(-2px);
}
.hero-secondary .secondary-cta {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

/* .problems h2,
.authority h2,
.process h2,
.reviews h2,
.faq h2,
.cta-final h2 {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 2rem;
} */

.container.mw900 {
	padding: 0;
	max-width: 900px;
}
.highlight {
	text-align: center;
	font-weight: 500;
	color: var(--brand);
}

.process ol {
	max-width: 700px;
	margin: 0 auto;
	padding-left: 1.5rem;
	font-size: 1rem;
	color: var(--muted);
}
.process ol li {
	margin-bottom: 1.2rem;
}

.faq .faq-item {
	max-width: 700px;
	margin: 0 auto 1.5rem;
}
.faq .faq-item h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	/* color: var(--brand); */
	color: #333;
	font-weight: 600;
}
.faq .faq-item p {
	color: var(--muted);
	line-height: 1.5;
}

.cta-final {
	background: var(--brand);
	color: var(--light);
	text-align: center;
}
.cta-final .btn-primary {
	background: var(--light);
	color: var(--brand);
	margin-top: 1rem;
}
.cta-final .btn-primary:hover {
	background: var(--brand-light);
	color: var(--light);
}

/* FAQ QUESTIONS */
.faq {
	padding: 60px 20px;
}

.faq h2 {
	margin-bottom: 35px;
	text-align: center;
}
.faq-item {
	margin-bottom: 20px;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
	overflow: hidden;
}

.faq-item h3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 15px 20px;
	margin: 0;
	color: var(--brand);
	font-size: 1.2rem;
}

.faq-item h3::after {
	content: "+";
	font-weight: bold;
	transition: transform 0.3s;
}

.faq-item.open h3::after {
	content: "–";
	transform: rotate(180deg);
}

.faq-item p {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	color: var(--dark);
	font-size: 1rem;
	line-height: 1.5;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open p {
	max-height: 500px; /* grande o suficiente para caber o conteúdo */
	padding: 15px 20px;
}

/* ---------------------------------------------- */

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 6rem;
	justify-items: center;
	margin: 2rem 0;
	position: relative;
}
.stats-grid::before {
	content: "";
	position: absolute;
	top: 15%;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: black;
	transform: translateX(-50%);
	z-index: -1;
	opacity: 0.1;
	height: 80%;
}

.stat-box {
	padding: 2rem;
	border-radius: var(--radius);
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 2px solid;
}

.stat-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-box .positive {
	border: #0a7c3d;
}
.stat-box .negative {
	border: #b8001c;
}

.stat-box h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.stat-box p {
	font-size: 0.95rem;
	color: var(--muted);
	margin: 0;
}
p.stata {
	font-size: 2rem;
	font-weight: 700;
	font-size: 2rem;
	margin: 1rem 0;
	color: #b8001c;
	transform: scale(1.05);
}

p.statb {
	font-size: 2rem;
	font-weight: 700;
	margin: 1rem 0;
	color: #0a7c3d;
	transform: scale(1.05);
}
.positive {
	color: #0a7c3d;
}
.negative {
	color: #b8001c;
}
.refusal-reasons h3 {
	margin-bottom: 1rem;
	max-width: fit-content;
	margin: auto;
}
.reason-list {
	display: grid;
	grid-template-columns: 1fr 1fr; /* duas colunas iguais */
	gap: 0.5rem 5%; /* espaço vertical e horizontal */
	max-width: 750px;
	width: 100%;
	margin: 20px auto;
	padding: 0;
	list-style: none;
	justify-items: start;
}

.reason-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 1rem;
	line-height: 1.6; /* garante que as duas colunas fiquem bem espaçadas */
}

.reason-list li::before {
	content: "✘";
	position: absolute;
	left: 0;
	top: 0;
	color: #b8001c;
	font-weight: bold;
	flex-shrink: 0;
}

.credentials-container {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	align-items: center;
	flex-wrap: wrap;
}

.credential-photo img {
	max-width: 300px;
	height: fit-content;
	border-radius: 12px;
}

.credential-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.credential-text {
	font-size: clamp(1.2rem, 1.6rem, 1.9rem);

	color: #333;
	line-height: 1.6;
	margin-bottom: 20px;
}

.credentials {
	display: flex;
	gap: 20px;
	align-items: center;
}

.credentials img {
	height: 100px;
	width: auto;
	object-fit: contain;
	padding: 10px;
	background-color: white;
}

.credentials img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* ------------------------------------STUDY PERMIT ENDS -------------------------------- */
.how-it-works {
	padding: 60px 20px;
	text-align: center;
}

/* #study-permit-process {
	background: var(--gray);
} */
/* #study-permit-process.active {
	background: #333;
	transition: background 2s;
	color: #fff;
} */
/* #study-permit-process.active h2 {
	color: #fff;
	transition: background 2s;
} */
/* #study-permit-process.active p.hiw-subtitle {
	color: #ddd;
	transition: background 2s;
} */

.hiw-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	color: var(--dark);
}

.hiw-subtitle {
	font-size: 1.2rem;
	color: var(--muted);
	max-width: 80%;
	margin: 40px auto;
	text-align: center;
}

.hiw-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.hiw-step {
	background: #fff;
	border: 1px solid #eee;
	border-radius: var(--radius);
	padding: 20px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.hiw-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.step-number {
	width: 36px;
	height: 36px;
	background: var(--brand);
	color: var(--light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin: 0 auto 15px;
}

.hiw-step h3 {
	font-size: 1.4rem;
	/* color: var(--brand); */
	margin-bottom: 10px;
}

.hiw-step p {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.5;
}

.btn-main {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: var(--radius);
	background: var(--brand);
	color: var(--light);
	font-weight: 600;
	transition: background 0.2s, transform 0.2s;
}
.btn-main:hover {
	background: var(--brand-light);
	transform: translateY(-2px);
}

.problems .btn-main {
	margin-top: 3rem;
}
.problems .btn-main:hover {
	background-color: #0a7c3d;
	transform-style: preserve-3d;
	transition-duration: 0.3s;
	transform: perspective(10000px) rotateY(360deg);
}

#study-testimonials .rating-bar {
	background: var(--gray);
	border-bottom: 0px;
}

#study-testimonials .reviews-footer a {
	color: #333;
}

#study-testimonials .review-card {
	max-width: 280px;
}

#study-testimonials .reviews-grid {
	gap: 15px;
}

#study-testimonials .review-header {
	margin-bottom: 15px;
}
/* CSS para Submit Question Section */

.submit-question-section {
	padding: 60px 20px;
	background: #f7f8fa; /* cinza claro ou o background neutro que você usar */
	text-align: center;
}

.submit-question-section h2 {
	font-size: 2.2rem;
	color: var(--dark);
	margin-bottom: 12px;
}

.submit-question-section p {
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 30px;
}

.question-form {
	min-width: 600px;
	max-width: 600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	padding-bottom: 15px;
}

.question-form input,
.question-form textarea {
	padding: 12px 15px;
	border-radius: var(--radius);
	border: 1px solid #ccc;
	font-size: 1rem;
	resize: vertical;
}

.question-form input:focus,
.question-form textarea:focus {
	outline: 2px solid var(--brand-light);
	border-color: var(--brand-light);
}

.question-form button.btn-primary {
	padding: 14px 0;
	font-size: 1.1rem;
	border: none;
	border-radius: var(--radius);
	background: var(--brand);
	color: var(--light);
	cursor: pointer;
	transition: background 0.3s ease;
}

.question-form button.btn-primary:hover {
	background: var(--brand-light);
}
#formMessage {
	margin-top: 15px;
	text-align: center;
	font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
	.submit-question-section {
		padding: 40px 15px;
	}
	.question-form {
		min-width: 350px;
		gap: 12px;
	}
}

/* Transformation strip (no cards) */
.transformation-strip {
	background: var(--light);
	position: relative;
	text-align: left;
}

.trf-wrap {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: 28px;
	max-width: fit-content;
	margin: auto;
}

.trf-col {
	padding: 8px 0;
}
.trf-h {
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--muted);
}

.trf-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--dark);
}
.trf-before .trf-list li {
	position: relative;
	padding-left: 26px;
}
.trf-before .trf-list li::before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
	color: #999;
}

.trf-after .trf-list li {
	position: relative;
	padding-left: 26px;
}
.trf-after .trf-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--brand);
	font-weight: 700;
}

.trf-arrow {
	align-self: center;
	font-size: 2rem;
	line-height: 1;
	color: var(--brand);
	padding: 0 6px;
}

.trf-cta {
	display: grid;
	justify-items: center;
	gap: 8px;
	margin-top: 24px;
	text-align: center;
}
.trf-note {
	color: var(--muted);
	font-size: 0.98rem;
}
.trf-note a {
	color: var(--brand);
}

.trf-quote {
	margin: 28px auto 0;
	max-width: 720px;
	text-align: center;
	color: var(--dark);
}
.trf-quote blockquote {
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0;
}
.trf-quote figcaption {
	margin-top: 6px;
	font-size: 0.95rem;
	color: var(--muted);
}

/* responsive */
@media (max-width: 900px) {
	.trf-wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.trf-arrow {
		display: none;
	}
	.trf-title {
		margin-bottom: 16px;
	}
	.trf-before {
		text-align: center;
	}

	.trf-after {
		text-align: center;
	}
}

/* ADITIONAL SERVICES */
/* Section + container */
.services-section {
	padding: 80px 16px;
}
.container {
	max-width: 80rem;
	margin: 0 auto;
}

/* Header */
.section-header {
	text-align: center;
	margin-bottom: 1.5rem;
}
.section-header h2 {
	margin: 0 0 0.5rem;
	/* font-size: clamp(1.875rem, 2.5vw, 2.25rem); */
	font-weight: 700;
	color: var(--dark);
}
.section-header p {
	margin: 0 auto;
	max-width: 38rem;
	font-size: 1.125rem;
	color: var(--muted);
}

/* Grid */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.card-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.category .card-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Card */
.card {
	background: #ffffff;
	color: #0a0c0f;
	border: 1px solid #e6e8ec;
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.card-body {
	padding: 1.5rem;
}
.card-content {
	padding: 1.5rem;
	padding-top: 0;
}

.card-icon {
	width: 48px;
	height: 48px;
	background: var(--gray);
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transition: background 0.2s ease, color 0.2s ease;
	color: var(--brand); /* affects SVG (currentColor) */
}
.card:hover .card-icon {
	background: var(--brand);
	color: #fff;
}

.card h3 {
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.2px;
	font-size: 1.25rem;
	color: #0a0c0f;
}

.desc {
	color: #62656f;
	font-size: 0.95rem;
	margin: 0 0 1rem;
}

/* Inline button link */
.btn-inline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: 36px;
	padding: 0;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #b8001c;
	text-decoration: none;
	transition: color 0.15s ease, background 0.15s ease;
	outline: none;
}
.btn-inline:hover {
	color: #8a0015;
}

.btn-inline .arrow {
	width: 25px;
	height: 25 px;
	flex-shrink: 0;
}

.wp-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.wp-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}
.wp-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--dark);
}
.wp-card h4 {
	font-size: 1.2rem;
	margin-bottom: 0rem;
	color: var(--dark);
	padding-top: 25px;
}
.wp-card p {
	color: var(--muted);
	/* margin-bottom: 2rem; */
	padding-top: 10px;
}
.wp-card ul {
	list-style: none;
	padding: 0px;
	margin: 0 0 1.5rem;
}
.wp-card li {
	padding: 5px 0px;
}

.wp-card li::before {
	content: "✓ ";
	color: var(--brand);
	font-weight: bold;
}
.wp-link {
	font-weight: 600;
	color: var(--brand);
	text-decoration: none;
}
.wp-link:hover {
	color: var(--brand-hover);
}

.page-pr {
	background-image: url("/img/women-airport.webp"); /* troque pela imagem correta */
	background-position: center;
	background-size: cover;
}
.page-humanitarian {
	background-image: url("/img/holding-hands-hospital.webp"); /* troque pela imagem correta */
	background-position: center;
	background-size: cover;
}
.page-consultation {
	background-image: url("/img/two-people-in-a-meeting.png"); /* troque pela imagem correta */
	background-position: center;
	background-size: cover;
}
.page-owp {
	background-image: url("/img/workers-outside-office.webp"); /* troque pela imagem correta */
	background-position: top;
	background-size: cover;
}

.page-contact {
	background: url("/img/contact-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.services-section .contact-card {
	background: #fff; /* var(--light) existe, mas aqui vai direto para evitar dependência */
	border: 1px solid #e6e8ec;
	border-radius: var(--radius);
	padding: 1.25rem 1.25rem 1rem;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease,
		border-color 0.18s ease;
}
.services-section .contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
	border-color: #edd2d7; /* sutil “hint” do brand */
}

.services-section .contact-card p {
	color: var(--muted);
	font-size: 0.98rem;
}

.services-section .contact-card .btn-inline {
	margin-top: 0.9rem;
	color: var(--brand);
	font-weight: 600;
	height: auto;
	border: 2px solid rgba(184, 0, 28, 0.35);
	border-radius: 08px;
	transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease,
		transform 0.06s ease;
}

.services-section .contact-card .btn-inline:hover {
	color: var(--brand-light);
}

.services-section .section-header p {
	margin: 0;
	color: var(--muted);
	justify-self: center;
}

.cc-icon-svg {
	width: 32px;
	height: 32px;
	fill: #b8001c; /* Up Immigration Red */
	display: block;
	flex-shrink: 0;
}

.quick-connect {
	display: flex;
	flex-direction: row;
	gap: 50px;
}
/* ------ */

.contact-card h3 {
	display: flex;
	align-items: center;
	gap: 15px; /* espaço entre ícone e texto */
	margin: 0 0 0.9rem 0; /* reduz espaço abaixo do título */
	font-size: 1.5rem;
}

.contact-card a {
	display: inline-block;
	margin: 0;
	min-width: 240px;
}
article.contact-card,
a.btn-inline {
	justify-items: center;
	text-align: center;
}

@media (max-width: 768px) {
	.quick-connect {
		flex-direction: column;
	}
}

/* Overlay Style */

.up-card-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	justify-content: space-around;
}
.up-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 280px;
	text-align: center;
	padding-bottom: 15px;
	border: 1px solid #ececec;
}
.up-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.up-card h3 {
	margin-top: 10px;
	font-size: 1.4rem;
}
.up-card p {
	font-size: 0.9rem;
	color: #333;
	padding: 0 20px;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 15px;
}

/* Overlay container */
.up-book-overlay {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 9999;
}
.up-book-overlay[aria-hidden="false"] {
	display: block;
}
.up-book-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

/* Modal */
.up-book-modal {
	position: relative;
	margin: 4vh auto;
	max-width: 1100px;
	min-width: 85%;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	padding: 20px;
}
.up-book-title {
	font-size: 30px;
	margin: 6px 4px 12px;
	text-align: center;
	padding-bottom: 15px;
}
.up-book-close {
	position: absolute;
	top: 15px;
	right: 25px;
	border: 0;
	background: #fff;
	font-size: 28px;
	cursor: pointer;
}

/* Mobile: fullscreen */
@media (max-width: 720px) {
	.up-book-modal {
		margin: 0;
		width: 100%;
		height: 100%;
		border-radius: 0;
		overflow: auto;
	}
	.up-card {
		width: 90%;
	}
}

/* ABOUT US PAGE */

/* Hero image for About (same pattern as study/work/pr) */
.page-about {
	background-image: url("/img/open-office.webp"); /* swap for your hero */
	background-position-x: center;
}

/* Team grid/cards — minimal, follows your card style rhythm */
.team-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	max-width: 1200px;
}
@media (min-width: 780px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.team-card {
	background: #fff;
	/* border: 1px solid var(--border); */
	border: 2px solid var(--gray);
	padding-top: 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease,
		border-color 0.18s ease;
}
.team-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	border-color: #e1e3e8;
}
.team-photo img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	display: block;
}
.team-body {
	padding: 1.25rem 1.25rem 1rem;
	background: var(--gray);
	height: -webkit-fill-available;
}
.team-body h3 {
	margin: 0 0 0.25rem;
	font-size: 1.15rem;
}
.team-body .role {
	margin: 0.1rem 0 0.5rem;
	color: var(--muted);
	font-size: 0.95rem;
}
.team-actions {
	margin-top: 0.25rem;
}

/* Optional: tighten values grid on very wide screens */
@media (min-width: 1100px) {
	#values .card-grid {
		grid-template-columns: repeat(4, 1fr);
		max-width: 1200px;
	}
}

/* test rcic section */

/* === RCIC badge === */
.rcic-section {
	padding: 60px 20px;
	background-image: url("/img/RCIC-background.webp");
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
}

.rcic-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	max-width: 1200px;
	padding: 32px;
	align-items: center;
}

.rcic-logo img {
	width: 320px;
	height: auto;
	display: block;
}

.rcic-content {
	flex: 1;
	min-width: 260px;
	max-width: 550px;
}

.rcic-content h3 {
	margin: 0 0 12px;
	font-size: 1.4rem;
	color: #0a0c0f;
}

.rcic-content p {
	margin: 0 0 12px;
	color: #333;
	line-height: 1.5;
}

.rcic-list {
	list-style: disc inside;
	margin: 0 0 20px;
	padding: 0;
	color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
	.rcic-card {
		flex-direction: column;
		text-align: center;
	}
	.rcic-logo img {
		margin-bottom: 16px;
	}
}
.rcic-list a .btn-inline {
	color: green;
}

.larissa-section {
	background-image: url("/img/Larissa-section\ \(1\).webp");
	background-repeat: no-repeat;
	min-height: 700px;
	background-color: #b8001c; /* cor de fundo caso a imagem não carregue */
	display: flex;
	align-items: center;
}

.larissa-content {
	/* container centralizado para limitar largura */
	/* max-width: 1200px; */
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: flex-end; /* empurra o conteúdo para a direita */
	max-width: 90%;
}

.aboutup-section {
	padding-left: 900px;
}

.aboutup-section h2 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	color: #fff;
}
.aboutup-section p {
	font-size: 2.5rem;
	color: #fff;
	line-height: 1.5;
}

@media screen and (max-width: 1750px) {
	.aboutup-section h2 {
		font-size: 3rem;
	}
	.aboutup-section p {
		font-size: 2rem;
	}
}
@media screen and (max-width: 1500px) {
	.aboutup-section h2 {
		font-size: 2.5rem;
	}
	.aboutup-section p {
		font-size: 1.5rem;
	}
}
/* @media screen and (max-width: 1300px) {
	.aboutup-section {
		padding-left: 0px;
		
		max-width: 50%;
		margin: auto;
		padding: 50px;
		border-radius: 10px;
	}
	.aboutup-section p,
	.aboutup-section H2 {
		color: #000;
	}
} */

@media screen and (max-width: 1300px) {
	.larissa-section {
		/* background-image: url(""); */
		background-repeat: no-repeat;
		background-size: cover;
	}
	.aboutup-section {
		padding: 0px;
		max-width: 100%;
		margin: auto;
		border-radius: 10px;
	}
	.aboutup-section p,
	.aboutup-section H2 {
		color: #fff;
		text-align: center;
	}
}
/* Card Below hero */
.paths {
	padding: 38px 0;
}
.paths-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	padding: 0 100px;
}

.card {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2; /* evita CLS */
	object-fit: cover;
}

/* pill sobre a imagem (bottom-right) */
.card .pill {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 10px 14px;
	background: #fff;
	color: #111;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.card:hover .pill {
	transform: translateY(-1px);
}

/* responsivo */
@media (max-width: 900px) {
	.paths-grid {
		grid-template-columns: 1fr;
		padding: 0 20px;
	}
}

.wa-float {
	position: fixed;
	right: 35px;
	bottom: 40px;
	width: 65px;
	height: 65px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #25d366; /* verde WhatsApp (reconhecível) */
	color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
	line-height: 0;
}
.wa-float:hover {
	transform: translateY(-2px);
}
.wa-float:active {
	transform: translateY(0);
}
@media (max-width: 420px) {
	.wa-float {
		right: 14px;
		bottom: 14px;
		width: 52px;
		height: 52px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.wa-float {
		transition: none;
	}
}

/* //////////////// */
/* ===== Seção “Conhecendo a Larissa” ===== */
.bio-larissa .bio-wrap {
	display: grid;
	grid-template-columns: 360px 1fr; /* foto | conteúdo */
	gap: 24px;
	align-items: start;
}
@media (max-width: 900px) {
	.bio-larissa .bio-wrap {
		grid-template-columns: 1fr;
	}
}

/* Foto com cantos suaves */
.bio-larissa .bio-photo {
	margin: 0;
	width: 100%;
	max-width: 360px;
	border-radius: 14px;
	overflow: hidden;
	background: #f3f4f6;
	box-shadow: 0 1px 0 #eef2f7 inset;
}
.bio-larissa .bio-photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Intro grande e limpa (sem bullets) */
.bio-larissa .bio-intro {
	margin: 0 0 12px;
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.6;
	color: #374151;
}

/* Duas colunas internas */
.bio-larissa .bio-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 24px;
}
@media (max-width: 640px) {
	.bio-larissa .bio-columns {
		grid-template-columns: 1fr;
	}
}

.bio-larissa .bio-col h3 {
	margin: 8px 0 8px;
	font-size: 16px;
	font-weight: 700;
}

.bio-larissa .bio-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #374151;
	line-height: 1.6;
}

/* CTAs alinhados à esquerda, com respiro */
.bio-larissa .bio-cta {
	margin-top: 14px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* humanitarian */

/* Secondary page pattern — clean, scan-friendly */
.sec {
	padding: 48px 0;
}
.sec__header h2 {
	margin: 0;
}
.sec__header .lead {
	margin: 8px 0 20px;
	color: #555;
}

/* 3 simple columns on desktop, stack on mobile */
.grid-3 {
	display: grid;
	gap: 16px;
}
@media (min-width: 960px) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Column blocks */
.level {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 16px 16px 12px;
}
.level h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

/* Bullets with subtle separators for scanability */
.bullets {
	list-style: disc;
	padding-left: 18px;
	margin: 0;
}
.bullets li {
	padding: 6px 0;
	border-top: 1px solid #f2f2f2;
}
.bullets li:first-child {
	border-top: 0;
}

/* Micro note */
.micro-note {
	margin-top: 10px;
	color: #777;
	font-size: 14px;
}
/* pagina de consulta */
.expect-grid {
	display: grid;
	gap: 16px;
	align-items: start;
}
@media (min-width: 900px) {
	.expect-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.expect-grid li {
	display: grid;
	gap: 18px;
	align-items: start;
	background: #fff0;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	padding: 12px 14px 12px 20px;
	background-color: #ffffff;
	height: 100%;
	width: 100%;
	max-width: 350px;
}
.expect-grid .chk {
	color: #1ea97c;
	line-height: 1;
}
.expect-grid strong {
	display: block;
	margin-bottom: 4px;
	line-height: 1.25;
}
.expect-grid .content {
	color: #333;
	opacity: 0.9;
}
.expect-cta {
	text-align: center;
	margin-top: 22px;
}

/* spousal-section */ /* common-mistakes */
#common-mistakes .card-grid {
	gap: 1rem;
}

#common-mistakes h3 {
	font-size: 1.5rem;
	margin-bottom: 0px;
}
#common-mistakes .wp-card {
	grid-template-columns: 2fr;
	max-width: 450px;
	margin: auto;
	padding: 1.3rem;
}
