/* ==========================================================================
   Services section — redesign
   Escopo isolado em .svc-section para nao colidir com .service-area legado.
   ========================================================================== */

.svc-section {
	--svc-gold: #dda72b;
	--svc-gold-deep: #c8971d;
	--svc-ink: #101010;
	--svc-body: #6b7077;
	--svc-line: #ebebee;
	--svc-card: #ffffff;
	--svc-border: #f0f0f2;

	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 120px 0 90px;
	background: #f7f7f8;
	font-family: "Barlow", "Poppins", sans-serif;
}

/* ---------- Fundo decorativo ---------- */

.svc-bg-dots,
.svc-bg-lines {
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.svc-bg-dots {
	left: 0;
	top: 12%;
	width: 220px;
	height: 62%;
	opacity: .55;
	background-image: radial-gradient(#c9ccd2 1.2px, transparent 1.2px);
	background-size: 18px 18px;
	-webkit-mask-image: linear-gradient(to right, #000 0%, transparent 100%);
	mask-image: linear-gradient(to right, #000 0%, transparent 100%);
}

.svc-bg-lines {
	right: -40px;
	top: 4%;
	width: 520px;
	height: 760px;
	opacity: .5;
	background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'520'%20height%3D'760'%20viewBox%3D'0%200%20520%20760'%20fill%3D'none'%20stroke%3D'%23b9bdc5'%20stroke-width%3D'1.1'%20stroke-linejoin%3D'round'%3E%3Cpath%20d%3D'M62%20702%20L62%20182%20L300%2062%20L300%20582%20Z'%2F%3E%3Cpath%20d%3D'M300%2062%20L518%20172%20L518%20692%20L300%20582'%2F%3E%3Cpath%20d%3D'M62%20302%20L300%20182%20M62%20422%20L300%20302%20M62%20542%20L300%20422'%2F%3E%3Cpath%20d%3D'M300%20182%20L518%20292%20M300%20302%20L518%20412%20M300%20422%20L518%20532'%2F%3E%3Cpath%20d%3D'M140%20662%20L140%20237%20M220%20622%20L220%20197'%2F%3E%3Cpath%20d%3D'M380%20107%20L380%20622%20M452%20143%20L452%20657'%2F%3E%3Cpath%20d%3D'M62%20182%20L300%20302%20L518%20172'%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

/* Secao usa um container mais largo que o padrao do Bootstrap. */
.svc-section > .container {
	width: 100%;
	
}

/* ---------- Cabecalho ---------- */

.svc-head {
	margin: 0 auto 60px;
	text-align: center;
}

.svc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 3.6px;
	text-transform: uppercase;
	color: #ffc200;
}

.svc-eyebrow::before,
.svc-eyebrow::after {
	content: "";
	width: 110px;
	height: 1px;
	background: currentColor;
	opacity: .5;
}

.svc-title {
	max-width: 1500px;
    margin: 24px auto 0;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--svc-ink);
    font-size: 50px;
    line-height: 58px;
    font-weight: 500;
}

.svc-title span {
	color: var(--svc-gold-deep);
    color: #ffc200;
}

.svc-lead {
	max-width: 640px;
	margin: 22px auto 0;
	font-size: 19px;
	line-height: 1.6;
	font-weight: 400;
	color: var(--svc-body);
}

.svc-rule {
	display: block;
	width: 78px;
	height: 4px;
	margin: 32px auto 0;
	border-radius: 2px;
	background: #ffc200;
}

/* ---------- Grid principal ---------- */

.svc-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: 24px;
	align-items: stretch;
}

.svc-col-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.svc-col-right {
	display: flex;
	min-width: 0;
}

/* ---------- Card escuro (hero) ---------- */

.svc-hero {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	min-height: 560px;
	border-radius: 0px;
	overflow: hidden;
	background: #0d0d0d;
}

.svc-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: url(../img/ead-services.webp) ;
	
}

.svc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(105deg, rgba(8, 8, 8, .94) 0%, rgba(8, 8, 8, .84) 30%, rgba(8, 8, 8, .5) 64%, rgba(8, 8, 8, .24) 100%);
}

