/* PoliticoON Institucional — réplica visual principal2 */

:root {
	--poi-font: "Roboto", sans-serif;
	--poi-font-slab: "Roboto Slab", serif;
	--poi-cyan-1: #00a8ff;
	--poi-cyan-2: #7dd3fc;
	--poi-orange-1: #ffae00;
	--poi-orange-2: #ff0000;
	--poi-green: #5ce424;
	--poi-plan-btn: #2200ff;
	--poi-black: #000000;
	--poi-dark: #03121a;
	--poi-footer: #070a3a;
	--poi-white: #ffffff;
	--poi-text-muted: #7a7a7a;
	--poi-primary: #6ec1e4;
	--poi-container: 1140px;
}

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

html {
	scroll-behavior: smooth;
}

body.poi-body {
	margin: 0;
	font-family: var(--poi-font);
	color: var(--poi-white);
	background: var(--poi-black);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.poi-container {
	width: min(100% - 32px, var(--poi-container));
	margin-inline: auto;
}

.gradiente {
	background: linear-gradient(90deg, var(--poi-cyan-1), var(--poi-cyan-2), var(--poi-cyan-1));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Header */
.poi-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(180deg, rgba(3, 18, 40, 0.96) 0%, rgba(8, 40, 78, 0.92) 45%, rgba(12, 58, 110, 0.88) 100%);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(0, 100, 180, 0.25);
}

.poi-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
}

.poi-header__brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.poi-header__tagline {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.3;
	max-width: 220px;
}

.poi-logo__link,
.poi-logo--header__link,
.poi-logo--hero__link,
.poi-logo--footer__link,
.poi-header__brand a {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.poi-logo__img,
.poi-logo img,
.poi-logo__svg,
.poi-header__brand img,
.poi-header__brand svg {
	width: auto;
	max-height: 52px;
	max-width: min(220px, 42vw);
	height: auto;
	display: block;
}

.poi-hero__brand {
	margin-bottom: 4px;
}

.poi-hero__brand .poi-logo__img,
.poi-hero__brand img,
.poi-hero__brand .poi-logo__svg,
.poi-hero__brand svg {
	max-width: min(420px, 92vw);
	max-height: 72px;
	width: auto;
	height: auto;
}

.poi-logo--footer__img,
.poi-footer .poi-logo__img,
.poi-footer .poi-logo__svg {
	max-width: 180px;
	max-height: 48px;
}

.poi-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.poi-header__login {
	padding: 0.65em 1.4em;
	font-size: 13px;
}

.poi-header__whatsapp {
	padding: 0.65em 1.2em;
	font-size: 13px;
}

.poi-nav {
	position: relative;
}

.poi-nav__toggle {
	display: none;
	background: #0f3355;
	border: 0;
	border-radius: 0;
	color: #fff;
	width: 44px;
	height: 44px;
	cursor: pointer;
}

.poi-nav__toggle svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.poi-nav__icon-close {
	display: none;
}

.poi-nav.is-open .poi-nav__icon-open {
	display: none;
}

.poi-nav.is-open .poi-nav__icon-close {
	display: inline;
}

.poi-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.poi-nav__list a {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
	color: #fff;
	transition: color 0.2s;
}

.poi-nav__list a:hover,
.poi-nav__list a:focus {
	color: var(--poi-green);
}

.poi-nav__list .sub-menu {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.poi-nav__list .sub-menu a {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
}

.poi-header__cta {
	display: inline-flex;
}

/* Buttons */
.poi-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 0;
	border-radius: 200px;
	padding: 0.9em 1.8em;
	font-family: var(--poi-font);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	transition: transform 0.2s ease;
	white-space: nowrap;
}

.poi-btn:hover {
	transform: scale(0.97);
}

.poi-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	flex-shrink: 0;
}

.poi-btn--whatsapp {
	background: var(--poi-green);
}

