/*
Theme Name: Divi Child CE Tech
Theme URI: https://www.starfez.com
Description: Tema filho do Divi com identidade visual CE Tech, incluindo tela de login personalizada.
Author: Leandro Gabriel
Author URI: https://www.starfez.com
Version: 2.1.6
Template: Divi
*/

/*============================================================
CE TECH - Tela de login (wp-login.php)
Modelo da branch main: estiliza a tela padrao do WordPress
somente com CSS, sem JS de layout, sem buffer e sem alterar o
core. O login.js aplica apenas placeholder e o texto do botao.
============================================================*/
:root {
	--cetech-blue: #123D73;
	--cetech-blue-light: #1D5B9F;
	--cetech-turquoise: #1FB7C9;
	--cetech-white: #FFFFFF;
	--cetech-gray: #F5F7FA;
	--cetech-ink: #0F172A;
	--cetech-muted: #64748B;
	--cetech-border: #DFE5EE;
}

body.login {
	--cetech-blue: #123D73;
	--cetech-blue-light: #1D5B9F;
	--cetech-turquoise: #1FB7C9;
	--cetech-white: #FFFFFF;
	--cetech-gray: #F5F7FA;
	--cetech-ink: #0F172A;
	--cetech-muted: #64748B;
	--cetech-border: #DFE5EE;

	margin: 0;
	padding: 24px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background-color: #eef2f7;
}

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

/* ---------- Remocao dos elementos padrao ---------- */
body.login .language-switcher,
body.login #backtoblog,
body.login .forgetmenot,
body.login #caps-warning,
body.login #login > #nav {
	display: none !important;
}

body.login form label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Card central (grid 1 coluna) ---------- */
body.login #login {
	width: 480px;
	max-width: 100%;
	margin: 0;
	padding: 44px 44px 34px;
	position: relative;
	z-index: 2;
	background: var(--cetech-white);
	border: 1px solid #e3e9f0;
	border-radius: 20px;
	box-shadow:
		0 12px 32px rgba(18, 61, 115, 0.10),
		0 4px 12px rgba(18, 61, 115, 0.06);
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 12px;
	animation: cetech-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.login #login > h1,
body.login #login > #login_error,
body.login #login > .message,
body.login #login form > p:not(.submit),
body.login #login form > .user-pass-wrap {
	grid-column: 1 / -1;
	margin: 0 0 16px;
}

body.login #login form {
	display: contents;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

body.login #login form .submit {
	grid-column: 1 / -1;
	margin: 0 !important;
}

/* ---------- Marca (logo) ---------- */
body.login #login h1 {
	text-align: center;
	margin-bottom: 28px;
}

body.login #login h1 a {
	display: block;
	width: 250px;
	height: 64px;
	margin: 0 auto;
	background: url('https://cetech.net.br/wp-content/uploads/2025/07/01-Logo-Horizontal-Principal-2-scaled.png') no-repeat center / contain;
	text-indent: -9999px;
	overflow: hidden;
	outline: none;
}

/* ---------- Campos ---------- */
body.login #login form > p:not(.submit),
body.login #login form > .user-pass-wrap {
	position: relative;
}

body.login #login form > p:not(.submit):not(.user-pass-wrap)::before,
body.login #login form > .user-pass-wrap::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	z-index: 1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

body.login #login form > p:not(.submit):not(.user-pass-wrap)::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239aa7b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21v-1a6 6 0 0 1 6-6h4a6 6 0 0 1 6 6v1'/%3E%3C/svg%3E");
}

body.login #login form > .user-pass-wrap::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239aa7b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
	width: 100% !important;
	height: 58px !important;
	margin: 0 !important;
	padding: 14px 48px !important;
	font-size: 15px !important;
	line-height: 1 !important;
	color: var(--cetech-ink) !important;
	background: var(--cetech-white) !important;
	border: 1.5px solid var(--cetech-border) !important;
	border-radius: 14px !important;
	box-shadow: none !important;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.login input[type="password"] {
	padding-right: 52px !important;
}

