/**
 * Landings locales SLR — Alicante / Benidorm (marca 2026).
 * Rojo #D41E2B · Azul #1A2F5C
 */
.slr-landing-local {
	--slr-red: #D41E2B;
	--slr-red-hover: #b01924;
	--slr-blue: #1A2F5C;
	--slr-dark: #1C1C1C;
	--slr-muted: #c8c8c8;
}

.slr-landing {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 3rem;
	color: #f2f2f2;
}

.slr-landing__hero {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3rem;
	padding: 1rem 0 2rem;
}

.slr-landing__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--slr-red);
}

.slr-landing__title {
	margin: 0 0 1rem !important;
	font-size: clamp(1.75rem, 4vw, 2.35rem) !important;
	line-height: 1.25 !important;
	font-weight: 700 !important;
	color: #fff !important;
	text-transform: none !important;
}

.slr-landing__lead {
	margin: 0 0 1.5rem;
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--slr-muted);
}

.slr-landing__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.slr-landing__btn {
	display: inline-block;
	padding: 0.85rem 1.35rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none !important;
	border-radius: 5px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.slr-landing__btn--primary {
	background: var(--slr-red) !important;
	color: #fff !important;
	border: 2px solid var(--slr-red);
}

.slr-landing__btn--primary:hover,
.slr-landing__btn--primary:focus {
	background: var(--slr-red-hover) !important;
	border-color: var(--slr-red-hover);
	color: #fff !important;
}

.slr-landing__btn--ghost {
	background: transparent !important;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.45);
}

.slr-landing__btn--ghost:hover,
.slr-landing__btn--ghost:focus {
	border-color: #fff;
	color: #fff !important;
}

.slr-landing__section {
	margin: 0 0 2.75rem;
	padding: 0;
}

.slr-landing__section--alt {
	padding: 2rem 1.25rem;
	background: rgba(26, 47, 92, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.slr-landing__h2 {
	margin: 0 0 0.85rem !important;
	font-size: 1.55rem !important;
	font-weight: 700 !important;
	color: var(--slr-red) !important;
	text-align: center !important;
	text-transform: none !important;
}

.slr-landing__intro {
	max-width: 640px;
	margin: 0 auto 1.75rem;
	text-align: center;
	line-height: 1.65;
	color: var(--slr-muted);
}

.slr-landing__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.slr-landing__features li {
	padding: 0.25rem 0.5rem;
}

.slr-landing__features h3 {
	margin: 0 0 0.5rem !important;
	font-size: 1.1rem !important;
	color: #fff !important;
	text-transform: none !important;
}

.slr-landing__features h3::before {
	content: '';
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.45rem;
	background: var(--slr-red);
	vertical-align: 0.1em;
}

.slr-landing__features p {
	margin: 0;
	line-height: 1.6;
	color: var(--slr-muted);
	font-size: 0.98rem;
}

.slr-landing__faq {
	max-width: 720px;
	margin: 0 auto 0.75rem;
	padding: 0.85rem 1.1rem;
	background: var(--slr-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.slr-landing__faq summary {
	cursor: pointer;
	font-weight: 600;
	color: #fff;
	list-style: none;
}

.slr-landing__faq summary::-webkit-details-marker {
	display: none;
}

.slr-landing__faq summary::before {
	content: '+';
	display: inline-block;
	width: 1.25rem;
	color: var(--slr-red);
	font-weight: 700;
}

.slr-landing__faq[open] summary::before {
	content: '−';
}

.slr-landing__faq p {
	margin: 0.75rem 0 0.25rem;
	color: var(--slr-muted);
	line-height: 1.6;
}

.slr-landing__faq a {
	color: var(--slr-red) !important;
}

.slr-landing__cta-block {
	text-align: center;
	margin: 3rem 0;
	padding: 2rem 1.25rem;
	background: var(--slr-dark);
	border-radius: 12px;
	border-top: 3px solid var(--slr-red);
}

.slr-landing__cta-block p {
	max-width: 560px;
	margin: 0 auto 1.25rem;
	color: var(--slr-muted);
	line-height: 1.6;
}

.slr-landing__resources {
	max-width: 720px;
	margin: 2.5rem auto 1rem;
	padding: 1.25rem;
	text-align: center;
	background: rgba(26, 47, 92, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.slr-landing__resources-title {
	margin: 0 0 1rem !important;
	font-size: 1.15rem !important;
	color: #fff !important;
	text-transform: none !important;
}

.slr-landing__resources ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.25rem;
}

.slr-landing__resources a {
	color: var(--slr-red) !important;
	font-weight: 600;
	text-decoration: none !important;
}

.slr-landing__resources a:hover {
	text-decoration: underline !important;
}

.slr-landing__logo {
	text-align: center;
	margin: 2.5rem 0 1rem;
}

.slr-landing__logo img {
	max-width: 160px;
	height: auto;
	opacity: 0.85;
}

@media only screen and (max-width: 989px) {
	.slr-landing__features {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}
