/*
 * Ignitia EduLab — estilos base del theme.
 *
 * Este archivo se construye por fases, en el mismo orden que las plantillas:
 *   Fase A (actual): reset, tipografía base, contenedor, botones, eyebrow, logo.
 *   Fase B: agrega estilos de header y footer.
 *   Fase C: agrega un bloque por cada sección de la landing (hero, problemas, etc.).
 * Cada bloque queda delimitado con un comentario para ubicarlo rápido.
 */

/* ==================== RESET ==================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	background: var(--lino);
	color: var(--navy);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}
button {
	font: inherit;
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/* ==================== TIPOGRAFÍA ==================== */
h1,
h2,
h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.14;
}

/* ==================== CONTENEDOR Y SECCIONES ==================== */
.wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 32px;
}
section {
	padding: 104px 0;
}
@media (max-width: 720px) {
	section {
		padding: 68px 0;
	}
	.wrap {
		padding: 0 22px;
	}
}

/* ==================== EYEBROW (etiqueta de sección) ==================== */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 16px;
}
.eyebrow::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--amarillo);
	display: inline-block;
}

/* ==================== BOTONES ==================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease,
		color 0.18s ease;
}
.btn:focus-visible {
	outline: 3px solid var(--amarillo);
	outline-offset: 3px;
}
.btn-primary {
	background: var(--navy);
	color: var(--blanco);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--sombra);
}
.btn-ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--linea);
}
.btn-ghost:hover {
	border-color: var(--navy);
}
.btn-onbrand {
	background: var(--amarillo);
	color: var(--navy);
}
.btn-onbrand:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.35);
}
.btn-outline-light {
	background: transparent;
	color: var(--blanco);
	border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
	border-color: var(--blanco);
}
.btn-sm {
	padding: 10px 18px;
	font-size: 13.5px;
	border-radius: 8px;
}

/* ==================== LOGO (retícula de 4 módulos, según manual de marca) ==================== */
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}
.logo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	overflow: hidden;
	flex: none;
}
.logo-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-grid .g1 {
	background: var(--navy);
} /* Enfoque */
.logo-grid .g2 {
	background: var(--teal);
} /* Comunicación */
.logo-grid .g3 {
	background: var(--coral);
} /* Educación */
.logo-grid .g4 {
	background: var(--amarillo);
} /* Encendido */
.logo-grid svg {
	width: 15px;
	height: 15px;
}
.logo-image {
	height: 40px;
	width: auto;
	display: block;
}
.logo-word {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 19px;
	line-height: 1;
	color: var(--navy);
}
.logo-word span {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 10.5px;
	color: var(--amarillo);
	letter-spacing: 0.04em;
	margin-top: 1px;
}

/* ==================== HEADER / NAV ==================== */
header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(245, 245, 245, 0.88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--linea);
}
.nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	max-width: 1160px;
	margin: 0 auto;
}
/* Agrupa los enlaces y los botones para poder colapsarlos juntos en móvil
   detrás del botón de menú, sin duplicar ningún markup. */
.nav-collapse {
	display: flex;
	align-items: center;
	gap: 36px;
}
.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}
.nav-links a {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 14.5px;
	color: var(--navy);
	padding: 6px 2px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.15s ease;
}
.nav-links a:hover {
	border-color: var(--amarillo);
}
.nav-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Botón hamburguesa — oculto en escritorio, visible solo en móvil */
.nav-toggle {
	display: none;
	flex: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--linea);
	border-radius: 8px;
}
.nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
	.nav {
		padding: 14px 22px;
	}
	.nav-toggle {
		display: flex;
	}
	.nav-collapse {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 18px 22px 24px;
		background: var(--lino);
		border-bottom: 1px solid var(--linea);
		box-shadow: 0 18px 34px -16px rgba(0, 20, 45, 0.25);
	}
	.nav-collapse.is-open {
		display: flex;
	}
	.nav-links {
		flex-direction: column;
		gap: 2px;
	}
	.nav-links a {
		display: block;
		padding: 12px 4px;
		border-bottom: 1px solid var(--linea);
	}
	.nav-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	.nav-cta .btn {
		width: 100%;
	}
}