.svc-hero-body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 54px 56px 50px;
}

.svc-hero-icon {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border: 1.5px solid #ffc200;
	border-radius: 50%;
	color: #ffc200;
	font-size: 30px;
	line-height: 1;
}

.svc-hero-title {
	margin: auto 0 0;
	padding-top: 46px;
	font-size: 54px;
	line-height: 1.04;
	font-weight: 300;
	letter-spacing: -.5px;
	color: #ffffff;
}

.svc-hero-title span {
	display: block;
	color: #ffc200;
}

.svc-hero-tag {
	margin: 22px 0 0;
	font-size: 19px;
	line-height: 1.55;
	font-weight: 400;
	color: rgba(255, 255, 255, .9);
}

.svc-hero-rule {
	display: block;
	width: 56px;
	height: 2px;
	margin: 26px 0 0;
	background: #ffc200;
}

.svc-badges {
	display: flex;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.svc-badges li {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 0 20px;
}

.svc-badges li:first-child {
	padding-left: 0;
}

.svc-badges li + li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 1px;
	background: rgba(255, 255, 255, .2);
}

.svc-badges i {
	display: block;
	margin-bottom: 12px;
	font-size: 26px;
	line-height: 1;
	color: var(--svc-gold);
}

.svc-badges strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: #ffffff;
}

.svc-badges em {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	font-style: normal;
	line-height: 1.3;
	color: rgba(255, 255, 255, .62);
}

/* ---------- Card de chamada ---------- */

.svc-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 26px;
	border: 1px solid var(--svc-border);
	
	background: var(--svc-card);
	box-shadow: 0 10px 30px rgba(16, 16, 16, .05);
}

.svc-cta-icon {
	display: grid;
    place-items: center;
    flex: none;
    width: 64px;
    height: 64px;
    background: #ffc200;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.svc-cta-text {
	flex: 1 1 auto;
	min-width: 0;
}

.svc-cta-text strong {
	display: block;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--svc-ink);
}

.svc-cta-text span {
	display: block;
	margin-top: 3px;
	font-size: 15px;
	line-height: 1.4;
	color: var(--svc-body);
}

.svc-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: none;
	padding: 18px 30px;
	border-radius: 0px; 
    background: #202020;
    color: #ffc200;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .35s ease, color .35s ease;
}

.svc-cta-btn i {
	font-size: 16px;
	transition: transform .35s ease;
}

.svc-cta-btn:hover,
.svc-cta-btn:focus-visible {
	background: var(--svc-gold);
	color: var(--svc-ink);
}

.svc-cta-btn:hover i {
	transform: translateX(5px);
}

/* ---------- Lista de servicos ---------- */

.svc-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin: 0;
	padding: 10px 34px;
	list-style: none;
	border: 1px solid var(--svc-border);
	
	background: var(--svc-card);
	box-shadow: 0 14px 40px rgba(16, 16, 16, .05);
}

.svc-list li + li {
	border-top: 1px solid var(--svc-line);
}

.svc-list a {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 11px 6px;
	color: var(--svc-ink);
	text-decoration: none;
	transition: color .3s ease;
}

.svc-ico {
	display: grid;
    place-items: center;
    flex: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 194 0);
    background: rgb(33 32 29);
    color: #ffc200;
    font-size: 19px;
    line-height: 1;
    transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.svc-list-label {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 400;
	text-transform: none;
}

.svc-arrow {
	flex: none;
	font-size: 17px;
	line-height: 1;
	color: #ffc200;
	opacity: .85;
	transition: transform .3s ease, opacity .3s ease;
}

.svc-list a:hover .svc-arrow,
.svc-list a:focus-visible .svc-arrow {
	transform: translateX(5px);
	opacity: 1;
}

.svc-list a:hover .svc-ico,
.svc-list a:focus-visible .svc-ico {
	border-color: var(--svc-gold);
	background: var(--svc-gold);
	color: var(--svc-ink);
}

