/* ==========================================================================
   AR Abogados — main.css
   ========================================================================== */

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-wght-normal.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--ink: #0e1b2c;
	--navy: #13263d;
	--navy-2: #1c3350;
	--accent: #b08d57;
	--accent-hover: #c4a36f;
	--paper: #f6f4ef;
	--white: #fff;
	--text: #1c2330;
	--muted: #5b6472;
	--line: #e3dfd6;
	--wa: #1faa53;
	--wa-hover: #178a43;

	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

	--radius: 4px;
	--shadow: 0 1px 2px rgb(14 27 44 / 6%), 0 8px 24px rgb(14 27 44 / 8%);
	--container: 1180px;
	--gutter: 20px;
	--header-h: 68px;
	--section-y: clamp(56px, 8vw, 104px);
}

/* Base ------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	padding-bottom: 64px; /* barra móvil */
}

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

a { color: var(--navy-2); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.12;
	color: var(--ink);
	margin: 0 0 .5em;
	letter-spacing: -.01em;
}

p { margin: 0 0 1em; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 8px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ink);
	color: var(--white);
}
.skip-link:focus { left: 8px; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* Buttons ---------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	min-height: 48px;
	padding: .75em 1.5em;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font: 600 .95rem/1.2 var(--font-sans);
	letter-spacing: .01em;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: var(--accent-hover); color: var(--ink); }

.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--paper); color: var(--ink); }

.btn--ghost-light { border-color: rgb(255 255 255 / 55%); color: var(--white); background: transparent; }
.btn--ghost-light:hover { border-color: var(--white); background: rgb(255 255 255 / 10%); color: var(--white); }

.btn--sm { min-height: 40px; padding: .55em 1.1em; font-size: .875rem; }
.btn--lg { min-height: 54px; padding: .9em 1.75em; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 559px) {
	.btn-row { flex-direction: column; }
	.btn-row .btn { width: 100%; }
}

/* Header ----------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 2px 12px rgb(14 27 44 / 6%); }
.admin-bar .site-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .site-header { top: 32px; } }

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-h);
	gap: 24px;
}

.wordmark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.wordmark__mark { font: 500 2.1rem/1 var(--font-serif); letter-spacing: -.04em; }
.wordmark__text {
	padding-left: 12px;
	border-left: 1px solid var(--line);
	font: 500 .75rem/1.25 var(--font-sans);
	letter-spacing: .16em;
	text-transform: uppercase;
	max-width: 9.5em;
}
.wordmark__img { height: 42px; width: auto; mix-blend-mode: multiply; }

.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ink);
	cursor: pointer;
}
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle__close,
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline; }

.site-nav {
	position: fixed;
	inset: var(--header-h) 0 0;
	display: none;
	flex-direction: column;
	gap: 24px;
	padding: 24px var(--gutter) 40px;
	background: var(--white);
	overflow-y: auto;
}
.admin-bar .site-nav { top: calc(var(--header-h) + 46px); }
.site-nav.is-open { display: flex; }
body.nav-open { overflow: hidden; }

.menu, .menu ul { list-style: none; margin: 0; padding: 0; }
.menu a {
	display: block;
	padding: 12px 0;
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--line);
}
.menu .sub-menu a { padding-left: 16px; font-weight: 400; color: var(--muted); }
.menu .current-menu-item > a,
.menu a:hover { color: var(--accent); }

@media (min-width: 1024px) {
	.nav-toggle { display: none; }
	.site-nav,
	.admin-bar .site-nav {
		position: static;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 28px;
		padding: 0;
		background: none;
		overflow: visible;
	}
	.menu { display: flex; gap: 26px; }
	.menu > li { position: relative; }
	.menu a { border: 0; padding: 8px 0; font-size: .92rem; }
	.menu .sub-menu {
		position: absolute;
		top: 100%;
		left: -16px;
		min-width: 280px;
		padding: 8px 0;
		background: var(--white);
		border: 1px solid var(--line);
		box-shadow: var(--shadow);
		opacity: 0;
		visibility: hidden;
		transform: translateY(6px);
		transition: opacity .15s, transform .15s, visibility .15s;
	}
	.menu li:hover > .sub-menu,
	.menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
	.menu .sub-menu a { padding: 9px 16px; color: var(--text); }
}

/* Hero ------------------------------------------------------------------- */

.hero {
	position: relative;
	color: var(--white);
	background: radial-gradient(120% 90% at 85% 0%, var(--navy-2) 0%, var(--ink) 60%);
	overflow: hidden;
}
.hero--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--hero-bg) center / cover no-repeat;
	opacity: .22;
	filter: grayscale(100%);
}
/* Decoración animada del hero */
.hero__decor { position: absolute; inset: 0; pointer-events: none; }