/* ==================== FOOTER ==================== */
footer {
	background: #000c1a;
	color: rgba(255, 255, 255, 0.7);
	padding: 60px 0 28px;
}
.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 24px;
}
.footer-brand p {
	max-width: 32ch;
	font-size: 14px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.5);
}
.footer-cols {
	display: flex;
	gap: 56px;
	flex-wrap: wrap;
}
.footer-col h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
	font-weight: 600;
}
.footer-col a,
.footer-col p {
	display: block;
	font-size: 14.5px;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.6);
}
.footer-col a:hover {
	color: var(--amarillo);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
}

/* ==================== HERO ==================== */
.hero {
	padding: 88px 0 60px;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
}
.hero h1 {
	font-size: clamp(32px, 4.6vw, 48px);
	margin-bottom: 20px;
}
.hero h1 em {
	font-style: normal;
	color: var(--coral);
}
.hero p.lead {
	font-size: 18px;
	color: var(--piedra);
	max-width: 46ch;
	margin-bottom: 32px;
	font-weight: 400;
}
.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.hero-trust {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: var(--piedra);
}
.hero-trust b {
	color: var(--navy);
	font-weight: 700;
	display: block;
	font-size: 22px;
}
.hero-visual {
	position: relative;
}
.hero-photo {
	border-radius: var(--radio);
	overflow: hidden;
	box-shadow: var(--sombra);
	aspect-ratio: 4 / 4.4;
	position: relative;
}
.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 20, 45, 0) 45%, rgba(0, 20, 45, 0.75) 100%);
}
.hero-photo-caption {
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: 24px;
	z-index: 2;
	color: #fff;
}
.hero-photo-caption p {
	font-size: 14px;
	opacity: 0.85;
}
.hero-photo-caption strong {
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	display: block;
	margin-bottom: 4px;
}
.hero-badge {
	position: absolute;
	top: -18px;
	right: -18px;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--sombra);
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	width: 76px;
}
.hero-badge span {
	aspect-ratio: 1;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-badge span:nth-child(1) {
	background: var(--navy);
}
.hero-badge span:nth-child(2) {
	background: var(--teal);
}
.hero-badge span:nth-child(3) {
	background: var(--coral);
}
.hero-badge span:nth-child(4) {
	background: var(--amarillo);
}
.hero-badge svg {
	width: 12px;
	height: 12px;
}
@media (max-width: 900px) {
	.hero-badge {
		display: none;
	}
}

/* ==================== PROBLEMAS ==================== */
.problemas {
	background: var(--blanco);
	border-top: 1px solid var(--linea);
	border-bottom: 1px solid var(--linea);
}
.problemas-head {
	max-width: 640px;
	margin-bottom: 50px;
}
.problemas-head h2 {
	font-size: clamp(26px, 3.4vw, 38px);
}
.problem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--linea);
	border: 1px solid var(--linea);
	border-radius: 16px;
	overflow: hidden;
}
@media (max-width: 720px) {
	.problem-grid {
		grid-template-columns: 1fr;
	}
}
.problem-item {
	background: var(--lino);
	padding: 26px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.problem-item .mark {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid var(--coral);
	color: var(--coral);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
}
.problem-item p {
	font-size: 15.5px;
	color: var(--navy);
}

/* ==================== VENDEMOS ==================== */
.vendemos {
	background: var(--navy);
	color: #fff;
}
.vendemos .eyebrow {
	color: var(--amarillo);
}
.vendemos .eyebrow::before {
	background: var(--teal);
}
.vendemos-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 900px) {
	.vendemos-grid {
		grid-template-columns: 1fr;
	}
}
.vendemos h2 {
	font-size: clamp(26px, 3.6vw, 38px);
	color: #fff;
	margin-bottom: 18px;
}
.vendemos p.lead {
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	max-width: 44ch;
}
.vendemos-list {
	margin-top: 22px;
}
.vendemos-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16.5px;
}
.vendemos-list li:last-child {
	border-bottom: none;
}
.check {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--amarillo);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
}
.no-vendemos {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 22px;
}
.vendemos-photo {
	border-radius: var(--radio);
	overflow: hidden;
	aspect-ratio: 4 / 3.3;
}
.vendemos-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==================== PILARES ==================== */
.pilares {
	background: var(--lino);
}
.pilares-head {
	max-width: 640px;
	margin: 0 auto 52px;
	text-align: center;
}
.pilares-head h2 {
	font-size: clamp(26px, 3.4vw, 38px);
}
.pilares-head p {
	color: var(--piedra);
	font-size: 16.5px;
	margin-top: 12px;
}
.pilares-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.pilares-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 520px) {
	.pilares-grid {
		grid-template-columns: 1fr;
	}
}
.pilar {
	background: #fff;
	border: 1px solid var(--linea);
	border-radius: 16px;
	padding: 30px 24px;
	text-align: center;
}
.pilar-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pilar-icon svg {
	width: 24px;
	height: 24px;
}
.pilar:nth-child(1) .pilar-icon {
	background: var(--navy);
}
.pilar:nth-child(2) .pilar-icon {
	background: var(--teal);
}
.pilar:nth-child(3) .pilar-icon {
	background: var(--coral);
}
.pilar:nth-child(4) .pilar-icon {
	background: var(--amarillo);
}
.pilar h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 16.5px;
	margin-bottom: 8px;
	font-weight: 700;
}
.pilar:nth-child(1) h4 {
	color: var(--navy);
}
.pilar:nth-child(2) h4 {
	color: var(--teal);
}
.pilar:nth-child(3) h4 {
	color: var(--coral);
}
.pilar:nth-child(4) h4 {
	color: var(--amarillo);
}
.pilar p {
	font-size: 14px;
	color: var(--piedra);
}

