/* =========================================================
   Recurso Fácil — estilos do tema
   ========================================================= */

:root {
	--rf-azul-900: #04174a;
	--rf-azul-800: #002172;
	--rf-azul-700: #0a3a9e;
	--rf-azul-600: #2854bf;
	--rf-azul-500: #1f5ce8;
	--rf-azul-400: #0c66fb;
	--rf-azul-200: #a9c6f7;
	--rf-azul-100: #dfeaff;
	--rf-azul-050: #eef4ff;

	--rf-texto: #3d4551;
	--rf-fundo: #fdfdfd;
	--rf-branco: #ffffff;
	--rf-borda: #e4e9f2;
	--rf-trilho: #eef0f9;
	--rf-amarelo: #fcc53e;
	--rf-vermelho: #d92d20;

	--rf-escuro: #090f18;
	--rf-escuro-cartao: #141922;
	--rf-escuro-borda: #1e2531;
	--rf-escuro-texto: #8a94a6;
	--rf-verde: #22c55e;

	--rf-raio: 16px;
	--rf-raio-g: 22px;
	--rf-sombra-cartao: 0 6px 28px rgba(11, 45, 143, .07);
	--rf-sombra-alta: 0 14px 40px rgba(11, 45, 143, .14);

	--rf-container: 1180px;
}

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

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

body {
	margin: 0;
	background: var(--rf-fundo);
	color: var(--rf-texto);
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rf-azul-500); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	margin: 0;
	color: var(--rf-azul-900);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -.01em;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--rf-azul-400); outline-offset: 2px; border-radius: 6px; }

.rf-somente-leitor {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.rf-pular {
	position: absolute; left: -9999px; top: 8px; z-index: 999;
	background: var(--rf-azul-600); color: #fff;
	padding: 10px 18px; border-radius: 10px;
}
.rf-pular:focus { left: 12px; }

.rf-container {
	width: 100%;
	max-width: var(--rf-container);
	margin: 0 auto;
	padding: 0 16px;
}

.rf-icone { width: 22px; height: 22px; flex: none; }
.rf-destaque { color: var(--rf-azul-400); }

.rf-cartao {
	background: var(--rf-branco);
	border: 1px solid var(--rf-borda);
	border-radius: var(--rf-raio-g);
	box-shadow: var(--rf-sombra-cartao);
}

.rf-secao { padding: 26px 0; }

/* ---------------------------------------------------------------- cabeçalho */

.rf-topo {
	position: sticky; top: 0; z-index: 60;
	background: rgba(253, 253, 253, .95);
	backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--rf-borda);
}

.rf-topo__interno {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; min-height: 64px;
}

.rf-logo-link { display: inline-flex; align-items: center; }
.rf-logo-link:hover { text-decoration: none; }
.rf-logo { width: auto; height: 34px; }
.rf-logo--menu { height: 30px; }
.rf-logo--rodape { height: 38px; }

.rf-nav { display: none; }