body.login input:focus {
	border-color: var(--cetech-blue-light) !important;
	box-shadow: 0 0 0 4px rgba(29, 91, 159, 0.12) !important;
}

body.login input::placeholder {
	color: #9aa7b8;
	opacity: 1;
}

body.login input::-ms-input-placeholder {
	color: #9aa7b8;
}

/* ---------- Botao mostrar senha (nativo do WP) ---------- */
body.login #login .wp-hide-pw {
	position: absolute !important;
	right: 8px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	border: 0 !important;
	border-radius: 12px;
	cursor: pointer;
	color: #94a3b8;
	transition: background 0.2s ease, color 0.2s ease;
}

body.login #login .wp-hide-pw:hover {
	background: var(--cetech-gray);
	color: var(--cetech-blue-light);
}

body.login #login .wp-hide-pw .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

/* ---------- Botao Acessar ---------- */
body.login #login form .submit input[type="submit"] {
	width: 100% !important;
	height: 58px !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.2px;
	color: #fff !important;
	text-shadow: none !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: linear-gradient(90deg, var(--cetech-blue) 0%, var(--cetech-turquoise) 100%) !important;
	box-shadow: 0 10px 22px rgba(18, 61, 115, 0.3) !important;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

body.login #login form .submit input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(18, 61, 115, 0.38) !important;
	filter: brightness(1.05);
}

body.login #login form .submit input[type="submit"]:active {
	transform: translateY(0);
	box-shadow: 0 8px 18px rgba(18, 61, 115, 0.28) !important;
}

body.login #login form .submit input[type="submit"]:focus-visible {
	outline: 3px solid rgba(31, 183, 201, 0.45);
	outline-offset: 2px;
}

body.login a:focus-visible {
	outline: 3px solid rgba(31, 183, 201, 0.45);
	outline-offset: 2px;
}

/* ---------- Erros e mensagens ---------- */
body.login #login_error,
body.login .message,
body.login .success {
	background: #fff !important;
	border: 0 !important;
	border-left: 4px solid #dc2626 !important;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(6, 28, 60, 0.12) !important;
	color: #b91c1c;
	font-size: 13.5px;
	padding: 12px 14px !important;
	margin: 0 0 18px !important;
}

body.login .message,
body.login .success {
	border-left-color: var(--cetech-turquoise) !important;
	color: #334155;
}

/* ---------- Animacoes ---------- */
@keyframes cetech-card-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- Responsivo ---------- */
@media (max-width: 560px) {
	body.login {
		padding: 16px;
	}

	body.login #login {
		width: 100%;
		max-width: 480px;
		padding: 32px 22px 26px;
		border-radius: 20px;
	}

	body.login #login h1 a {
		width: 200px;
		height: 51px;
	}

	body.login input[type="text"],
	body.login input[type="password"],
	body.login input[type="email"] {
		height: 54px !important;
	}

	body.login #login form .submit input[type="submit"] {
		height: 54px !important;
		font-size: 15px !important;
	}
}


/*============================================================
CE TECH - Header global (redesign 2.0.0)
Caixa flutuante centralizada: logo | menu | acoes.
Identidade visual: azul (#2020EE) e turquesa/verde (#00E8A8).
============================================================*/

:root {
	--cetech-blue: #2020EE;
	--cetech-blue-dark: #1515C0;
	--cetech-blue-light: #EEF1FF;
	--cetech-green: #00E8A8;
	--cetech-green-dark: #00C48E;
	--cetech-ink: #1a1a2e;
	--cetech-muted: #555555;
	--cetech-border: #e8e8f0;
	--cetech-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Ocultar o header nativo do Divi ---------- */
#page-container #top-header,
#page-container #main-header,
#page-container .et-l--header {
	display: none !important;
}

#page-container {
	padding-top: 0 !important;
}

