:root {
	--pink: #e4177b;
	--pink-deep: #c40f68;
	--pink-soft: #fde8f2;
	--pink-wash: #fff5fa;
	--blue: #0b2e7a;
	--blue-light: #1e4fa8;
	--ink: #0d0d14;
	--gold: #ffc72c;
	--white: #ffffff;
	--max: 1180px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Inter", sans-serif;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
.wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 28px;
}
.script {
	font-family: "Pacifico", cursive;
}
.display {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--blue-light);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}

/* ============ NAV ============ */
header.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(11, 46, 122, 0.08);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 28px;
	max-width: var(--max);
	margin: 0 auto;
}
.nav-logo {
	font-family: "Pacifico", cursive;
	font-size: 1.5rem;
	color: var(--pink);
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.nav-logo .num {
	font-family: "Poppins";
	font-weight: 900;
	font-size: 0.95rem;
	color: var(--blue);
	background: var(--pink-soft);
	padding: 2px 10px;
	border-radius: 20px;
}
.nav-links {
	display: flex;
	gap: 32px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--blue);
}
.nav-links a {
	position: relative;
	padding: 6px 0;
}
.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--pink);
	transition: width 0.25s ease;
}
.nav-links a:hover::after {
	width: 100%;
}
.nav-cta {
	background: var(--pink);
	color: var(--white);
	font-weight: 700;
	font-size: 0.9rem;
	padding: 11px 22px;
	border-radius: 30px;
	box-shadow: 0 6px 16px rgba(228, 23, 123, 0.35);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(228, 23, 123, 0.45);
}
.nav-toggle {
	display: none;
}

/* ============ HERO ============ */
.hero {
	position: relative;
	background: linear-gradient(
		180deg,
		var(--pink-wash) 0%,
		var(--pink-soft) 100%
	);
	overflow: hidden;
	padding-top: 56px;
}
.skyline {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 220px;
	opacity: 0.1;
}
.hero-inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 2;
	padding: 60px 0 0;
}

.hero-copy {
	padding-bottom: 22px;
}

.hero-copy .eyebrow-count {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 16px;
	padding: 10px 18px;
	box-shadow: 0 8px 24px rgba(11, 46, 122, 0.1);
	margin-bottom: 28px;
}
.eyebrow-count .count-num {
	font-family: "Poppins";
	font-weight: 900;
	font-size: 1.6rem;
	color: var(--blue);
	line-height: 1;
}
.eyebrow-count .count-txt {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--pink-deep);
	line-height: 1.2;
}
.hero-copy h1 {
	font-family: "Poppins";
	font-weight: 800;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	line-height: 1.08;
	color: var(--blue);
	max-width: 11ch;
}
.hero-copy h1 .script-name {
	font-family: "Pacifico";
	color: var(--pink);
	font-size: 1.15em;
	display: block;
	line-height: 1.2;
}
.hero-copy p.lede {
	margin-top: 22px;
	font-size: 1.15rem;
	line-height: 1.6;
	color: #3a3a48;
	max-width: 46ch;
}
.hero-copy p.lede strong {
	color: var(--pink-deep);
}
.hero-actions {
	display: flex;
	gap: 16px;
	margin-top: 34px;
	flex-wrap: wrap;
}
.btn-primary {
	background: var(--pink);
	color: var(--white);
	font-weight: 700;
	padding: 16px 30px;
	border-radius: 30px;
	font-size: 1rem;
	box-shadow: 0 10px 24px rgba(228, 23, 123, 0.35);
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.btn-primary:hover {
	transform: translateY(-3px);
}
.btn-ghost {
	border: 2px solid var(--blue);
	color: var(--blue);
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 30px;
	font-size: 1rem;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}
.btn-ghost:hover {
	background: var(--blue);
	color: var(--white);
}
.hero-number {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.hero-number .n {
	font-family: "Poppins";
	font-weight: 900;
	font-size: 2.4rem;
	color: var(--blue);
	-webkit-text-stroke: 2px var(--white);
	text-shadow: 0 3px 0 rgba(11, 46, 122, 0.15);
	letter-spacing: 2px;
}
.hero-number .party {
	background: var(--white);
	border-radius: 10px;
	padding: 6px 10px;
	box-shadow: 0 4px 12px rgba(11, 46, 122, 0.12);
	font-family: "Poppins";
	font-weight: 800;
	font-size: 0.75rem;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.1;
}
.hero-number .party span {
	color: var(--pink);
}

.hero-photo {
	position: relative;
	z-index: 2;
	width: 100%;
}
.hero-photo-frame {
	position: relative;
	border-radius: 32px 32px 0 0;
	overflow: hidden;
	background: linear-gradient(160deg, var(--pink) 0%, var(--pink-deep) 100%);
	aspect-ratio: 3/4;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
}
.hero-photo-frame .placeholder-photo {
	width: 82%;
	height: 92%;
	border-radius: 24px 24px 0 0;
	background:
		radial-gradient(
			circle at 50% 30%,
			#f3c9a8 0%,
			#e8b593 45%,
			transparent 46%
		),
		linear-gradient(180deg, #fff 0%, #ffe1f0 100%);
	position: relative;
	overflow: hidden;
}
/* Quando a foto real da candidata for inserida, use esta classe no <img>
     para garantir que ela apareça inteira e bem enquadrada em qualquer tela */
.person-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
.ribbon-tag {
	position: absolute;
	top: 26px;
	right: -10px;
	background: var(--gold);
	color: var(--blue);
	font-family: "Poppins";
	font-weight: 800;
	font-size: 0.8rem;
	padding: 10px 22px 10px 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	border-radius: 6px 0 0 6px;
}

/* ============ SECTION HEADS ============ */
.section {
	padding: 96px 0;
}
.section.alt {
	background: var(--pink-wash);
}
.kicker {
	font-family: "Pacifico";
	color: var(--pink);
	font-size: 1.4rem;
	margin-bottom: 6px;
}
.section h2 {
	font-family: "Poppins";
	font-weight: 800;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	color: var(--blue);
	max-width: 18ch;
	line-height: 1.15;
}
.section-head {
	margin-bottom: 52px;
}
.section-head.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.section-head p {
	margin-top: 16px;
	font-size: 1.05rem;
	color: #4a4a58;
	max-width: 60ch;
	line-height: 1.65;
}

/* ============ QUEM É RENATA ============ */
.about-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 60px;
	align-items: center;
}
.about-visual {
	background: var(--blue);
	border-radius: 24px;
	padding: 36px;
	position: relative;
	color: var(--white);
	overflow: hidden;
}
.about-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(228, 23, 123, 0.35),
		transparent 60%
	);
}
.about-quote {
	font-family: "Pacifico";
	font-size: 1.5rem;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}