/* ==================== PROCESO ==================== */
.proceso {
	background: var(--blanco);
	border-top: 1px solid var(--linea);
	border-bottom: 1px solid var(--linea);
}
.proceso-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 900px) {
	.proceso-grid {
		grid-template-columns: 1fr;
	}
}
.proceso-photo {
	border-radius: var(--radio);
	overflow: hidden;
	aspect-ratio: 4 / 4.6;
}
.proceso-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.proceso-head {
	margin-bottom: 38px;
}
.proceso-head h2 {
	font-size: clamp(26px, 3.4vw, 36px);
}
.proceso-list {
	border-top: 1px solid var(--linea);
}
.proceso-item {
	padding: 22px 0;
	border-bottom: 1px solid var(--linea);
	display: flex;
	gap: 18px;
}
.proceso-item .num {
	flex: none;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 14px;
	color: var(--coral);
	width: 30px;
}
.proceso-item h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 16.5px;
	margin-bottom: 4px;
	font-weight: 700;
}
.proceso-item p {
	font-size: 14px;
	color: var(--piedra);
}

/* ==================== PROGRAMAS ==================== */
.programas {
	background: #f0eeea;
}
.programas-head {
	max-width: 640px;
	margin: 0 auto 50px;
	text-align: center;
}
.programas-head h2 {
	font-size: clamp(26px, 3.4vw, 38px);
}
.programas-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
@media (max-width: 820px) {
	.programas-grid {
		grid-template-columns: 1fr;
	}
}
.plan {
	background: #fff;
	border: 1px solid var(--linea);
	border-radius: var(--radio);
	padding: 38px;
	display: flex;
	flex-direction: column;
}
.plan-featured {
	border: 2px solid var(--navy);
	box-shadow: var(--sombra);
	position: relative;
}
.plan-badge {
	position: absolute;
	top: -14px;
	left: 38px;
	background: var(--amarillo);
	color: var(--navy);
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 12px;
	padding: 6px 16px;
	border-radius: 999px;
}
.plan-eyebrow {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: var(--coral);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.plan h3 {
	font-size: 25px;
	margin-bottom: 6px;
}
.plan .precio {
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 33px;
	color: var(--navy);
	margin: 10px 0 6px;
}
.plan .desc {
	color: var(--piedra);
	font-size: 14.5px;
	margin-bottom: 22px;
}
.plan-list {
	margin-bottom: 28px;
}
.plan-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 8px 0;
	font-size: 14.5px;
}
.plan-list li::before {
	content: '✓';
	color: var(--teal);
	font-weight: 700;
	flex: none;
}
.plan .btn {
	margin-top: auto;
	align-self: flex-start;
}