/* ---------- Caixa flutuante centralizada ---------- */
.cetech-header {
	position: sticky;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 1000;
	margin: 0 auto 24px;
	width: 80%;
	max-width: 1080px;
	padding: 6px;
	background: var(--cetech-white, #ffffff);
	border-radius: 18px;
	box-shadow:
		0 14px 38px rgba(32, 32, 238, 0.09),
		0 4px 14px rgba(32, 32, 238, 0.05);
	transition: top 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
	font-family: var(--cetech-font);
}

.cetech-header.scrolled {
	top: 8px;
	padding: 4px;
	box-shadow:
		0 10px 30px rgba(32, 32, 238, 0.12),
		0 4px 12px rgba(32, 32, 238, 0.06);
}

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

.cetech-header a {
	text-decoration: none;
}

.cetech-header button {
	font-family: inherit;
}

/* ---------- Linha interna (logo | nav | acoes) ---------- */
.cetech-header__box {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 8px 8px 8px 4px;
}

.cetech-header__start,
.cetech-header__nav,
.cetech-header__end {
	display: flex;
	align-items: center;
}

.cetech-header__nav {
	justify-content: center;
}

/* ---------- Logo ---------- */
.cetech-header__logo {
	display: inline-flex;
	align-items: center;
}

.cetech-header__logo img {
	display: block;
	height: 44px;
	width: auto;
	max-width: 220px;
}

/* ---------- Navegacao (desktop) ---------- */
.cetech-header__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cetech-header__list > li {
	position: relative;
}

.cetech-header__list > li > a {
	display: block;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--cetech-ink);
	white-space: nowrap;
	border-radius: 8px;
	transition: color 0.18s ease, background 0.18s ease;
}

.cetech-header__list > li > a:hover,
.cetech-header__list > li > a:focus-visible {
	color: var(--cetech-blue);
	background: var(--cetech-blue-light);
}

/* Item ativo (pagina atual) */
.cetech-header__list > li.current-menu-item > a,
.cetech-header__list > li.current_page_item > a,
.cetech-header__list > li.current-menu-ancestor > a,
.cetech-header__list > li.current_page_ancestor > a {
	color: var(--cetech-blue);
	font-weight: 600;
	background: var(--cetech-blue-light);
}

.cetech-header__list .sub-menu li.current-menu-item > a,
.cetech-header__list .sub-menu li.current_page_item > a {
	color: var(--cetech-blue);
	font-weight: 600;
}

/* Dropdowns */
.cetech-header__list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 230px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--cetech-border);
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(26, 26, 46, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 20;
}

.cetech-header__list > li:hover > .sub-menu,
.cetech-header__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.cetech-header__list .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 2px;
}

.cetech-header__list .sub-menu a {
	display: block;
	padding: 9px 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--cetech-ink);
	border-radius: 8px;
	transition: color 0.15s ease, background 0.15s ease;
}

.cetech-header__list .sub-menu a:hover,
.cetech-header__list .sub-menu a:focus-visible {
	color: var(--cetech-blue);
	background: var(--cetech-blue-light);
}

/* ---------- Burger (mobile) ---------- */
.cetech-header__burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 38px;
	height: 20px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: var(--cetech-blue);
	color: #fff;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.16s ease;
}

.cetech-header__burger:hover {
	background: var(--cetech-blue-dark);
}

.cetech-header__burger:focus-visible {
	outline: 3px solid rgba(32, 32, 238, 0.35);
	outline-offset: 2px;
}

.cetech-header__burger-line {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.cetech-header__burger.is-open .cetech-header__burger-line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.cetech-header__burger.is-open .cetech-header__burger-line:nth-child(2) {
	opacity: 0;
}

.cetech-header__burger.is-open .cetech-header__burger-line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Acoes (botoes) ---------- */
.cetech-header__end {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.cetech-header__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
	border-radius: 12px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cetech-header__btn:focus-visible {
	outline: 3px solid rgba(0, 232, 168, 0.45);
	outline-offset: 2px;
}

/* Botao principal: "Área do Cliente" (CTA verde/turquesa) */
.cetech-header__btn--cliente {
	color: #fff;
	background: var(--cetech-green);
	border-color: var(--cetech-green);
	box-shadow: 0 6px 16px rgba(0, 232, 168, 0.22);
}

.cetech-header__btn--cliente:hover,
.cetech-header__btn--cliente:focus-visible {
	color: #fff;
	background: var(--cetech-green-dark);
	border-color: var(--cetech-green-dark);
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 232, 168, 0.30);
}

/* Avatar do usuario (apenas quando logado) */
.cetech-header__user {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	color: #fff;
	background: var(--cetech-blue);
	cursor: pointer;
	transition: background 0.18s ease, transform 0.16s ease;
}

.cetech-header__user:hover,
.cetech-header__user:focus-visible {
	background: var(--cetech-blue-dark);
}

.cetech-header__user svg {
	width: 19px;
	height: 19px;
}

/* Dropdown do usuario (Sair) */
.cetech-header__user-wrap {
	position: relative;
}

.cetech-header__user-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 190px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--cetech-border);
	border-radius: 12px;
	box-shadow: 0 18px 42px rgba(26, 26, 46, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
	z-index: 30;
}