.about-quote .accent {
	color: var(--gold);
}
.about-facts {
	display: flex;
	flex-direction: column;
	gap: 26px;
}
.fact {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.fact .bar {
	width: 6px;
	border-radius: 6px;
	background: var(--pink);
	flex-shrink: 0;
	align-self: stretch;
	min-height: 56px;
}
.fact h3 {
	font-family: "Poppins";
	font-weight: 700;
	color: var(--blue);
	font-size: 1.15rem;
	margin-bottom: 6px;
}
.fact p {
	color: #4a4a58;
	line-height: 1.6;
	font-size: 0.98rem;
}

/* ============ PROPOSTAS ============ */
.props-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.prop-card {
	background: var(--white);
	border-radius: 20px;
	padding: 34px 28px;
	border: 1px solid rgba(11, 46, 122, 0.08);
	box-shadow: 0 10px 30px rgba(11, 46, 122, 0.06);
	position: relative;
	overflow: hidden;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.prop-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(228, 23, 123, 0.15);
}
.prop-card .tag {
	display: inline-block;
	font-family: "Poppins";
	font-weight: 800;
	font-size: 0.72rem;
	color: var(--pink-deep);
	background: var(--pink-soft);
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 18px;
}
.prop-card h3 {
	font-family: "Poppins";
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--blue);
	margin-bottom: 10px;
}
.prop-card p {
	color: #565664;
	font-size: 0.95rem;
	line-height: 1.6;
}
.prop-card .ic {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	margin-bottom: 18px;
	background: linear-gradient(135deg, var(--pink), var(--blue-light));
	display: flex;
	align-items: center;
	justify-content: center;
}
.prop-card .ic svg {
	width: 26px;
	height: 26px;
	stroke: var(--white);
	fill: none;
	stroke-width: 2;
}

