/*
Theme Name: Hausum Optimized
Theme URI: https://hausum.com
Description: Custom high-performance theme for Hausum, optimized for SEO, speed, and clean typography. Built with CSS variables and modern layout systems.
Version: 1.0.0
Author: nData Systems
Author URI: https://ndatasystems.com
Text Domain: hausum-theme
*/

@font-face{font-family:'Aptos';src:url('./fonts/aptos-regular.ttf') format('truetype');font-weight:400;font-display:block}
@font-face{font-family:'Aptos';src:url('./fonts/aptos-bold.ttf') format('truetype');font-weight:700;font-display:block}
@font-face{font-family:'Aptos Display';src:url('./fonts/aptos-display-regular.ttf') format('truetype');font-weight:400;font-display:block}
@font-face{font-family:'Aptos Display';src:url('./fonts/aptos-display-bold.ttf') format('truetype');font-weight:700;font-display:block}

/* --- 1. DESIGN SYSTEM VARIABLES --- */
:root {
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-title: 'Outfit', var(--font-primary);

	/* Color Palette */
	--color-primary: #003e73;
	--color-primary-rgb: 0, 62, 115;
	--color-secondary: #62b3e6;
	--color-secondary-dark: #1e6e9b;
	--color-accent: #ffcc00;
	--color-accent-hover: #e6b800;
	--color-text: #2c3e50;
	--color-text-light: #607d8b;
	--color-bg-light: #f4f9fc;
	--color-bg-white: #ffffff;
	--color-border: #e2e8f0;

	/* Autoptimize CPT compatibility variables */
	--azul: #2B8BC4;
	--azul-dark: #003e73;
	--azul-light: #f4f9fc;
	--azul-mid: #62b3e6;
	--blanco: #ffffff;
	--borde: #e2e8f0;
	--negro: #111111;
	--gris: #607d8b;
	--bg: #f4f9fc;

	/* Layout & Spacing */
	--container-width: 1200px;
	--container-narrow: 800px;
	--wrap: 1200px;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 8rem;

	/* Styling details */
	--radius-sm: 4px;
	--radius-md: 12px;
	--radius-lg: 24px;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
	--shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. GLOBAL RESET & BASE --- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	color: var(--color-text);
	background-color: var(--color-bg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-secondary-dark);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	color: var(--color-primary);
	line-height: 1.25;
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
	margin-bottom: 1.5rem;
}