.cetech-header__user-wrap.is-open .cetech-header__user-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.cetech-header__user-name {
	display: block;
	padding: 8px 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--cetech-ink);
	white-space: nowrap;
}

.cetech-header__user-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 10px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--cetech-muted);
	border-radius: 8px;
	transition: background 0.16s ease, color 0.16s ease;
}

.cetech-header__user-menu a:hover,
.cetech-header__user-menu a:focus-visible {
	background: var(--cetech-blue-light);
	color: var(--cetech-blue);
}

.cetech-header__user-menu a svg {
	width: 17px;
	height: 17px;
}

/* Acoes duplicadas do painel mobile (ocultas no desktop) */
.cetech-header__mobile-actions,
.cetech-header__mobile-user {
	display: none;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1199px) {
	.cetech-header__box {
		gap: 14px;
		padding: 6px 8px;
	}

	.cetech-header__list > li > a {
		padding: 8px 12px;
		font-size: 14px;
	}

	.cetech-header__end {
		gap: 8px;
	}

	.cetech-header__btn {
		padding: 0 16px;
		font-size: 13.5px;
	}

	.cetech-header__logo img {
		height: 40px;
	}
}

@media (max-width: 1023px) {
	.cetech-header {
		position: relative;
		top: 0;
		width: 100%;
		max-width: 100%;
		padding-left: 5%;
		padding-right: 5%;
		margin: 0 auto 24px;
	}

	.cetech-header.scrolled {
		top: 0;
	}

	.cetech-header__box {
		grid-template-columns: auto auto;
		align-items: center;
	}

	.cetech-header__start {
		grid-column: 1;
	}

	.cetech-header__end {
		grid-column: 2;
		justify-content: flex-end;
	}

	.cetech-header__end .cetech-header__btn,
	.cetech-header__end .cetech-header__user-wrap {
		display: none;
	}

	.cetech-header__burger {
		display: flex;
	}

	.cetech-header__logo img {
		height: 38px;
	}

	/* Painel mobile do menu */
	.cetech-header__nav {
		position: absolute;
		top: calc(100% + 6px);
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100vh - 90px);
		overflow-y: auto;
		background: #fff;
		border: 1px solid var(--cetech-border);
		border-radius: 14px;
		box-shadow: 0 20px 44px rgba(26, 26, 46, 0.14);
	}

	.cetech-header__nav.is-open {
		display: block;
	}

	.cetech-header__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 8px 4px;
		margin: 0;
	}

	.cetech-header__list > li > a {
		padding: 12px 12px;
		font-size: 16px;
		font-weight: 500;
		color: var(--cetech-ink);
		border-radius: 0;
		border-bottom: 1px solid var(--cetech-border);
	}

	.cetech-header__list > li.current-menu-item > a,
	.cetech-header__list > li.current_page_item > a,
	.cetech-header__list > li.current-menu-ancestor > a,
	.cetech-header__list > li.current_page_ancestor > a {
		color: var(--cetech-blue);
		background: transparent;
		font-weight: 600;
	}

	.cetech-header__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 4px 14px;
		margin: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.cetech-header__list .sub-menu .sub-menu {
		left: 0;
		padding-left: 14px;
	}

	.cetech-header__list .sub-menu a {
		padding: 10px 0;
		font-size: 14px;
		border-bottom: 1px solid rgba(82, 82, 94, 0.06);
		border-radius: 0;
	}

	.cetech-header__list .sub-menu a:last-child {
		border-bottom: 0;
	}

	/* Acoes dentro do painel mobile */
	.cetech-header__mobile-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 16px 16px 20px;
	}

	.cetech-header__mobile-actions .cetech-header__btn {
		width: 100%;
		justify-content: center;
	}

	.cetech-header__mobile-user {
		display: flex;
		flex-direction: column;
		gap: 8px;
		padding-top: 4px;
		border-top: 1px solid var(--cetech-border);
	}

	.cetech-header__mobile-user-name {
		font-size: 14px;
		font-weight: 700;
		color: var(--cetech-ink);
	}

	.cetech-header__mobile-user-link {
		display: inline-block;
		font-size: 14px;
		font-weight: 600;
		color: var(--cetech-blue);
	}
}