.poi-btn--cyan {
	flex-direction: row-reverse;
	background: linear-gradient(45deg, var(--poi-cyan-1), var(--poi-cyan-2), var(--poi-cyan-1));
	background-size: 300%;
	animation: poiGradient 5s ease-in-out infinite;
}

.poi-btn--orange {
	flex-direction: row-reverse;
	background: linear-gradient(45deg, var(--poi-orange-1), var(--poi-orange-2), var(--poi-orange-1));
	background-size: 300%;
	animation: poiGradient 5s ease-in-out infinite;
}

.poi-btn--plan {
	width: 100%;
	background: var(--poi-plan-btn);
	box-shadow: 0 0 40px -10px rgba(255, 198, 72, 0.35);
	padding: 1.6em 2.6em;
}

@keyframes poiGradient {
	0% { background-position: 0 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}

/* Hero */
.poi-hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
	background-color: #020810;
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.12) 100%),
		var(--poi-hero-bg, none);
	background-position: center center, 68% center;
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
	padding: 80px 0;
}

.poi-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.poi-hero__brand {
	max-width: 300px;
}

.poi-hero__copy {
	max-width: 500px;
}

.poi-hero__title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 600;
	line-height: 1.2;
}

.poi-hero__subtitle {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	padding-right: 40px;
}

/* Eco section */
.poi-eco {
	position: relative;
	padding: 80px 0 60px;
	background: linear-gradient(180deg, #000 25%, rgba(7, 18, 27, 0.84) 100%);
	text-align: center;
}

.poi-shape-divider--top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.poi-section-title {
	margin: 0 0 16px;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 600;
	line-height: 1.25;
}

.poi-section-subtitle {
	margin: 0 0 32px;
	color: #ccc;
	font-size: 17px;
}

.poi-eco__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.poi-eco__card {
	display: block;
	min-height: 220px;
	border-radius: 12px;
	background-image: var(--poi-card-bg);
	background-size: cover;
	background-position: center;
	transition: transform 0.25s ease;
}

.poi-eco__card:hover {
	transform: translateY(-4px) scale(1.02);
}

/* Platform */
.poi-platform {
	padding: 80px 0;
	background: var(--poi-black);
}

.poi-platform__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.poi-headline {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 600;
	line-height: 1.2;
}

.poi-headline__highlight {
	display: inline;
}

.poi-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 24px 0;
	border-radius: 8px;
	overflow: hidden;
	background: #111;
}

.poi-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.poi-benefits {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.poi-benefit {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	align-items: center;
}

.poi-benefit__number {
	position: relative;
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 700;
	line-height: 1;
	opacity: 0.7;
	text-align: center;
}

.poi-benefit__number::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #000, transparent);
	pointer-events: none;
}

.poi-benefit__text {
	font-size: 1rem;
	color: #fff;
}

.poi-benefit__text strong {
	display: inline-block;
	margin-bottom: 4px;
}

/* Stats */
.poi-stats {
	padding: 70px 0;
	background: linear-gradient(180deg, transparent 32%, #000 80%);
	text-align: center;
}

.poi-stats__title {
	margin: 0 0 40px;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 600;
}

.poi-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.poi-stat__number {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 600;
	color: var(--poi-primary);
	font-family: var(--poi-font);
}

.poi-stat__label {
	margin-top: 8px;
	font-size: 0.85rem;
	color: #54595f;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Marquee */
.poi-marquee {
	position: relative;
	overflow: hidden;
	padding: 40px 0 80px;
	background: #000;
}

.poi-marquee__row {
	position: relative;
	margin: 10px 0;
	transform: scale(1.1);
}

.poi-marquee__row--a {
	transform: rotate(-4deg) scale(1.1);
}

.poi-marquee__row--b {
	transform: rotate(4deg) scale(1.1);
}

.poi-marquee__track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: poiMarquee 30s linear infinite;
}

.poi-marquee__row--b .poi-marquee__track {
	animation-direction: reverse;
}

.poi-marquee__track span {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.9);
	white-space: nowrap;
}