/* ==================== CTA FINAL ==================== */
.cta-final {
	background: var(--navy);
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.cta-final::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 20%, rgba(0, 152, 155, 0.28), transparent 40%),
		radial-gradient(circle at 88% 80%, rgba(253, 74, 67, 0.22), transparent 42%);
}
.cta-final .wrap {
	position: relative;
	z-index: 1;
}
.cta-final .eyebrow {
	color: var(--amarillo);
}
.cta-final .eyebrow::before {
	background: var(--teal);
}
.cta-final h2 {
	font-size: clamp(28px, 4.2vw, 42px);
	max-width: 20ch;
	margin: 0 auto 18px;
}
.cta-final p {
	max-width: 48ch;
	margin: 0 auto 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 17px;
}
.cta-final .hero-actions {
	justify-content: center;
}
.cta-tagline {
	margin-top: 44px;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.01em;
}
.cta-tagline b {
	color: #fff;
	font-weight: 600;
}

/* ==================== PÁGINA GENÉRICA (Páginas → Añadir nueva) ==================== */
/* Usada por page.php e index.php a través de template-parts/content/entry.php */
.page-header {
	background: var(--navy);
	color: #fff;
	padding: 64px 0 52px;
}
.page-header h1 {
	color: #fff;
	font-size: clamp(28px, 4vw, 40px);
	margin: 0;
}

.page-content-section {
	padding: 72px 0;
}

.entry-content {
	max-width: 760px;
	margin: 0 auto;
	color: var(--piedra);
	font-size: 16.5px;
	line-height: 1.75;
}
.entry-content > *:first-child {
	margin-top: 0;
}
.entry-content h2 {
	font-size: 26px;
	color: var(--navy);
	margin: 40px 0 16px;
}
.entry-content h3 {
	font-size: 20px;
	color: var(--navy);
	margin: 32px 0 14px;
}
.entry-content h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--navy);
	margin: 26px 0 12px;
}
.entry-content p {
	margin: 0 0 20px;
}
.entry-content a {
	color: var(--teal);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.entry-content a:hover {
	color: var(--coral);
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 20px;
	padding-left: 22px;
}
.entry-content ul {
	list-style: disc;
}
.entry-content ol {
	list-style: decimal;
}
.entry-content li {
	margin-bottom: 8px;
}
.entry-content blockquote {
	margin: 28px 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--coral);
	color: var(--navy);
	font-style: italic;
}
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 8px 0 24px;
}
.entry-content figure {
	margin: 0 0 24px;
}
.entry-content figcaption {
	margin-top: 8px;
	font-size: 13.5px;
	color: var(--piedra);
	text-align: center;
}
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 24px;
	font-size: 15px;
}
.entry-content th,
.entry-content td {
	padding: 10px 14px;
	border: 1px solid var(--linea);
	text-align: left;
}
.entry-content th {
	background: var(--lino);
	font-family: 'Poppins', sans-serif;
	color: var(--navy);
}
.entry-content hr {
	border: none;
	border-top: 1px solid var(--linea);
	margin: 32px 0;
}

/* ==================== REVEAL ON SCROLL (usado por assets/js/main.js) ==================== */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