@media (max-width: 480px) {
	.cetech-header__box {
		padding: 4px 6px;
	}

	.cetech-header__mobile-actions {
		padding: 14px 14px 20px;
	}

	.cetech-header__logo img {
		height: 34px;
	}
}

/*============================================================
CE TECH - Hero section dinâmica (home)
Conteudo vem do CPT "Hero". Layout: texto | ilustracao circular.
Identidade visual: azul (#2020EE) e verde/turquesa (#00E8A8).
============================================================*/
.cetech-hero {
	position: relative;
	top: -96px;
	font-family: var(--cetech-font);
	overflow: hidden;
	margin: 0 auto;
	padding: 120px 0 96px;
	background: radial-gradient(120% 90% at 85% 10%, rgba(32, 32, 238, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
		linear-gradient(180deg, #f6f8ff 0%, #ffffff 100%);
}

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

.cetech-hero a {
	text-decoration: none;
}

.cetech-hero__slide {
	display: none;
}

.cetech-hero__slide.is-active {
	display: block;
}

.cetech-hero__container {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 48px;
	width: 80%;
	max-width: 1080px;
	margin: 0 auto;
}

.cetech-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--cetech-blue);
	background: var(--cetech-blue-light);
	border: 1px solid rgba(32, 32, 238, 0.16);
	border-radius: 999px;
	margin-bottom: 22px;
}

.cetech-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cetech-green);
	box-shadow: 0 0 0 4px rgba(0, 232, 168, 0.25);
}

.cetech-hero__title {
	margin: 0 0 20px;
	font-size: clamp(34px, 4.6vw, 58px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--cetech-ink);
}

.cetech-hero__subtitle {
	margin: 0 0 34px;
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 1.7;
	color: var(--cetech-muted);
	max-width: 520px;
}

.cetech-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.cetech-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 0 28px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.2px;
	border-radius: 14px;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.cetech-hero__btn:focus-visible {
	outline: 3px solid rgba(0, 232, 168, 0.45);
	outline-offset: 2px;
}

.cetech-hero__btn--primary {
	color: #fff;
	background: linear-gradient(90deg, var(--cetech-blue) 0%, #2a2af0 100%);
	box-shadow: 0 12px 26px rgba(32, 32, 238, 0.30);
}

.cetech-hero__btn--primary:hover,
.cetech-hero__btn--primary:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(32, 32, 238, 0.38);
	filter: brightness(1.05);
}

.cetech-hero__btn--secondary {
	color: #fff;
	background: #00D69B;
	border: 1.5px solid #00D69B;
	box-shadow: 0 10px 22px rgba(0, 214, 155, 0.28);
}

.cetech-hero__btn--secondary:hover,
.cetech-hero__btn--secondary:focus-visible {
	background: #00C48E;
	border-color: #00C48E;
	transform: translateY(-2px);
}

/* ---------- Ilustração circular (padrão) ---------- */
.cetech-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
}

.cetech-hero__image {
	width: 100%;
	max-width: 560px;
	height: auto;
	object-fit: contain;
}