.svc-list a:hover .svc-list-label,
.svc-list a:focus-visible .svc-list-label {
	color: #ffc200;
}

/* ---------- Tema escuro ---------- */

body:not(.light-theme) .svc-section {
	background: #121212;
	--svc-ink: #ffffff;
	--svc-body: #a5a9b0;
	--svc-line: #232323;
	--svc-card: #191919;
	--svc-border: #242424;
	--svc-gold-deep: #fdc202;
}

body:not(.light-theme) .svc-bg-dots {
	background-image: radial-gradient(#2e2e2e 1.2px, transparent 1.2px);
}

body:not(.light-theme) .svc-bg-lines {
	opacity: .22;
}

body:not(.light-theme) .svc-cta,
body:not(.light-theme) .svc-list {
	box-shadow: none;
}

body:not(.light-theme) .svc-cta-btn {
	background: var(--svc-gold);
	color: #101010;
}

body:not(.light-theme) .svc-cta-btn:hover {
	background: #ffffff;
}

/* ---------- Responsivo ---------- */

@media (max-width: 1399px) {
	.svc-title {
		font-size: 52px;
	}

	.svc-hero-title {
		font-size: 46px;
	}

	.svc-hero-body {
		padding: 46px 44px 44px;
	}

	.svc-list {
		padding: 12px 26px;
	}

	.svc-list-label {
		font-size: 16px;
	}

	.svc-cta-btn {
		padding: 16px 24px;
	}
}

@media (max-width: 1199px) {
	.svc-section {
		padding: 100px 0 80px;
	}

	.svc-title {
		font-size: 44px;
	}

	.svc-lead {
		font-size: 17px;
	}

	.svc-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.svc-hero {
		min-height: 480px;
	}

	.svc-bg-lines {
		display: none;
	}
}

@media (max-width: 991px) {
	.svc-eyebrow::before,
	.svc-eyebrow::after {
		width: 60px;
	}

	.svc-cta {
		flex-wrap: wrap;
	}

	.svc-cta-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.svc-section {
		padding: 80px 0 60px;
	}

	.svc-section > .container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.svc-head {
		margin-bottom: 44px;
	}

	.svc-eyebrow {
		font-size: 13px;
		letter-spacing: 2.6px;
	}

	.svc-eyebrow::before,
	.svc-eyebrow::after {
		width: 34px;
	}

	.svc-title {
		font-size: 34px;
		letter-spacing: -.4px;
	}

	.svc-lead {
		font-size: 16px;
	}

	.svc-rule {
		margin-top: 26px;
	}

	.svc-hero {
		min-height: 0;
		border-radius: 20px;
	}

	.svc-hero-body {
		padding: 34px 26px 32px;
	}

	.svc-hero-icon {
		width: 62px;
		height: 62px;
		font-size: 25px;
	}

	.svc-hero-title {
		padding-top: 30px;
		font-size: 36px;
	}

	.svc-hero-tag {
		font-size: 17px;
	}

	.svc-badges {
		flex-wrap: wrap;
		gap: 20px 0;
		margin-top: 26px;
	}

	.svc-badges li {
		flex: 0 0 50%;
		padding: 0 14px;
	}

	.svc-badges li:nth-child(odd) {
		padding-left: 0;
	}

	.svc-badges li:nth-child(odd)::before {
		display: none;
	}

	.svc-cta {
		gap: 14px;
		padding: 20px;
		border-radius: 16px;
	}

	.svc-cta-icon {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.svc-cta-text strong {
		font-size: 18px;
	}

	.svc-list {
		padding: 8px 18px;
		border-radius: 20px;
	}

	.svc-list a {
		gap: 14px;
		padding: 14px 2px;
	}

	.svc-ico {
		width: 40px;
		height: 40px;
		border-radius: 12px;
		font-size: 17px;
	}

	.svc-list-label {
		font-size: 15px;
	}
}
