/* Tokens de diseño + reset + tipografía base. Portado 1:1 desde la vista
   previa aprobada por el cliente. */

:root {
	--bg: #FFFFFF;
	--bg-alt: #DCE7F2;
	--card-bg: #FFFFFF;
	--surface: #FFFFFF;
	--text: #16203A;
	--text-muted: #5B6478;
	--navy: #16224C;
	--navy-deep: #0E1836;
	--gold: #AD7F35;
	--gold-bright: #E5C482;
	--red: #C22E26;
	--red-dark: #9E241D;
	--border: #E1E6EC;
	--shadow: 0 20px 40px -22px rgba(22, 34, 76, 0.28);
	--radius-btn: 24px;
	--font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
	src: url("../fonts/manrope-variable-latin.woff2") format("woff2");
}

/* Este sitio se muestra siempre en su versión blanca/clara: es la marca real
   de Alicanto Propiedades y no tiene modo oscuro, por lo que se ignora
   deliberadamente la preferencia de tema del sistema operativo o navegador. */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.01em;
	text-wrap: balance;
	margin: 0;
	color: var(--navy);
}

.eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--red);
	font-weight: 700;
}

button {
	font-family: inherit;
	cursor: pointer;
}

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

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 30px;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--radius-btn);
	border: 1px solid transparent;
	white-space: nowrap;
	transition: transform 0.15s ease, background 0.15s ease, filter 0.15s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn-red {
	background: var(--red);
	color: #fff;
}

.btn-red:hover {
	background: var(--red-dark);
}

.btn-navy {
	background: var(--navy);
	color: #fff;
}

.btn-navy:hover {
	filter: brightness(1.12);
}

.btn-outline {
	background: transparent;
	border-color: var(--border);
	color: var(--text);
}

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

.btn-outline-white {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 0.78rem;
	border-radius: 20px;
}

.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: 0;
	z-index: 100;
	background: var(--navy);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 4px 0;
}

.skip-link:focus {
	left: 0;
}