/* --- 3. LAYOUT COMPONENTS --- */
.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.container-narrow {
	max-width: var(--container-narrow);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.grid {
	display: grid;
	gap: var(--spacing-md);
}

@media(min-width: 768px) {
	.grid-2 { grid-template-columns: repeat(2, 1fr); }
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- 4. BUTTONS & UI ELEMENTS --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 2rem;
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

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

.btn-primary:hover {
	background-color: var(--color-accent-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background-color: var(--color-primary);
	color: var(--color-bg-white);
}

.btn-secondary:hover {
	background-color: rgba(var(--color-primary-rgb), 0.9);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-white {
	background-color: var(--color-bg-white);
	color: var(--color-primary);
}

.btn-white:hover {
	background-color: var(--color-bg-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* --- 5. COMPONENT-SPECIFIC STYLES (HAUSUM CUSTOM DESIGN) --- */

:root {
	--navy-deep: #0A1E3C;
	--border: rgba(255,255,255,0.08);
	--wrap: 1200px;
	--azure: #3BA0FF;
	--azure-bright: #2E9BFF;
	--muted: #7C90AE;
}

/* ===== promo bar ===== */
.promo {
	background: linear-gradient(180deg, #3BA0FF 0%, #2E8DEF 100%);
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 24px;
	margin: 0 !important;
}

/* ===== dynamic header & navigation ===== */
.nav {
	margin: 0 !important;
	position: sticky;
	top: 0;
	z-index: 150;
	background: rgba(10, 30, 60, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	font-family: 'Aptos', sans-serif;
}
.nav-wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 48px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-family: 'Aptos Display', 'Outfit', sans-serif;
	font-weight: 800;
	font-size: 24px;
	letter-spacing: .3em;
	color: #fff;
	padding-left: .3em;
	text-decoration: none;
}
.logo:hover {
	color: #fff;
}
.nav-links {
	display: flex;
}
.nav-links ul {
	display: flex;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links ul li {
	margin: 0;
	padding: 0;
}
.nav-links ul li a {
	color: #CBDAF0;
	text-decoration: none;
	font-size: 15.5px;
	font-weight: 700;
	transition: color .15s;
}
.nav-links ul li a:hover {
	color: #fff;
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}
.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: linear-gradient(135deg, #2E9BFF, #4AABFF);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(46, 155, 255, 0.35);
	transition: transform .16s;
}
.nav-cta:hover {
	transform: translateY(-1px);
	color: #fff;
}
.burger {
	display: none;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.mobile-menu {
	display: none;
	background: rgba(10, 30, 60, 0.97);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}
.mobile-menu ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-menu ul li a {
	display: block;
	color: #EAF3FF;
	font-weight: 700;
	font-size: 15.5px;
	text-decoration: none;
	padding: 16px 22px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}
.nav.menu-open .mobile-menu {
	display: flex;
}

@media(max-width: 1024px) {
	.nav-wrap {
		padding: 0 24px;
	}
	.nav-links {
		display: none;
	}
	.burger {
		display: flex;
	}
}

/* ===== dynamic footer ===== */
.footer {
	background: var(--navy-deep);
	border-top: 1px solid var(--border);
}
.footer .wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 56px 24px 44px;
}
.foot-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--border);
}
.foot-brand .logo {
	display: inline-block;
	margin-bottom: 14px;
}
.foot-brand p {
	color: var(--muted);
	font-size: 15px;
	max-width: 360px;
	line-height: 1.5;
}
.foot-links {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}
.foot-col h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.foot-col a {
	display: block;
	color: var(--muted);
	text-decoration: none;
	font-size: 14.5px;
	margin-bottom: 10px;
	transition: color .15s;
}
.foot-col a:hover {
	color: #fff;
}
.foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 26px;
	color: #7C90AE;
	font-size: 13.5px;
}
.foot-provinces {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
	font-size: 13px;
	line-height: 2.2;
	color: #93A8C6;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.foot-provinces b {
	flex: 0 0 100%;
	width: 100%;
	display: block;
	color: #fff;
	font-family: 'Aptos Display', 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	letter-spacing: .02em;
	margin-bottom: 10px;
}
.foot-provinces a {
	color: #7C90AE;
	text-decoration: none;
}
.foot-provinces a:hover {
	color: #fff;
	text-decoration: underline;
}
.foot-provinces .sep {
	margin: 0 7px;
	color: #3E5578;
}
@media(max-width: 680px) {
	.foot-provinces {
		font-size: 12.5px;
		line-height: 2;
	}
	.foot-provinces .sep {
		margin: 0 5px;
	}
}

/* ===== mobile sticky cta bar ===== */
.mobile-cta-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: #fff;
	border-top: 1px solid #E3ECF8;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	box-shadow: 0 -6px 20px rgba(10,30,60,.12);
}
.mobile-cta-bar .call,
.mobile-cta-bar .wa {
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.mobile-cta-bar .call {
	background: var(--navy-deep);
}
.mobile-cta-bar .call svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.2;
}
.mobile-cta-bar .wa {
	background: #25D366;
}
.mobile-cta-bar .wa svg {
	width: 22px;
	height: 22px;
}
.mobile-cta-bar .book {
	flex: 1;
	background: var(--navy-deep);
	color: #fff;
	text-align: center;
	padding: 13px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
}
@media(max-width: 680px) {
	.mobile-cta-bar {
		display: flex;
	}
	body {
		padding-bottom: 72px;
	}
}

/* ===== map interaction overlay fixes ===== */
.es-map .labels,
.es-map .rlbl {
	pointer-events: none !important;
}

/* ===== 9. HM LANDING PAGES STYLES ===== */
.hm-breadcrumb {
	padding: 10px 40px;
	background: var(--blanco);
	border-bottom: 1px solid var(--borde);
	display: flex;
	gap: 5px;
	align-items: center;
}
.hm-breadcrumb a {
	color: inherit;
	text-decoration: none;
}
.bc-sep {
	color: var(--borde);
}
.bc-cur {
	color: var(--negro);
}
.hm-hero {
	background: linear-gradient(135deg, var(--azul) 0%, #1a6fa8 50%, var(--azul-dark) 100%);
	padding: 80px 40px 72px;
	position: relative;
	overflow: hidden;
}
.hm-hero-inner {
	max-width: 780px;
	position: relative;
	z-index: 1;
}
.hm-geo-tag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.9);
	font-size: 12px;
	font-weight: 500;
	padding: 5px 13px;
	border-radius: 3px;
	margin-bottom: 20px;
	letter-spacing: .05em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,.2);
}
.hm-h1 {
	font-size: 46px;
	font-weight: 600;
	line-height: 1.08;
	color: #fff;
	margin-bottom: 14px;
	letter-spacing: -.01em;
	max-width: 680px;
}
.hm-h1 span {
	font-weight: 300;
}
.hm-hero-sub {
	font-size: 18px;
	color: rgba(255,255,255,.88);
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 560px;
	font-weight: 300;
}
.hm-btns {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.hm-btn-main {
	background: var(--azul-dark);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 13px 26px;
	border-radius: 4px;
	text-decoration: none;
	letter-spacing: .04em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background .15s;
}
.hm-btn-main:hover {
	background: #142440;
}
.hm-btn-ghost {
	background: 0 0;
	color: #fff;
	font-size: 14px;
	padding: 13px 26px;
	border-radius: 4px;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,.4);
	transition: all .15s;
}
.hm-btn-ghost:hover {
	border-color: #fff;
	background: rgba(255,255,255,.1);
}
.hm-trust {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,.2);
}
.hm-trust-val {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2px;
}
.hm-trust-lbl {
	font-size: 12px;
	color: rgba(255,255,255,.7);
	font-weight: 300;
}
.hm-geo-banner {
	background: var(--azul-dark);
	color: #fff;
	padding: 14px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.hm-geo-text {
	font-size: 13px;
	color: rgba(255,255,255,.9);
}
.hm-geo-text strong {
	color: #fff;
}
.hm-geo-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.hm-geo-pill {
	font-size: 11px;
	background: rgba(255,255,255,.12);
	color: rgba(255,255,255,.85);
	padding: 3px 10px;
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,.2);
}
.hm-sec {
	padding: 64px 40px;
	background: var(--blanco);
}
.hm-sec.bg-gris {
	background: var(--bg);
}
.hm-sec.bg-azul {
	background: var(--azul-light);
}
.hm-sec-inner {
	max-width: 960px;
	margin: 0 auto;
}
.hm-eyebrow {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--azul);
	margin-bottom: 10px;
}
.hm-h2 {
	font-size: 32px;
	font-weight: 600;
	color: var(--negro);
	margin-bottom: 10px;
	line-height: 1.15;
	letter-spacing: -.01em;
}
.hm-h2 span {
	font-weight: 300;
}
.hm-sub {
	font-size: 16px;
	color: var(--gris);
	max-width: 560px;
	margin-bottom: 28px;
	line-height: 1.65;
	font-weight: 300;
}
.hm-sub.c {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.hm-divider {
	height: 1px;
	background: var(--borde);
}
.hm-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--borde);
	border: 1px solid var(--borde);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 48px;
}
.hm-stat {
	background: var(--blanco);
	padding: 24px 20px;
	text-align: center;
}
.hm-stat-n {
	font-size: 30px;
	font-weight: 600;
	color: var(--azul);
	margin-bottom: 4px;
	letter-spacing: -.01em;
}
.hm-stat-l {
	font-size: 13px;
	color: var(--gris);
	font-weight: 300;
}
.hm-check-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.hm-check-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	background: var(--bg);
	border-radius: 4px;
	padding: 12px 15px;
	color: var(--negro);
	font-weight: 300;
}
.hm-ci {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--azul);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}
.hm-ci svg {
	width: 10px;
	height: 10px;
}
.hm-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 800px;
}
.hm-why-card {
	background: var(--bg);
	border-radius: 6px;
	padding: 22px 24px;
}
.hm-why-tag {
	font-size: 12px;
	font-weight: 600;
	color: var(--azul);
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 8px;
}
.hm-why-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--negro);
	margin-bottom: 10px;
}
.hm-why-list {
	list-style: none;
	padding: 0;
}
.hm-why-list li {
	font-size: 14px;
	color: var(--gris);
	padding: 5px 0;
	display: flex;
	gap: 8px;
	font-weight: 300;
	border-bottom: 1px solid var(--borde);
}
.hm-why-list li:last-child {
	border-bottom: none;
}
.hm-why-list li:before {
	content: '✓';
	color: var(--azul);
	font-weight: 600;
	flex-shrink: 0;
}
.hm-pasos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.hm-paso {
	text-align: center;
	padding: 8px;
}
.hm-paso-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--azul);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
}
.hm-paso-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--negro);
	margin-bottom: 8px;
}
.hm-paso-body {
	font-size: 14px;
	color: var(--gris);
	line-height: 1.6;
	font-weight: 300;
}
.hm-calc {
	background: var(--blanco);
	border: 1px solid var(--borde);
	border-radius: 6px;
	padding: 28px;
	max-width: 640px;
}
.hm-calc-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.hm-calc-lbl {
	font-size: 14px;
	color: var(--gris);
	min-width: 130px;
	font-weight: 400;
}
input[type=range] {
	flex: 1;
	min-width: 120px;
	height: 3px;
	accent-color: var(--azul);
	cursor: pointer;
}
.hm-calc select {
	padding: 9px 12px;
	border: 1px solid var(--borde);
	border-radius: 4px;
	font-size: 14px;
	background: var(--blanco);
	color: var(--negro);
	flex: 1;
	max-width: 220px;
	font-family: var(--font);
	font-weight: 300;
}
.hm-calc-val {
	font-size: 14px;
	font-weight: 600;
	min-width: 52px;
	text-align: right;
	color: var(--negro);
}
.hm-calc-result {
	background: var(--azul-dark);
	border-radius: 6px;
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 4px;
}
.hm-cr-lbl {
	font-size: 11px;
	color: var(--azul-mid);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 3px;
}
.hm-cr-price {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -.01em;
}
.hm-cr-note {
	font-size: 11px;
	color: rgba(255,255,255,.65);
	text-align: right;
	line-height: 1.7;
}
.hm-calc-btn {
	width: 100%;
	margin-top: 14px;
	background: var(--azul);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 13px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: background .15s;
}
.hm-calc-btn:hover {
	background: #2278aa;
}
.hm-coronas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.hm-corona {
	background: var(--blanco);
	border: 1px solid var(--borde);
	border-radius: 6px;
	padding: 18px 20px;
}
.hm-corona-tag {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--azul);
	margin-bottom: 6px;
}
.hm-corona-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--negro);
	margin-bottom: 8px;
}
.hm-corona-muni {
	font-size: 12px;
	color: var(--gris);
	line-height: 1.7;
	font-weight: 300;
}
.hm-dist-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
.hm-dist-card {
	background: var(--blanco);
	border: 1px solid var(--borde);
	border-radius: 4px;
	padding: 14px 16px;
	text-decoration: none;
	transition: all .15s;
	display: block;
}
.hm-dist-card:hover {
	border-color: var(--azul);
	background: var(--azul-light);
}
.hm-dist-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--negro);
	margin-bottom: 3px;
}
.hm-dist-kw {
	font-size: 11px;
	color: var(--gris);
	font-weight: 300;
}
.hm-dist-arr {
	float: right;
	color: var(--azul);
	font-size: 13px;
}
.hm-map {
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--borde);
}
.hm-casos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.hm-caso {
	background: var(--blanco);
	border: 1px solid var(--borde);
	border-radius: 6px;
	overflow: hidden;
}
.hm-caso-head {
	background: var(--azul-dark);
	padding: 9px 15px;
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.85);
	letter-spacing: .06em;
	text-transform: uppercase;
}
.hm-caso-body {
	padding: 15px 16px;
}
.hm-caso-p {
	font-size: 24px;
	font-weight: 600;
	color: var(--azul);
	letter-spacing: -.01em;
	margin-bottom: 4px;
}
.hm-caso-loc {
	font-size: 14px;
	font-weight: 500;
	color: var(--negro);
	margin-bottom: 4px;
}
.hm-caso-desc {
	font-size: 13px;
	color: var(--gris);
	line-height: 1.55;
	font-weight: 300;
}
.hm-reviews-placeholder {
	background: var(--azul-light);
	border: 2px dashed var(--azul-mid);
	border-radius: 6px;
	padding: 32px;
	text-align: center;
}
.hm-rp-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--azul-dark);
	margin-bottom: 8px;
}
.hm-rp-sub {
	font-size: 14px;
	color: var(--gris);
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 12px;
}
.hm-rp-steps {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 16px;
}
.hm-rp-step {
	background: var(--blanco);
	border: 1px solid var(--borde);
	border-radius: 4px;
	padding: 10px 16px;
	font-size: 12px;
	color: var(--gris);
	font-weight: 400;
	text-align: left;
	max-width: 200px;
}
.hm-rp-step strong {
	display: block;
	font-weight: 600;
	color: var(--negro);
	margin-bottom: 3px;
}
.hm-faq {
	max-width: 800px;
}
.hm-faq details {
	border-bottom: 1px solid var(--borde);
}
.hm-faq details:first-of-type {
	border-top: 1px solid var(--borde);
}
.hm-faq summary {
	padding: 17px 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--negro);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}