.hero__glow {
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60vw;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgb(176 141 87 / 14%), transparent 70%);
	animation: ar-drift 18s ease-in-out infinite alternate;
}

.hero__ring {
	position: absolute;
	aspect-ratio: 1;
	border-radius: 50%;
	opacity: 0;
	animation: ar-ring-in 1.6s .4s cubic-bezier(.2, .7, .2, 1) forwards, ar-spin 60s linear infinite;
}
.hero__ring--outer {
	right: -8vw;
	bottom: -30%;
	width: 55vw;
	border: 1px solid rgb(176 141 87 / 28%);
}
.hero__ring--inner {
	right: 4vw;
	bottom: -12%;
	width: 34vw;
	border: 1px dashed rgb(255 255 255 / 10%);
	animation-duration: 1.6s, 90s;
	animation-direction: normal, reverse;
	animation-delay: .7s, 0s;
}
/* Punto que orbita sobre cada anillo */
.hero__ring::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -4px;
	width: 7px;
	height: 7px;
	margin-top: -3.5px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 12px 2px rgb(176 141 87 / 55%);
}
.hero__ring--inner::before { width: 5px; height: 5px; margin-top: -2.5px; left: -3px; background: rgb(255 255 255 / 60%); box-shadow: none; }

/* Entrada escalonada del contenido */
.hero__inner > * { animation: ar-rise .9s cubic-bezier(.2, .7, .2, 1) both; }
.hero__inner > :nth-child(1) { animation-delay: .1s; }
.hero__inner > :nth-child(2) { animation-delay: .22s; }
.hero__inner > :nth-child(3) { animation-delay: .36s; }
.hero__inner > :nth-child(4) { animation-delay: .5s; }
.hero__inner > :nth-child(5) { animation-delay: .64s; }

.hero__stat { position: relative; }
.hero__stat::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--accent);
	transform-origin: left;
	animation: ar-line 1.4s .9s cubic-bezier(.65, 0, .35, 1) both;
}

@keyframes ar-rise {
	from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
	to   { opacity: 1; transform: none; filter: none; }
}
@keyframes ar-ring-in {
	from { opacity: 0; scale: .92; }
	to   { opacity: 1; scale: 1; }
}
@keyframes ar-spin { to { rotate: 360deg; } }
@keyframes ar-drift {
	from { transform: translate(0, 0) scale(1); }
	to   { transform: translate(-8vw, 6vh) scale(1.15); }
}
@keyframes ar-line {
	0%   { transform: scaleX(0); opacity: 1; }
	60%  { transform: scaleX(1); opacity: 1; }
	100% { transform: scaleX(1); opacity: 0; }
}
.hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(72px, 13vw, 160px) clamp(64px, 10vw, 128px);
	max-width: calc(820px + 2 * var(--gutter));
	margin-left: max(0px, calc((100% - var(--container)) / 2));
}
.hero__title {
	color: var(--white);
	font-size: clamp(2.3rem, 6vw, 4.1rem);
	font-weight: 500;
	margin-bottom: .4em;
}
.hero__lead {
	max-width: 36em;
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: rgb(255 255 255 / 80%);
	margin-bottom: 2em;
}
.hero__stat {
	margin: 2.5em 0 0;
	padding-top: 1.25em;
	border-top: 1px solid rgb(255 255 255 / 15%);
	color: rgb(255 255 255 / 70%);
	font-size: .95rem;
}
.hero__stat strong { font: 600 1.8rem/1 var(--font-serif); color: var(--accent); margin-right: .3em; }

.eyebrow {
	margin: 0 0 1em;
	font: 600 .75rem/1.3 var(--font-sans);
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--accent);
}

/* Page hero -------------------------------------------------------------- */

.page-hero {
	padding-block: clamp(56px, 9vw, 112px) clamp(40px, 6vw, 72px);
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.page-hero__title { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 500; max-width: 18em; }
.page-hero__lead { max-width: 40em; font-size: 1.1rem; color: var(--muted); }
.page-hero .btn-row { margin-top: 28px; }

/* Sections --------------------------------------------------------------- */

.section { padding-block: var(--section-y); }
.section--alt { background: var(--paper); }

.section-head { max-width: 44em; margin-bottom: clamp(32px, 5vw, 56px); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 500; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 20px; }
@media (min-width: 640px) {
	.grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.grid--3 { grid-template-columns: repeat(3, 1fr); }
	.grid--4 { grid-template-columns: repeat(4, 1fr); }
	.grid { gap: 24px; }
}

/* Cards ------------------------------------------------------------------ */

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.section--alt .card { border-color: transparent; }
.card:has(.stretched-link):hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }

.card__number { font: 500 2.4rem/1 var(--font-serif); color: var(--accent); margin-bottom: 20px; }
.card__title { font-size: 1.55rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__text { color: var(--muted); font-size: .96rem; }
.card__text > :last-child { margin-bottom: 0; }
.card__meta { font-size: .82rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .6em; }
.card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 16px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--navy-2);
}
.card__media { margin: -28px -28px 20px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.stretched-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

.check-list { list-style: none; margin: 16px 0 24px; padding: 0; }
.check-list li { display: flex; gap: 10px; padding: 7px 0; font-size: .96rem; }
.check-list .icon { margin-top: .22em; color: var(--accent); }

/* Plans ------------------------------------------------------------------ */

.plans { align-items: stretch; }
@media (min-width: 640px) and (max-width: 1023px) {
	.plans { grid-template-columns: minmax(0, 560px); justify-content: center; row-gap: 32px; }
	/* Grillas de 3 en tablet: el ítem huérfano ocupa la fila completa */
	.grid--3:not(.plans) > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.card--plan { padding: 32px 28px; }
.card--plan .btn { margin-top: auto; }
.card--plan.is-featured { border: 2px solid var(--accent); box-shadow: var(--shadow); }
.plan__price { font: 600 1.6rem/1.2 var(--font-serif); color: var(--ink); }
.badge {
	position: absolute;
	top: -13px;
	left: 28px;
	padding: 4px 12px;
	background: var(--accent);
	color: var(--ink);
	font: 700 .75rem/1.4 var(--font-sans);
	letter-spacing: .12em;
	text-transform: uppercase;
	border-radius: 999px;
}

/* Team ------------------------------------------------------------------- */

.team { display: grid; gap: 40px; }
.member { display: grid; gap: 24px; background: var(--white); padding: 24px; border-radius: var(--radius); }
.member__photo { aspect-ratio: 5 / 6; background: var(--navy); border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; max-width: 220px; }
@media (min-width: 768px) { .member__photo { max-width: 320px; } }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member__initials { font: 500 4rem/1 var(--font-serif); color: var(--accent); }
.member__name { font-size: 2rem; }
.member__education { color: var(--muted); font-style: italic; }
.member__contact { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .92rem; }
.member__contact a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; text-decoration: none; }

.timeline { list-style: none; margin: 20px 0 0; padding: 0 0 0 18px; border-left: 1px solid var(--line); }
.timeline li { position: relative; display: flex; gap: 14px; padding: 6px 0; font-size: .95rem; }
.timeline li::before { content: ""; position: absolute; left: -22px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.timeline__year { flex: none; min-width: 3.2em; font-weight: 600; color: var(--ink); }

@media (min-width: 768px) {
	.member { grid-template-columns: 280px 1fr; gap: 40px; padding: 36px; }
}

/* Area ------------------------------------------------------------------- */

.area-layout { display: grid; gap: 40px; }
.area-aside { padding: 28px; background: var(--paper); border-radius: var(--radius); align-self: start; }
.area-aside__title { font-size: 1.5rem; }
.metric { display: flex; flex-direction: column; margin: 8px 0 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.metric strong { font: 600 2.6rem/1 var(--font-serif); color: var(--accent); }
.metric span { color: var(--muted); font-size: .92rem; margin-top: 6px; }
@media (min-width: 1024px) {
	.area-layout { grid-template-columns: 1fr 360px; gap: 64px; }
	.area-aside { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* Prose ------------------------------------------------------------------ */

.prose-wrap { max-width: calc(760px + 2 * var(--gutter)); }
.prose { font-size: 1.06rem; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.45rem; margin-top: 1.4em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose blockquote {
	margin: 2em 0;
	padding: 0 0 0 24px;
	border-left: 2px solid var(--accent);
	font: 500 1.5rem/1.35 var(--font-serif);
	color: var(--ink);
}
.prose img { border-radius: var(--radius); }
.post-media img { width: 100%; border-radius: var(--radius); margin-top: -24px; }

/* Promo ------------------------------------------------------------------ */

.promo {
	display: grid;
	gap: 24px;
	align-items: center;
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--line);
	border-left: 3px solid var(--accent);
	border-radius: var(--radius);
}
.promo__title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.promo p { color: var(--muted); margin: 0; }
@media (min-width: 768px) { .promo { grid-template-columns: 1fr auto; } }

/* CTA band --------------------------------------------------------------- */

.cta-band { background: var(--ink); color: rgb(255 255 255 / 78%); padding-block: clamp(48px, 7vw, 80px); }
.cta-band__inner { display: grid; gap: 24px; align-items: center; }
.cta-band__title { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 500; }
.cta-band p { margin: 0; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 48px; } }

/* Contact ---------------------------------------------------------------- */

.contact-grid { display: grid; gap: 40px; }
.contact-card { padding: 28px; background: var(--ink); color: rgb(255 255 255 / 80%); border-radius: var(--radius); align-self: start; }
.contact-card__title { color: var(--white); font-size: 1.8rem; }
.contact-card .contact-list { margin-top: 24px; }
.contact-card .contact-list a,
.contact-card .contact-list { color: rgb(255 255 255 / 85%); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 380px 1fr; gap: 64px; } }

.contact-list { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; padding: 4px 0; }
.contact-list li > .icon { margin-top: .5em; }
.contact-list .contact-link .icon { margin-top: 0; }
.contact-list .icon { margin-top: .22em; color: var(--accent); }
.contact-link { display: inline-flex; align-items: center; gap: 10px; min-height: 40px; color: inherit; text-decoration: none; }
.contact-link:hover { color: var(--accent); }

/* Contact Form 7 */
.wpcf7 form { display: grid; gap: 18px; }
.wpcf7 label { display: block; font-weight: 500; font-size: .92rem; color: var(--ink); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	font-size: 1rem;
	background: var(--white);
	color: var(--text);
}
.wpcf7 textarea { height: 160px; min-height: 120px; resize: vertical; }
@media (min-width: 768px) { .wpcf7 textarea { height: 200px; } }
.wpcf7 input[type="checkbox"] { width: 20px; height: 20px; margin: 0; flex: none; accent-color: var(--accent); }
.wpcf7 input:focus,
.wpcf7 textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgb(176 141 87 / 20%); }
.wpcf7 .wpcf7-acceptance label { display: flex; gap: 10px; font-weight: 400; color: var(--muted); font-size: .88rem; }
.wpcf7 .wpcf7-list-item { margin: 0; }
.wpcf7 input[type="submit"] {
	justify-self: start;
	min-height: 48px;
	padding: .75em 1.75em;
	border: 0;
	border-radius: var(--radius);
	background: var(--accent);
	color: var(--ink);
	font: 600 .95rem var(--font-sans);
	cursor: pointer;
}
.wpcf7 input[type="submit"]:hover { background: var(--accent-hover); }
.wpcf7 input[type="submit"]:disabled { opacity: .5; cursor: not-allowed; }
.wpcf7-not-valid-tip { font-size: .85rem; color: #b42318; margin-top: 4px; }
.wpcf7 form .wpcf7-response-output { margin: 0; padding: 12px 16px; border-radius: var(--radius); font-size: .92rem; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Footer ----------------------------------------------------------------- */

.site-footer { background: #0a1522; color: rgb(255 255 255 / 70%); font-size: .94rem; padding-top: 64px; }
.site-footer a { color: rgb(255 255 255 / 80%); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer .wordmark { color: var(--white); }
.site-footer .wordmark__text { border-color: rgb(255 255 255 / 20%); }
.site-footer .wordmark__img { filter: invert(1) grayscale(1) brightness(1.4); mix-blend-mode: screen; }
.site-footer__grid { display: grid; gap: 40px; padding-bottom: 48px; }
.site-footer__brand p { margin: 20px 0; max-width: 26em; }
.site-footer__title { color: var(--white); font: 600 .78rem/1.3 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links a { display: block; padding: 9px 0; line-height: 1.4; }
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	padding-block: 20px;
	border-top: 1px solid rgb(255 255 255 / 10%);
	font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }
.footer-menu { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.social { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; }
.social .icon { width: 17px; height: 17px; }
@media (min-width: 640px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
	.site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
	.site-footer__brand { grid-column: auto; }
}

/* WhatsApp float + barra móvil ------------------------------------------- */

.wa-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	display: none;
	align-items: center;
	gap: 10px;
	height: 56px;
	padding: 0 20px 0 16px;
	border-radius: 999px;
	background: var(--wa);
	color: var(--white);
	font-weight: 600;
	font-size: .92rem;
	text-decoration: none;
	box-shadow: 0 6px 20px rgb(31 170 83 / 35%);
	transition: background-color .2s, transform .2s;
}
.wa-float:hover { background: var(--wa-hover); color: var(--white); transform: translateY(-2px); }
.wa-float .icon { width: 26px; height: 26px; }

.mobile-bar {
	position: fixed;
	inset: auto 0 0;
	z-index: 90;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	gap: 1px;
	background: var(--line);
	box-shadow: 0 -4px 16px rgb(14 27 44 / 10%);
	padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	background: var(--white);
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}
.mobile-bar__btn--wa { background: var(--wa); color: var(--white); }
.mobile-bar__btn--wa:hover { color: var(--white); }

@media (min-width: 1024px) {
	body { padding-bottom: 0; }
	.mobile-bar { display: none; }
	.wa-float { display: inline-flex; }
}

/* Misc ------------------------------------------------------------------- */

.pagination { margin-top: 48px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.page-numbers.current { background: var(--ink); color: var(--white); border-color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
	.hero__ring { opacity: 1; }
}