/* ============ MULHERES ============ */
.women-section {
	background: linear-gradient(135deg, var(--blue) 0%, #0a2260 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.women-section::after {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(228, 23, 123, 0.35),
		transparent 70%
	);
}
.women-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.women-inner .kicker {
	color: var(--gold);
}
.women-inner h2 {
	color: var(--white);
}
.women-inner p {
	color: rgba(255, 255, 255, 0.78);
	margin-top: 18px;
	line-height: 1.7;
	font-size: 1.05rem;
	max-width: 50ch;
}
.women-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-top: 34px;
}
.wstat {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	padding: 22px;
}
.wstat .num {
	font-family: "Poppins";
	font-weight: 900;
	font-size: 2rem;
	color: var(--gold);
}
.wstat .lbl {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 4px;
}
.women-photo {
	border-radius: 24px;
	aspect-ratio: 1/1;
	background: linear-gradient(160deg, var(--pink), #7a1050);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}
.women-photo .placeholder-photo {
	width: 86%;
	height: 86%;
	border-radius: 20px;
	background:
		radial-gradient(
			circle at 50% 32%,
			#f3c9a8 0%,
			#e8b593 42%,
			transparent 44%
		),
		linear-gradient(180deg, #fff 0%, #ffe1f0 100%);
	overflow: hidden;
}

/* ============ COMO VOTAR ============ */
.vote-box {
	background: var(--white);
	border-radius: 28px;
	padding: 56px;
	box-shadow: 0 20px 60px rgba(11, 46, 122, 0.1);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.urn {
	background: var(--blue);
	border-radius: 20px;
	padding: 32px;
	color: var(--white);
	font-family: "Poppins";
}
.urn-screen {
	background: #0d1a3d;
	border-radius: 10px;
	padding: 24px;
	text-align: center;
	border: 3px solid #223a7a;
}
.urn-screen .digits {
	font-weight: 900;
	font-size: 2.8rem;
	letter-spacing: 8px;
	color: #8fffb0;
	font-family: "Poppins";
}
.urn-screen .name {
	color: #fff;
	font-size: 0.95rem;
	margin-top: 10px;
	font-weight: 600;
}
.urn-screen .role {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	margin-top: 4px;
}
.vote-steps {
	list-style: none;
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.vote-steps li {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}
.vote-steps .digit {
	background: var(--pink);
	color: var(--white);
	font-weight: 800;
	font-family: "Poppins";
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.95rem;
}
.vote-copy h2 {
	margin-bottom: 18px;
}
.vote-copy p {
	color: #4a4a58;
	line-height: 1.7;
	font-size: 1.05rem;
}

/* ============ NEWSLETTER / CONTATO ============ */
.contact-section {
	background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.contact-section .wrap {
	position: relative;
	z-index: 1;
}
.contact-section h2 {
	color: var(--white);
	margin: 0 auto 18px;
}
.contact-section p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 50ch;
	margin: 0 auto 40px;
	line-height: 1.6;
}
.social-row {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.social-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 14px 26px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.95rem;
	transition:
		background 0.2s ease,
		transform 0.2s ease;
}
.social-pill:hover {
	background: rgba(255, 255, 255, 0.26);
	transform: translateY(-3px);
}
.social-pill svg {
	width: 20px;
	height: 20px;
	fill: var(--white);
}

/* ============ FOOTER ============ */
footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.6);
	padding: 48px 0 28px;
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
}
.footer-brand .script {
	color: var(--pink);
	font-size: 1.3rem;
}
.party-seal {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 8px 14px;
	font-size: 0.78rem;
}
.party-badge {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Poppins";
	font-weight: 900;
	color: var(--gold);
	font-size: 0.85rem;
}
.footer-legal {
	margin-top: 28px;
	font-size: 0.78rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}
	.hero-inner {
		grid-template-columns: 1fr;
		padding-top: 20px;
	}
	.hero-photo {
		order: -1;
		max-width: 380px;
		margin: 0 auto;
	}
	.about-grid,
	.women-inner,
	.vote-box {
		grid-template-columns: 1fr;
	}
	.women-photo {
		order: -1;
		max-width: 340px;
		margin: 0 auto;
	}
	.props-grid {
		grid-template-columns: 1fr 1fr;
	}
	.footer-inner {
		flex-direction: column;
		text-align: center;
	}
}
@media (max-width: 600px) {
	.props-grid {
		grid-template-columns: 1fr;
	}
	.section {
		padding: 64px 0;
	}
	.vote-box {
		padding: 32px 22px;
	}
	.hero-copy {
		/* padding: 0 22px; */
	}
	.hero-copy h1 {
		max-width: none;
	}
}