.hm-faq summary::-webkit-details-marker {
	display: none;
}
.hm-faq summary:after {
	content: '+';
	color: var(--azul);
	font-size: 20px;
	flex-shrink: 0;
	line-height: 1;
	font-weight: 300;
}
.hm-faq details[open] summary:after {
	content: '−';
}
.hm-faq-a {
	font-size: 15px;
	color: var(--gris);
	line-height: 1.7;
	padding: 0 0 16px;
	font-weight: 300;
}
.hm-faq-a strong {
	font-weight: 600;
	color: var(--negro);
}
.hm-cta {
	background: var(--azul-dark);
	padding: 72px 40px;
	text-align: center;
}
.hm-cta-inner {
	max-width: 600px;
	margin: 0 auto;
}
.hm-cta-h {
	font-size: 36px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: -.01em;
}
.hm-cta-h span {
	font-weight: 300;
}
.hm-cta-sub {
	font-size: 17px;
	color: rgba(255,255,255,.75);
	margin-bottom: 28px;
	line-height: 1.6;
	font-weight: 300;
}
.hm-cta-form {
	display: flex;
	gap: 8px;
	justify-content: center;
	max-width: 520px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.hm-cta-input {
	flex: 1;
	min-width: 200px;
	padding: 13px 16px;
	border-radius: 4px;
	border: none;
	font-size: 14px;
	font-weight: 300;
}
.hm-cta-btn {
	background: var(--azul);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	padding: 13px 22px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: background .15s;
}
.hm-cta-btn:hover {
	background: #2278aa;
}
.hm-cta-tiny {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	margin-top: 12px;
	font-weight: 300;
}
@media(max-width: 720px) {
	.hm-hero {
		padding: 48px 18px 44px;
	}
	.hm-h1 {
		font-size: 28px;
	}
	.hm-hero-sub {
		font-size: 15px;
	}
	.hm-btns {
		flex-direction: column;
	}
	.hm-btn-main, .hm-btn-ghost {
		text-align: center;
		justify-content: center;
	}
	.hm-sec {
		padding: 44px 18px;
	}
	.hm-stats {
		grid-template-columns: 1fr 1fr;
	}
	.hm-check-grid {
		grid-template-columns: 1fr;
	}
	.hm-why-grid {
		grid-template-columns: 1fr;
	}
	.hm-pasos {
		grid-template-columns: 1fr;
	}
	.hm-coronas {
		grid-template-columns: 1fr;
	}
	.hm-dist-grid {
		grid-template-columns: 1fr 1fr;
	}
	.hm-casos {
		grid-template-columns: 1fr;
	}
	.hm-cta {
		padding: 48px 18px;
	}
	.hm-cta-form {
		flex-direction: column;
	}
	.hm-cta-input {
		min-width: auto;
	}
	.hm-breadcrumb {
		padding: 10px 18px;
	}
	.hm-geo-banner {
		padding: 12px 18px;
	}
	.hm-trust {
		gap: 20px;
	}
	.hm-rp-steps {
		flex-direction: column;
		align-items: center;
	}
}
.hm-tabs {
	border-bottom: 2px solid var(--borde);
	margin-bottom: 0;
}
.hm-tab-btns {
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	border-bottom: 2px solid var(--borde);
	margin-bottom: 0;
}
.hm-tab-btn {
	font-size: 14px;
	font-weight: 400;
	padding: 14px 22px;
	border: none;
	border-bottom: 3px solid transparent;
	background: 0 0;
	color: var(--gris);
	cursor: pointer;
	transition: all .15s;
	margin-bottom: -2px;
	white-space: nowrap;
	outline: none;
}
.hm-tab-btn:hover {
	color: var(--negro);
}
.hm-tab-btn.active {
	color: var(--azul);
	border-bottom: 3px solid var(--azul);
	font-weight: 500;
}
.hm-tab-panel {
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding-top: 20px;
}
.hm-tab-panel.active {
	display: grid;
}
@media(max-width: 720px) {
	.hm-tab-btn {
		font-size: 13px;
		padding: 12px 14px;
	}
	.hm-tab-panel {
		grid-template-columns: 1fr 1fr;
	}
}
