:root {
	/* High contrast override — DO NOT REMOVE */
	--eines-color-text: #0b0b0b;
	--eines-color-muted: #535353;
	--eines-color-border: #d7d7d7;
	--white: #ffffff;
	--eines-color-surface: #f5f5f5;
	--eines-color-accent: #68b022;
	--eines-color-accent-dark: #427318;
	--eines-neutral-01: #F9F9F9;
	--eines-color-hover: #dff6ce;
	--eines-font-base: "Source Sans Pro", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--color-text-accessible: #1a1a1a;
	--service-lime: #d6f168;
	--eines-primary-01: #F4FCE9;
	--auia-neutral-20: #F9F9F9;
	--service-panel-border: rgba(20, 20, 20, 0.16);
	--transition: all 900ms cubic-bezier(0.19, 1, 0.155, 1.01) 0s;
}

:focus-visible {
	outline: 3px solid #005fcc;
	outline-offset: 2px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;

	/* WCAG 2.4.11/2.4.13 (Foco no oculto): la cabecera flotante es position:fixed
	   (margen 32px + alto mín. 64px ≈ 96px). Este relleno de scroll evita que el
	   indicador de foco o el destino del enlace de salto queden ocultos bajo ella
	   al navegar con teclado. No altera la maquetación visual. */
	scroll-padding-top: 112px;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--eines-color-text);
	font-family: var(--eines-font-base);
	line-height: 1.5;
}

.row {
	--eines-grid-gutter-x: 1.5rem;
	--eines-grid-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--eines-grid-gutter-y));
	margin-right: calc(-0.5 * var(--eines-grid-gutter-x));
	margin-left: calc(-0.5 * var(--eines-grid-gutter-x));
}

.row > * {
	box-sizing: border-box;
	flex-shrink: 0;
	margin-top: var(--eines-grid-gutter-y);
	max-width: 100%;
	padding-right: calc(var(--eines-grid-gutter-x) * 0.5);
	padding-left: calc(var(--eines-grid-gutter-x) * 0.5);
	width: 100%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

@media (min-width: 768px) {
	.col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

.d-flex             { display: flex; }
.flex-wrap          { flex-wrap: wrap; }
.g-4                { gap: 1.5rem; }
.align-items-center { align-items: center; }

body.home {
	background: var(--eines-color-surface);
}

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

.eines-decorative-image {
	background-image: var(--eines-decorative-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

a {
	color: inherit;
}

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

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

.sr-only.focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	display: inline-flex;
	padding: 10px 14px;
	background: #ffffff;
	color: #0b0b0b;
	border: 2px solid #005fcc;
	border-radius: 4px;
	font-weight: 700;
	text-decoration: none;
}

.site-header__brand-text abbr {
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

.site-main {
	margin: 0 auto;
	padding: 48px 0;
	width: min(1120px, calc(100% - 32px));
}

.divider-16 {
	padding-top: 1rem;
}

.divider-32 {
	padding-top: 2rem;
}

.divider-48 {
	padding-top: 3rem;
}

.divider-64 {
	padding-top: 4rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px;
}

#tramits-i-financament {
	border-top: 1px solid var(--service-panel-border);
	padding-top: 96px;
}

.position-relative {
	position: relative;
}

h4 {
	font-size: 24px;
	margin: 0px;
}

abbr[title] {
    text-decoration: none !important;
}

h3, h4 {
	font-weight: 500 !important;
}

[data-state="closed"] {
  display: none !important;
}