.rf-menu-lista { display: flex; align-items: center; gap: 24px; }
.rf-menu-lista a {
	color: #2b3444; font-size: 15px; font-weight: 400;
	padding: 8px 0; border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.rf-menu-lista a:hover { text-decoration: none; color: var(--rf-azul-500); border-bottom-color: var(--rf-azul-500); }

.rf-botao-login {
	display: none;
	padding: 9px 26px;
	border: 1px solid var(--rf-azul-500);
	border-radius: 8px;
	color: var(--rf-azul-500);
	font-size: 15px; font-weight: 500;
	white-space: nowrap;
}
.rf-botao-login:hover { text-decoration: none; background: var(--rf-azul-500); color: #fff; }

.rf-hamburguer {
	display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; padding: 0 8px;
	background: none; border: 0; cursor: pointer;
}
.rf-hamburguer span {
	display: block; height: 3px; border-radius: 3px;
	background: #55606f; transition: transform .25s ease, opacity .2s ease;
}
.rf-hamburguer[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rf-hamburguer[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rf-hamburguer[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* menu deslizante */

.rf-menu { position: fixed; inset: 0; z-index: 80; }
.rf-menu[hidden] { display: none; }

.rf-menu__fundo {
	position: absolute; inset: 0;
	background: rgba(4, 23, 74, .45);
	opacity: 0; transition: opacity .25s ease;
}
.rf-menu.esta-aberto .rf-menu__fundo { opacity: 1; }

.rf-menu__painel {
	position: absolute; top: 0; right: 0;
	width: min(340px, 86vw); height: 100%;
	background: var(--rf-branco);
	padding: 16px 20px 28px;
	box-shadow: -18px 0 50px rgba(4, 23, 74, .18);
	transform: translateX(100%);
	transition: transform .28s cubic-bezier(.22, .61, .36, 1);
	overflow-y: auto;
}
.rf-menu.esta-aberto .rf-menu__painel { transform: translateX(0); }

.rf-menu__topo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }

.rf-menu__fechar {
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--rf-borda); border-radius: 12px;
	background: var(--rf-branco); color: var(--rf-azul-900); cursor: pointer;
}

.rf-menu__conteudo .rf-menu-lista { display: block; }
.rf-menu__conteudo li + li { border-top: 1px solid var(--rf-borda); }
.rf-menu__conteudo a {
	display: block; padding: 15px 2px;
	font-size: 16px; font-weight: 500; border: 0;
}

.rf-botao-login--menu {
	display: block; margin-top: 22px;
	padding: 14px; text-align: center; border-radius: 10px;
}

/* ------------------------------------------------- bloco superior da home */

.rf-secao--topo { padding-top: 18px; }

.rf-titulo-pagina {
	font-size: clamp(18px, 4.6vw, 22px);
	font-weight: 600;
	letter-spacing: -.005em;
	text-transform: uppercase;
	color: #3d3c3d;
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--rf-borda);
}

.rf-topo-grade { display: flex; flex-direction: column; gap: 22px; }
.rf-coluna { display: contents; }

.rf-bloco--hero { order: 1; }
.rf-bloco--form { order: 2; }
.rf-bloco--porque { order: 3; }
.rf-bloco--explicacao { order: 4; }
.rf-bloco--faq { order: 5; }

.rf-bloco--depoimentos { margin-top: 22px; }
.rf-bloco--depoimentos img { max-width: 900px; margin: 0 auto; }

.rf-hero__arte { width: 100%; border-radius: 4px; }

/* formulário */

.rf-cartao--form { padding: 24px 20px 22px; }

.rf-titulo-form {
	font-size: clamp(19px, 4.8vw, 22px);
	font-weight: 600; margin-bottom: 8px;
}

.rf-selo-gratis {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 18px;
	font-size: 14px; color: #5c6470; line-height: 1.35;
}
.rf-selo-gratis strong { color: var(--rf-azul-400); font-weight: 600; }
.rf-selo-gratis__icone { width: 18px; height: 18px; color: var(--rf-azul-400); }

.rf-campo { margin-bottom: 16px; }

.rf-campo__rotulo {
	display: block; margin-bottom: 7px;
	font-size: 14.5px; color: #5c6470;
}

.rf-obrigatorio { color: var(--rf-vermelho); }

.rf-campo__caixa {
	display: flex; align-items: center; gap: 10px;
	padding: 0 14px;
	border: 1px solid #dfe3ec; border-radius: 12px;
	background: var(--rf-branco);
	transition: border-color .18s ease, box-shadow .18s ease;
}
.rf-campo__caixa:focus-within {
	border-color: var(--rf-azul-500);
	box-shadow: 0 0 0 4px rgba(31, 92, 232, .12);
}

.rf-campo__icone { display: inline-flex; color: #8a91a0; }
.rf-campo__icone .rf-icone { width: 24px; height: 24px; }

.rf-campo__caixa input {
	flex: 1; min-width: 0; border: 0; background: none;
	padding: 15px 0; font: inherit; font-size: 16px; color: var(--rf-azul-900);
}
.rf-campo__caixa input:focus { outline: none; }
.rf-campo__caixa input::placeholder { color: #a7adb9; }

.rf-campo--erro .rf-campo__caixa { border-color: var(--rf-vermelho); }
.rf-campo__erro { margin-top: 6px; font-size: 13.5px; color: var(--rf-vermelho); }

.rf-botao {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	border: 0; border-radius: 12px; font-weight: 600; cursor: pointer; text-align: center;
	transition: background .18s ease, transform .12s ease, color .18s ease;
}
.rf-botao:hover { text-decoration: none; }
.rf-botao:active { transform: translateY(1px); }

.rf-botao--principal {
	position: relative; width: 100%; margin-top: 20px;
	padding: 18px 20px;
	background: var(--rf-azul-600); color: #fff; font-size: 17px;
	box-shadow: 0 6px 18px rgba(40, 84, 191, .25);
}
.rf-botao--principal:hover { background: #2249a8; }

.rf-botao__seta { position: absolute; right: 22px; width: 24px; height: 24px; transition: transform .2s ease; }
.rf-botao--principal:hover .rf-botao__seta { transform: translateX(3px); }

.rf-link-ajuda {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	width: 100%; margin-top: 18px; padding: 4px;
	background: none; border: 0; cursor: pointer;
	font-size: 15.5px; font-weight: 500; color: var(--rf-azul-500);
}
.rf-link-ajuda:hover { text-decoration: underline; }

/* por que recurso fácil */

.rf-porque {
	position: relative; overflow: hidden;
	padding: 20px 18px 18px;
	border-radius: 18px;
	background: linear-gradient(160deg, #0131bc 0%, #002aad 48%, #082e90 100%);
	color: #fff;
}
.rf-porque::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, .16) 1.1px, transparent 1.2px);
	background-size: 16px 16px;
	opacity: .3; pointer-events: none;
}
.rf-porque::after {
	content: ""; position: absolute;
	right: -20%; top: -30%; width: 90%; height: 160%;
	background: radial-gradient(closest-side, rgba(60, 120, 255, .22), transparent);
	pointer-events: none;
}

.rf-porque > * { position: relative; z-index: 1; }

.rf-porque__acima {
	font-size: clamp(15px, 4vw, 20px);
	font-weight: 300; line-height: 1.1; color: #fff;
}

.rf-porque__titulo {
	font-size: clamp(21px, 5.6vw, 30px);
	font-weight: 700; color: #fff; letter-spacing: -.02em;
	line-height: 1.05; margin-bottom: 14px;
}

.rf-porque__lista { display: grid; gap: 9px; max-width: 420px; }
.rf-porque__lista li {
	display: flex; align-items: center; gap: 11px;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.rf-porque__lista li:last-child { border-bottom: 0; padding-bottom: 0; }
.rf-porque__lista p { font-size: clamp(13.5px, 3.5vw, 16px); line-height: 1.25; color: #fff; }
.rf-porque__lista strong { color: #4aa8ff; font-weight: 600; }

.rf-porque__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; flex: none;
	border: 1.3px solid rgba(255, 255, 255, .5);
	border-radius: 50%; color: #fff;
}
.rf-porque__icone .rf-icone { width: 19px; height: 19px; }

.rf-porque__arte { width: 46%; max-width: 210px; margin: 4px auto -4px; }

/* depoimentos e explicação */

.rf-bloco--depoimentos img { width: 100%; border-radius: 20px; }

.rf-cartao--explicacao {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 22px 20px; background: #f7f9ff;
}
.rf-cartao--explicacao p {
	font-size: 16px; line-height: 1.5; color: #33507f;
	border-left: 2px solid var(--rf-azul-200); padding-left: 16px;
}
.rf-cartao--explicacao strong { color: var(--rf-azul-400); font-weight: 600; }

.rf-explicacao__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 62px; height: 62px; flex: none;
	border-radius: 16px; background: var(--rf-azul-100); color: var(--rf-azul-700);
}
.rf-explicacao__icone .rf-icone { width: 32px; height: 32px; }

/* perguntas frequentes */

.rf-faq { display: grid; gap: 10px; }

.rf-faq__item {
	background: #f7f9fc; border: 1px solid #edf1f8;
	border-radius: var(--rf-raio); overflow: hidden;
}

.rf-faq__cabecalho { margin: 0; }

.rf-faq__botao {
	font-weight: 400;
	display: flex; align-items: center; gap: 14px; width: 100%;
	padding: 16px; background: none; border: 0; text-align: left; cursor: pointer;
}

.rf-faq__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; flex: none;
	border-radius: 14px; background: var(--rf-azul-050); color: var(--rf-azul-600);
}
.rf-faq__icone .rf-icone { width: 25px; height: 25px; }

.rf-faq__texto { flex: 1; min-width: 0; }
.rf-faq__pergunta { display: block; font-size: 15.5px; font-weight: 600; color: var(--rf-azul-900); line-height: 1.3; }
.rf-faq__resumo { display: block; margin-top: 4px; font-size: 14px; font-weight: 400; line-height: 1.35; color: #5f6b7d; }

.rf-faq__seta {
	flex: none; width: 11px; height: 11px;
	border-right: 2.2px solid var(--rf-azul-600);
	border-bottom: 2.2px solid var(--rf-azul-600);
	transform: rotate(-45deg); transition: transform .25s ease;
}
.rf-faq__botao[aria-expanded="true"] .rf-faq__seta { transform: rotate(45deg); }

.rf-faq__resposta { padding: 0 18px 18px 78px; }
.rf-faq__resposta p { font-size: 14.5px; color: #4b5665; line-height: 1.55; }
/* ----------------------------------------------- apresentação (25.970) */

.rf-secao--apresentacao { padding-top: 34px; }

.rf-titulo-grande {
	font-size: clamp(31px, 8.4vw, 46px);
	font-weight: 700; line-height: 1.1; letter-spacing: -.02em; max-width: 12ch;
}

.rf-subtitulo { margin-top: 12px; max-width: 34ch; font-size: 15.5px; color: #55606f; line-height: 1.45; }

.rf-palco { position: relative; max-width: 720px; margin: 8px auto 0; }
.rf-palco__arte { width: 100%; }

.rf-destaques {
	display: grid; grid-template-columns: repeat(3, 1fr);
	align-items: end; gap: 10px;
	margin-top: -6.7%;
	position: relative; z-index: 2;
}

.rf-destaque-card {
	background: rgba(255, 255, 255, .97);
	border-radius: 18px; padding: 18px 10px 20px; text-align: center;
	box-shadow: var(--rf-sombra-alta);
}
.rf-destaque-card h3 { font-size: clamp(15px, 4vw, 19px); line-height: 1.2; }
.rf-destaque-card p { font-size: clamp(13px, 3.6vw, 16px); color: #46505f; line-height: 1.3; }
.rf-destaque-card strong { color: var(--rf-azul-400); font-weight: 700; }

.rf-destaque-card__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; margin-bottom: 12px;
	border-radius: 50%; background: var(--rf-azul-400); color: #fff;
}
.rf-destaque-card__icone .rf-icone { width: 27px; height: 27px; }

.rf-destaque-card__escudo { display: inline-flex; color: var(--rf-azul-500); margin-bottom: 6px; }
.rf-destaque-card__escudo .rf-icone {
	width: 46px; height: 46px; stroke-width: 1.4;
	fill: var(--rf-azul-500); stroke: #fff;
}

.rf-destaque-card__acima { font-size: 14px; color: #55606f; }

.rf-numerao {
	display: block; font-size: clamp(24px, 7vw, 34px); font-weight: 700;
	color: var(--rf-azul-400); letter-spacing: -.02em; line-height: 1.1;
}

.rf-tracinho {
	display: block; width: 26px; height: 3px; margin: 8px auto;
	border-radius: 3px; background: var(--rf-azul-900); opacity: .85;
}
.rf-destaque-card--numero .rf-tracinho { background: var(--rf-azul-400); }

.rf-faixa-confianca {
	display: flex; align-items: center; gap: 14px;
	margin-top: 22px; padding: 18px 20px; border-radius: 18px;
	background: linear-gradient(105deg, #1f4fd0 0%, #123bb0 55%, #0d2f96 100%);
	color: #fff; box-shadow: 0 12px 30px rgba(18, 59, 176, .28);
}
.rf-faixa-confianca h3 { color: #fff; font-size: 17px; margin-bottom: 3px; }
.rf-faixa-confianca p { font-size: 14.5px; line-height: 1.4; color: rgba(255, 255, 255, .92); }
.rf-faixa-confianca strong { color: #fff; }

.rf-faixa-confianca__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; flex: none;
	border-radius: 16px; background: rgba(255, 255, 255, .16); color: #fff;
}
.rf-faixa-confianca__icone .rf-icone { width: 30px; height: 30px; }

/* --------------------------------------------------------- infrações */

.rf-arte-infracoes { margin: 0; }
.rf-arte-infracoes img {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	border-radius: 20px;
}

/* -------------------------------------------------------- avaliações */

.rf-secao--avaliacoes .rf-cartao { margin-bottom: 14px; }
.rf-secao--avaliacoes .rf-cartao:last-child { margin-bottom: 0; }

.rf-cartao--nota { padding: 24px 20px; }
.rf-cartao--nota h2 { font-size: clamp(24px, 6.4vw, 32px); }

.rf-estrelas { display: inline-flex; gap: 3px; color: var(--rf-amarelo); margin-top: 12px; }
.rf-estrelas svg { width: 26px; height: 26px; }

.rf-nota-linha { margin-top: 6px; font-size: 16.5px; color: var(--rf-azul-900); }
.rf-nota-linha strong { font-weight: 700; }
.rf-nota-linha span { color: #7b8492; font-weight: 400; }

.rf-barras { margin-top: 16px; display: grid; gap: 9px; }

.rf-barra {
	display: grid; grid-template-columns: 84px 1fr 42px;
	align-items: center; gap: 10px; font-size: 14.5px; color: #4a5361;
}
.rf-barra__trilho { height: 10px; border-radius: 6px; background: var(--rf-trilho); overflow: hidden; }
.rf-barra__preenchimento { display: block; height: 100%; border-radius: 6px; background: var(--rf-azul-400); min-width: 5px; }
.rf-barra__valor { color: #7b8492; }

.rf-recomendam {
	display: flex; align-items: center; gap: 12px;
	margin-top: 18px; padding-top: 18px;
	border-top: 1px solid var(--rf-borda); font-size: 16px; color: #3d4551;
}
.rf-recomendam strong { color: var(--rf-azul-400); font-weight: 700; }
.rf-recomendam__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; flex: none; border-radius: 50%;
	border: 1px solid var(--rf-azul-100); background: #f4f8ff; color: var(--rf-azul-500);
}

.rf-cartao--login { display: flex; align-items: center; gap: 14px; padding: 18px; flex-wrap: wrap; }
.rf-cartao--login__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; flex: none; border-radius: 50%;
	border: 1px solid var(--rf-azul-100); background: #f4f8ff; color: var(--rf-azul-500);
}
.rf-cartao--login__texto { flex: 1; min-width: 150px; }
.rf-cartao--login__texto h3 { font-size: 19px; }
.rf-cartao--login__texto p { font-size: 14.5px; color: #5f6b7d; }

.rf-botao--login {
	padding: 14px 18px;
	background: linear-gradient(180deg, #1f6bfb 0%, #0f52dd 100%);
	color: #fff; font-size: 15.5px; line-height: 1.2; max-width: 170px;
	box-shadow: 0 8px 20px rgba(15, 82, 221, .28);
}
.rf-botao--login:hover { background: linear-gradient(180deg, #175ee6 0%, #0c47c2 100%); }

.rf-avaliacao { padding: 20px 18px; }
.rf-avaliacao__topo { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rf-avaliacao__topo .rf-estrelas { margin-top: 0; }
.rf-avaliacao__topo .rf-estrelas svg { width: 22px; height: 22px; }
.rf-avaliacao__titulo { font-size: 19px; color: var(--rf-azul-400); }
.rf-avaliacao__nome { margin-top: 8px; font-size: 15.5px; color: #3d4551; }
.rf-avaliacao__texto { margin-top: 8px; font-size: 15.5px; line-height: 1.5; color: #4a5361; }
.rf-avaliacao__acao { margin-top: 14px; }

.rf-joinha {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 16px 7px 13px;
	border: 1px solid #dde2ec; border-radius: 999px;
	background: var(--rf-branco); color: #4a5361;
	font-size: 15px; cursor: pointer;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.rf-joinha:hover { border-color: var(--rf-azul-400); color: var(--rf-azul-400); background: #f5f9ff; }
.rf-joinha__icone { width: 20px; height: 20px; }
.rf-joinha__numero { font-weight: 600; }

/* pop-up do joinha */

.rf-aviso {
	position: fixed; inset: 0; z-index: 90;
	display: flex; align-items: center; justify-content: center; padding: 20px;
}
.rf-aviso[hidden] { display: none; }
.rf-aviso__fundo { position: absolute; inset: 0; background: rgba(4, 23, 74, .55); }

.rf-aviso__caixa {
	position: relative;
	width: min(360px, 100%);
	background: var(--rf-branco);
	border-radius: 20px; padding: 28px 24px 22px;
	text-align: center;
	box-shadow: 0 24px 60px rgba(4, 23, 74, .3);
}
.rf-aviso__icone {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; margin-bottom: 14px;
	border-radius: 50%; background: #f4f8ff; color: var(--rf-azul-500);
	border: 1px solid var(--rf-azul-100);
}
.rf-aviso__icone .rf-icone { width: 28px; height: 28px; }
.rf-aviso__texto { font-size: 19px; font-weight: 600; color: var(--rf-azul-900); margin-bottom: 18px; }
.rf-aviso .rf-botao--login { width: 100%; max-width: none; }
.rf-aviso__fechar {
	display: block; width: 100%; margin-top: 10px; padding: 10px;
	background: none; border: 0; color: #7b8492; font-size: 14.5px; cursor: pointer;
}

/* --------------------------------------------- pop-up "Não sei o número" */

.rf-modal {
	position: fixed; inset: 0; z-index: 95;
	display: flex; align-items: center; justify-content: center; padding: 18px;
}
.rf-modal[hidden] { display: none; }
.rf-modal__fundo { position: absolute; inset: 0; background: rgba(4, 23, 74, .62); }

.rf-modal__caixa {
	position: relative;
	width: min(460px, 100%);
	background: var(--rf-branco);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(4, 23, 74, .3);
}
.rf-modal__caixa img { width: 100%; }

.rf-modal__x {
	position: absolute; top: 10px; right: 10px; z-index: 2;
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 0; border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: var(--rf-azul-900);
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(4, 23, 74, .18);
}
.rf-modal__x:hover { background: #fff; }

/* ------------------------------------------------------------- equipe */

.rf-equipe-foto { position: relative; margin: 0; }
.rf-equipe-foto img { width: 100%; border-radius: 18px; }

.rf-selo-central {
	position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
	display: inline-flex; align-items: center; gap: 10px;
	max-width: calc(100% - 24px);
	padding: 12px 20px; border-radius: 999px;
	background: linear-gradient(100deg, #2358e8 0%, #1543cf 100%);
	color: #fff; font-size: clamp(12.5px, 3.4vw, 16px); font-weight: 600;
	text-align: center; line-height: 1.2;
	box-shadow: 0 10px 26px rgba(21, 67, 207, .35);
}
.rf-selo-central__icone { display: inline-flex; }
.rf-selo-central__icone .rf-icone { width: 22px; height: 22px; }

.rf-cartao--equipe { margin-top: 22px; padding: 32px 20px 24px; background: #f8fafd; }

.rf-equipe__titulo { font-size: clamp(25px, 6.6vw, 38px); line-height: 1.2; letter-spacing: -.02em; }
.rf-equipe__linha { margin-top: 14px; font-size: clamp(15px, 4.2vw, 18px); color: #4a5361; line-height: 1.45; }

.rf-selos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px; margin-top: 22px;
}
.rf-selo {
	display: flex; align-items: center; gap: 10px; min-width: 0;
	padding: 14px 12px; border-radius: 14px;
	background: var(--rf-branco); border: 1px solid #eef1f7;
}
.rf-selo img { width: 32px; height: auto; flex: none; }
.rf-selo p {
	min-width: 0; font-size: clamp(13px, 3.4vw, 15px);
	line-height: 1.25; color: #2b3444;
	overflow-wrap: break-word;
}

.rf-botao--contorno {
	width: 100%; margin-top: 20px; padding: 18px 20px;
	border: 1.5px solid var(--rf-azul-500);
	background: var(--rf-branco); color: var(--rf-azul-500); font-size: 17px;
}
.rf-botao--contorno:hover { background: var(--rf-azul-500); color: #fff; }
.rf-botao--contorno .rf-icone { transition: transform .2s ease; }
.rf-botao--contorno:hover .rf-icone { transform: translateX(3px); }

/* ------------------------------------------------------------- rodapé */

.rf-rodape { margin-top: 34px; background: var(--rf-escuro); color: var(--rf-escuro-texto); }

.rf-rodape__grade { padding-top: 8px; padding-bottom: 8px; }

.rf-rodape__bloco { border-bottom: 1px solid var(--rf-escuro-borda); }

.rf-rodape__titulo { margin: 0; }

.rf-rodape__gatilho {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	width: 100%; padding: 20px 0;
	background: none; border: 0; cursor: pointer;
	color: #fff; font-size: 17px; font-weight: 600; text-align: left;
}
.rf-rodape__gatilho:disabled { cursor: default; }

.rf-rodape__seta {
	flex: none; width: 10px; height: 10px;
	border-right: 2px solid var(--rf-escuro-texto);
	border-bottom: 2px solid var(--rf-escuro-texto);
	transform: rotate(45deg) translate(-3px, -3px);
	transition: transform .25s ease;
}
.rf-rodape__gatilho[aria-expanded="true"] .rf-rodape__seta { transform: rotate(-135deg) translate(-3px, -3px); }

.rf-rodape__painel { padding-bottom: 24px; }

.rf-rodape .rf-logo--rodape { margin-bottom: 12px; }
.rf-rodape__frase { font-size: 15px; margin-bottom: 16px; }

.rf-checks { display: grid; gap: 10px; }
.rf-checks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.rf-checks__icone { display: inline-flex; color: var(--rf-verde); }
.rf-checks__icone .rf-icone { width: 17px; height: 17px; stroke-width: 2.4; }

.rf-rodape__lista { display: grid; gap: 13px; }
.rf-rodape__lista a { color: var(--rf-escuro-texto); font-size: 15px; }
.rf-rodape__lista a:hover { color: #fff; text-decoration: none; }

.rf-selos-seg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.rf-selo-seg {
	padding: 14px 14px 16px;
	background: var(--rf-escuro-cartao);
	border: 1px solid var(--rf-escuro-borda);
	border-radius: 12px;
}
.rf-selo-seg__icone { display: inline-flex; color: #cfd6e2; margin-bottom: 8px; }
.rf-selo-seg__icone .rf-icone { width: 20px; height: 20px; }
.rf-selo-seg h3 { color: #fff; font-size: 14.5px; line-height: 1.25; margin-bottom: 6px; }
.rf-selo-seg p { font-size: 12.5px; line-height: 1.4; color: var(--rf-escuro-texto); }

.rf-rodape__etiqueta {
	font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
	color: #cfd6e2; margin-bottom: 14px;
}
.rf-rodape__email { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.rf-rodape__email a { color: #dfe5ee; font-size: 15px; word-break: break-all; }
.rf-rodape__email-icone { display: inline-flex; color: var(--rf-escuro-texto); }
.rf-rodape__email-icone .rf-icone { width: 19px; height: 19px; }
.rf-rodape__nota { font-size: 14px; line-height: 1.5; }

.rf-rodape__base {
	border-top: 1px solid var(--rf-escuro-borda);
	padding: 18px 0; font-size: 13px; color: #6d7789; text-align: center;
}

/* --------------------------------------------------- páginas internas */

.rf-pagina { padding: 34px 0; }
.rf-pagina__interno { max-width: 720px; margin: 0 auto; }
.rf-pagina h1 { font-size: clamp(28px, 7vw, 40px); margin-bottom: 18px; }
.rf-conteudo p { margin-bottom: 16px; line-height: 1.65; }
.rf-conteudo h2 { font-size: 24px; margin: 26px 0 12px; }
.rf-conteudo h3 { font-size: 19px; margin: 20px 0 10px; }
.rf-conteudo ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.rf-conteudo li { margin-bottom: 6px; }
.rf-conteudo img { border-radius: 12px; margin: 18px 0; }

.rf-lista-posts { display: grid; gap: 16px; }
.rf-post-resumo { padding: 20px 18px; }
.rf-post-resumo h2 { font-size: 21px; margin-bottom: 8px; }
.rf-post-resumo__meta { font-size: 13.5px; color: #7b8492; margin-bottom: 10px; }

/* ---------------------------------------------------------- animação */

.rf-revela { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rf-revela.esta-visivel { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	.rf-revela { opacity: 1; transform: none; }
}

/* -------------------------------------------------------- responsivo */

@media (min-width: 560px) {
	.rf-container { padding: 0 24px; }
	.rf-cartao--form { padding: 30px 28px 26px; }
	.rf-porque { padding: 34px 30px 30px; }
	.rf-cartao--equipe { padding: 34px 28px 26px; }
	.rf-selo { flex-direction: row; }
}

@media (min-width: 900px) {
	.rf-secao { padding: 40px 0; }
	.rf-secao--apresentacao { padding-top: 56px; }

	.rf-titulo-grande { max-width: 16ch; }
	.rf-subtitulo { font-size: 18px; }

	.rf-palco { max-width: 860px; }
	.rf-destaque-card { padding: 24px 16px 26px; }
	.rf-faixa-confianca { padding: 24px 28px; max-width: 900px; margin-left: auto; margin-right: auto; }

	.rf-cartao--nota { padding: 32px 30px; }

	.rf-secao--avaliacoes .rf-container {
		display: grid; grid-template-columns: repeat(3, 1fr);
		gap: 16px; align-items: start;
	}
	.rf-secao--avaliacoes .rf-cartao--nota,
	.rf-secao--avaliacoes .rf-cartao--login { grid-column: 1 / -1; }
	.rf-secao--avaliacoes .rf-cartao { margin-bottom: 0; }

	.rf-selo-central { bottom: -26px; padding: 15px 32px; }
	.rf-cartao--equipe { margin-top: 30px; padding-top: 38px; }
	.rf-selos { gap: 14px; }
	.rf-selo { padding: 18px 16px; }
	.rf-selo img { width: 40px; }
	.rf-botao--contorno { width: auto; min-width: 380px; }
}

@media (min-width: 992px) {
	.rf-nav { display: block; }
	.rf-botao-login { display: inline-flex; }
	.rf-hamburguer { display: none; }
	.rf-botao-login--menu { display: none; }

	/* duas colunas, como no site antigo */
	.rf-topo-grade {
		display: grid;
		grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
		align-items: start;
		gap: 34px;
	}
	.rf-coluna { display: flex; flex-direction: column; gap: 26px; }

	.rf-porque {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 36%;
		align-items: center;
		gap: 4px 12px;
		padding: 24px 20px;
	}
	.rf-porque__acima,
	.rf-porque__titulo,
	.rf-porque__lista { grid-column: 1; }
	.rf-porque__titulo { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 12px; }
	.rf-porque__lista { max-width: none; }
	.rf-porque__lista p { font-size: 15px; }
	.rf-porque__arte {
		grid-column: 2; grid-row: 1 / span 3;
		width: 100%; max-width: 210px; margin: 0 0 0 auto;
		align-self: center;
	}

	/* rodapé em quatro colunas, sem sanfona */
	.rf-rodape__grade {
		display: grid;
		grid-template-columns: 1.15fr .8fr 1.25fr 1fr;
		gap: 40px;
		padding-top: 46px; padding-bottom: 40px;
		align-items: start;
	}
	.rf-rodape__bloco { border-bottom: 0; }
	.rf-rodape__gatilho { padding: 0 0 18px; font-size: 17px; }
	.rf-rodape__seta { display: none; }
	.rf-rodape__painel { padding-bottom: 0; }
	.rf-rodape__bloco:first-child .rf-rodape__gatilho { display: none; }
	.rf-rodape__base { text-align: center; }
}

@media (min-width: 1100px) {
	.rf-menu-lista { gap: 28px; }
	.rf-porque__arte { max-width: 240px; }
}