@keyframes poiMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Pricing */
.poi-pricing {
	padding: 80px 0 100px;
	background: linear-gradient(180deg, #000 0%, var(--poi-dark) 100%);
	text-align: center;
}

.poi-pricing__kicker {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.poi-pricing__title {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 600;
}

.poi-pricing__subtitle {
	margin: 0 0 40px;
	font-size: 17px;
	color: #fff;
}

.poi-pricing__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	align-items: stretch;
	text-align: center;
}

.poi-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #fff;
	color: #222;
	border-radius: 15px;
	padding: 28px 20px 20px;
	min-height: 100%;
}

.poi-plan--featured {
	border: 2px solid var(--poi-cyan-1);
	box-shadow: 0 0 30px rgba(0, 168, 255, 0.28);
	transform: translateY(-4px);
}

.poi-plan__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
}

.poi-plan__badge span {
	display: inline-block;
	background: linear-gradient(90deg, #0ea5e9, #0369a1);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.poi-plan__badges {
	display: none;
}

.poi-plan__badges span {
	display: none;
}

.poi-plan__name {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #111;
}

.poi-plan__desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--poi-text-muted);
}

.poi-plan__features-title {
	margin: 8px 0 0;
	font-size: 0.95rem;
	font-weight: 600;
}

.poi-plan__features {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}

.poi-plan__features li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 0;
	font-size: 0.9rem;
}

.poi-plan__features li::before {
	content: "";
	width: 16px;
	height: 16px;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232200ff' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'/%3E%3C/svg%3E");
	flex-shrink: 0;
}

.poi-plan__terms {
	margin: 8px 0 0;
	font-size: 0.75rem;
	color: #666;
}

.poi-plan__terms a {
	color: #00f;
	text-decoration: underline;
}

/* Prefooter + footer */
.poi-prefooter {
	padding: 40px 0;
	background: var(--poi-dark);
}

.poi-prefooter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.poi-footer {
	background: var(--poi-footer);
	padding: 24px 0 40px;
}

.poi-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.poi-footer__logo {
	max-width: 160px;
	opacity: 0.9;
}

.poi-footer__copy {
	margin: 0;
	font-size: 0.9rem;
	color: #ccc;
	line-height: 1.6;
}

.poi-social__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.poi-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: background 0.2s, transform 0.2s;
}

.poi-social__link:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-2px);
}

.poi-social__link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Float bar */
.poi-float-bar {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 90;
	display: flex;
	gap: 8px;
	padding: 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.poi-page {
	padding: 120px 0 80px;
	color: #eee;
}

.poi-page h1 {
	margin-top: 0;
}

.poi-entry a {
	color: var(--poi-cyan-1);
}

/* Responsive */
@media (max-width: 1024px) {
	.poi-eco__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.poi-platform__grid {
		grid-template-columns: 1fr;
	}

	.poi-pricing__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.poi-header__actions {
		display: none;
	}

	.poi-header__tagline {
		display: none;
	}

	.poi-nav__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.poi-nav__panel {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		min-width: 220px;
		background: #fff;
		border-radius: 12px;
		padding: 12px;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	}

	.poi-nav.is-open .poi-nav__panel {
		display: block;
	}

	.poi-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.poi-nav__list a {
		display: block;
		padding: 12px;
		color: #111;
		border-radius: 8px;
	}

	.poi-nav__list a:hover {
		background: #e2e2e2;
		color: #111;
	}

	.poi-hero {
		min-height: 70vh;
		padding: 60px 0;
		background-position: center;
	}

	.poi-hero__inner,
	.poi-btn--cyan {
		width: 100%;
	}

	.poi-stats__grid,
	.poi-pricing__grid,
	.poi-eco__grid {
		grid-template-columns: 1fr;
	}

	.poi-benefit {
		grid-template-columns: 70px 1fr;
	}

	.poi-float-bar {
		width: calc(100% - 24px);
		justify-content: center;
		flex-wrap: wrap;
		border-radius: 16px;
	}

	.poi-prefooter__inner {
		justify-content: center;
		text-align: center;
	}
}