.cetech-hero__orbit {
	position: relative;
	width: 420px;
	height: 420px;
}

.cetech-hero__orbit-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 150px;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cetech-blue) 0%, #3a3af7 100%);
	box-shadow: 0 24px 50px rgba(32, 32, 238, 0.35), inset 0 0 0 6px rgba(255, 255, 255, 0.10);
	z-index: 3;
	text-align: center;
}

.cetech-hero__orbit-logo {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	line-height: 1;
}

.cetech-hero__orbit-core-sub {
	margin-top: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.cetech-hero__orbit-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	border-style: dashed;
	z-index: 1;
}

.cetech-hero__orbit-ring--1 {
	width: 300px;
	height: 300px;
	border: 2px dashed rgba(32, 32, 238, 0.22);
}

.cetech-hero__orbit-ring--2 {
	width: 410px;
	height: 410px;
	border: 2px dashed rgba(0, 232, 168, 0.45);
	will-change: transform;
}

.cetech-hero__node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
	text-align: center;
}

.cetech-hero__node-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--cetech-green);
	box-shadow: 0 0 0 6px rgba(0, 232, 168, 0.22), 0 6px 14px rgba(0, 232, 168, 0.45);
	border: 2px solid #fff;
}

.cetech-hero__node-text {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--cetech-ink);
	background: #fff;
	padding: 8px 12px;
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(26, 26, 46, 0.10);
	border: 1px solid var(--cetech-border);
	white-space: nowrap;
}

.cetech-hero__node--a { top: 18px; left: 50%; transform: translateX(-50%); }
.cetech-hero__node--b { top: 50%; right: -14px; transform: translateY(-50%); align-items: flex-start; }
.cetech-hero__node--c { bottom: 18px; left: 50%; transform: translateX(-50%); }
.cetech-hero__node--d { top: 50%; left: -14px; transform: translateY(-50%); align-items: flex-end; }

/* ---------- Navegação (múltiplos heroes) ---------- */
.cetech-hero__nav {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 5;
}

.cetech-hero__nav-dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(32, 32, 238, 0.25);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.cetech-hero__nav-dot.is-active {
	width: 30px;
	background: var(--cetech-blue);
}

.cetech-hero__nav-dot:focus-visible {
	outline: 3px solid rgba(32, 32, 238, 0.35);
	outline-offset: 2px;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1023px) {
	.cetech-hero {
		top: 0;
		padding: 40px 0 72px;
	}

	.cetech-hero__container {
		width: 100%;
		max-width: 100%;
		padding-left: 5%;
		padding-right: 5%;
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.cetech-hero__text {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cetech-hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.cetech-hero__actions {
		justify-content: center;
	}

	.cetech-hero__visual {
		min-height: 360px;
	}

	.cetech-hero__orbit {
		width: 340px;
		height: 340px;
	}

	.cetech-hero__orbit-ring--2 {
		width: 330px;
		height: 330px;
	}

	.cetech-hero__orbit-ring--1 {
		width: 250px;
		height: 250px;
	}

	.cetech-hero__orbit-core {
		width: 128px;
		height: 128px;
	}

	.cetech-hero__node--b { right: 0; }
	.cetech-hero__node--d { left: 0; }
}

@media (max-width: 560px) {
	.cetech-hero {
		padding: 40px 0 72px;
	}

	.cetech-hero__container {
		padding: 0 16px;
		gap: 32px;
	}

	.cetech-hero__title {
		font-size: 32px;
	}

	.cetech-hero__actions {
		flex-direction: column;
		width: 100%;
	}

	.cetech-hero__btn {
		width: 100%;
	}

	.cetech-hero__visual {
		min-height: 280px;
	}

	.cetech-hero__orbit {
		width: 280px;
		height: 280px;
		transform: scale(0.85);
	}

	.cetech-hero__node-text {
		font-size: 11px;
		padding: 6px 9px;
		white-space: normal;
	}

	.cetech-hero__node--b .cetech-hero__node-text { max-width: 90px; }
	.cetech-hero__node--d .cetech-hero__node-text { max-width: 90px; }
}
