:root {
	--bp-ivory: #faf7f0;
	--bp-paper: #fffdf9;
	--bp-white: #ffffff;
	--bp-ink: #12304a;
	--bp-ink-soft: #526474;
	--bp-coral: #d8614c;
	--bp-coral-dark: #bd4938;
	--bp-coral-soft: #fff1ed;
	--bp-line: #e4ded2;
	--bp-blue-soft: #e9f1f4;
	--bp-green: #4b8c69;
	--bp-radius: 16px;
	--bp-shadow: 0 18px 50px rgba(18, 48, 74, 0.09);
	--bp-wrap: 1240px;
}

html {
	/*
	 * Compatibilidad Kadence + GeoDirectory/AyeCode UI.
	 *
	 * AyeCode UI declara `html, body { height: 100% }` y `body { display:flex }`.
	 * Kadence recorta #wrapper con overflow:clip. Juntas, ambas reglas pueden
	 * limitar todo el documento a la altura de la ventana e impedir el scroll.
	 */
	height: auto !important;
	min-height: 100%;
	scroll-behavior: smooth;
}

body.bp-site {
	height: auto !important;
	min-height: 100%;
	display: block !important;
	background: var(--bp-ivory);
	color: var(--bp-ink);
}

body.bp-site #wrapper.site.wp-site-blocks {
	height: auto !important;
	min-height: 100vh;
	overflow-x: clip;
	overflow-y: visible;
}

/*
 * Respaldo activado por JavaScript únicamente si otra optimización vuelve a
 * dejar el wrapper recortado a la altura de la ventana.
 */
html.bp-scroll-repair,
body.bp-scroll-repair {
	height: auto !important;
	min-height: 100% !important;
}

body.bp-scroll-repair {
	display: block !important;
}

body.bp-scroll-repair #wrapper {
	height: auto !important;
	min-height: 100vh !important;
	overflow-x: clip !important;
	overflow-y: visible !important;
}

body.bp-site,
body.bp-site button,
body.bp-site input,
body.bp-site select,
body.bp-site textarea {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.bp-site h1,
body.bp-site h2,
body.bp-site h3,
body.bp-site h4 {
	color: var(--bp-ink);
	font-weight: 750;
	letter-spacing: -0.045em;
}

body.bp-site a {
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bp-wrap {
	width: min(calc(100% - 48px), var(--bp-wrap));
	margin-right: auto;
	margin-left: auto;
}

.bp-main--fullwidth,
.bp-page-content,
.bp-imported-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.bp-page-fullwidth .content-area,
.bp-page-fullwidth .site-main,
.bp-page-fullwidth .content-container,
.bp-page-fullwidth .site-container {
	max-width: none;
	margin: 0;
	padding: 0;
}

.bp-page-content > :first-child {
	margin-top: 0;
}

.bp-page-content > :last-child {
	margin-bottom: 0;
}

/* Cabecera Kadence */
.bp-site #masthead .site-header-row-container-inner {
	border-bottom: 1px solid var(--bp-line);
	background: rgba(250, 247, 240, 0.96);
	backdrop-filter: blur(16px);
}

.bp-site .site-branding .site-title {
	letter-spacing: -0.055em;
}

.bp-site .site-branding .site-title a,
.bp-site .site-branding a.brand {
	color: var(--bp-ink);
	font-weight: 800;
}

.bp-site .main-navigation .primary-menu-container > ul > li > a {
	color: var(--bp-ink);
	font-size: 15px;
	font-weight: 650;
}

.bp-site .main-navigation .primary-menu-container > ul > li > a:hover,
.bp-site .main-navigation .primary-menu-container > ul > li.current-menu-item > a {
	color: var(--bp-coral);
}

.bp-site .main-navigation .primary-menu-container > ul > li.bp-menu-cta > a {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
	padding: 0 20px;
	border-radius: 10px;
	background: var(--bp-coral);
	color: var(--bp-white);
	box-shadow: 0 8px 22px rgba(216, 97, 76, 0.18);
}

.bp-site .main-navigation .primary-menu-container > ul > li.bp-menu-cta > a:hover {
	background: var(--bp-coral-dark);
	color: var(--bp-white);
	transform: translateY(-2px);
}

/* Utilidades */
.bp-eyebrow {
	margin: 0 0 17px;
	color: var(--bp-coral);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.bp-section {
	padding: 92px 0;
}

.bp-section-heading {
	max-width: 760px;
}

.bp-section-heading h2 {
	margin: 0;
	font-size: clamp(2.35rem, 4.5vw, 4rem);
	line-height: 1.04;
	text-wrap: balance;
}

.bp-section-intro,
.bp-section-note {
	color: var(--bp-ink-soft);
	font-size: 17px;
	line-height: 1.7;
}

.bp-section-intro {
	max-width: 660px;
	margin: 22px 0 0;
}

.bp-section-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 44px;
	margin-bottom: 44px;
}

.bp-section-note {
	max-width: 420px;
	margin: 0 0 4px;
}

.bp-button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.1;
	text-decoration: none;
}

.bp-button--coral {
	background: var(--bp-coral);
	color: var(--bp-white) !important;
	box-shadow: 0 8px 22px rgba(216, 97, 76, 0.16);
}

.bp-button--coral:hover {
	background: var(--bp-coral-dark);
	color: var(--bp-white);
	box-shadow: 0 12px 28px rgba(216, 97, 76, 0.24);
	transform: translateY(-2px);
}

.bp-button--light {
	border-color: var(--bp-line);
	background: var(--bp-white);
	color: var(--bp-ink) !important;
}

.bp-button--light:hover {
	border-color: var(--bp-ink);
	transform: translateY(-2px);
}

.bp-text-link {
	width: fit-content;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--bp-coral);
	color: var(--bp-ink);
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

/* Hero */
.bp-hero {
	display: grid;
	min-height: 650px;
	grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
	border-bottom: 1px solid var(--bp-line);
	background: var(--bp-paper);
}

.bp-hero__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(62px, 8vw, 112px) clamp(30px, 5.7vw, 88px);
}

.bp-hero h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(3.55rem, 6.3vw, 6rem);
	line-height: 0.97;
	text-wrap: balance;
}

.bp-hero__intro {
	max-width: 620px;
	margin: 28px 0 34px;
	color: var(--bp-ink-soft);
	font-size: clamp(1.08rem, 1.5vw, 1.32rem);
	line-height: 1.58;
}

.bp-hero__visual {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: #b7d8e8;
}

.bp-hero__visual::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(18, 48, 74, 0.07), transparent 30%),
		linear-gradient(0deg, rgba(18, 48, 74, 0.22), transparent 35%);
	pointer-events: none;
}

.bp-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.bp-hero__visual:hover img {
	transform: scale(1.012);
}

.bp-local-note {
	position: absolute;
	z-index: 2;
	right: 28px;
	bottom: 28px;
	display: grid;
	gap: 5px;
	max-width: 260px;
	padding: 17px 20px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 12px;
	background: rgba(255, 253, 249, 0.93);
	box-shadow: 0 16px 36px rgba(18, 48, 74, 0.16);
	backdrop-filter: blur(12px);
}

.bp-local-note span {
	color: var(--bp-coral);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bp-local-note strong {
	color: var(--bp-ink);
	font-size: 15px;
}

/* Buscador */
.bp-search {
	display: grid;
	min-height: 66px;
	max-width: 760px;
	grid-template-columns: 1.12fr 0.9fr auto;
	overflow: hidden;
	border: 1px solid #d7d0c5;
	border-radius: 12px;
	background: var(--bp-white);
	box-shadow: 0 12px 36px rgba(18, 48, 74, 0.08);
}

.bp-search__field {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0 20px;
}

.bp-search__field--near {
	border-left: 1px solid var(--bp-line);
}

.bp-search__field svg {
	width: 22px;
	min-width: 22px;
	fill: none;
	stroke: var(--bp-ink);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.bp-search__field input {
	width: 100%;
	min-width: 0;
	height: 54px;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: var(--bp-ink);
}

.bp-search__field input:focus {
	box-shadow: none;
}

.bp-search__field:focus-within {
	box-shadow: inset 0 0 0 2px var(--bp-ink);
}

.bp-search__button {
	min-width: 112px;
	margin: 7px;
	padding: 0 22px;
	border: 0;
	border-radius: 9px;
	background: var(--bp-ink);
	color: var(--bp-white);
	cursor: pointer;
	font-weight: 750;
}

.bp-search__button:hover {
	background: #1c4769;
	transform: translateY(-1px);
}

.bp-search-section {
	padding: 42px 0;
}

.bp-search-section h2 {
	margin: 0 0 20px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.bp-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.bp-quick-links a {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 0 15px;
	border: 1px solid var(--bp-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--bp-ink);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

.bp-quick-links a span {
	color: var(--bp-coral);
	font-size: 20px;
	line-height: 1;
}

.bp-quick-links a:hover {
	border-color: var(--bp-coral);
	background: var(--bp-white);
	transform: translateY(-2px);
}

/* Publicidad */
.bp-ad-shell {
	padding: 28px 0;
	background: var(--bp-paper);
}

.bp-ad-slot {
	min-height: 112px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(20px, 3vw, 42px);
	overflow: hidden;
	padding: 18px 32px;
	border: 1px solid #f1b2a5;
	border-radius: 12px;
	background: linear-gradient(100deg, var(--bp-coral-soft), #fffaf7 70%);
}

.bp-ad-slot__label {
	padding-right: clamp(20px, 3vw, 42px);
	border-right: 1px solid #edb9ae;
	color: var(--bp-coral);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.bp-ad-slot__copy {
	display: grid;
	gap: 4px;
}

.bp-ad-slot__copy strong {
	color: var(--bp-ink);
	font-size: clamp(1.45rem, 2.5vw, 2.25rem);
	letter-spacing: -0.035em;
}

.bp-ad-slot__copy span {
	color: var(--bp-ink-soft);
	font-size: 14px;
}

.bp-ad-slot--filled {
	display: flex;
	justify-content: center;
	padding: 10px;
	border-color: var(--bp-line);
	background: var(--bp-white);
}

.bp-ad-slot__inventory {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.bp-ad-slot__inventory img,
.bp-ad-slot__inventory iframe {
	max-width: 100%;
}

/* Categorías */
.bp-categories-section {
	padding-top: 86px;
	background: var(--bp-ivory);
}

.bp-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 38px;
}

.bp-category-card {
	position: relative;
	min-height: 245px;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
	padding: 27px;
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	background: var(--bp-paper);
	color: var(--bp-ink);
	text-decoration: none;
}

.bp-category-card::after {
	position: absolute;
	right: -38px;
	bottom: -66px;
	width: 150px;
	height: 150px;
	border: 24px solid var(--bp-coral-soft);
	border-radius: 50%;
	content: "";
	transition: transform 220ms ease;
}

.bp-category-card:hover {
	border-color: #dfb7ad;
	color: var(--bp-ink);
	box-shadow: var(--bp-shadow);
	transform: translateY(-4px);
}

.bp-category-card:hover::after {
	transform: scale(1.08);
}

.bp-category-card__number {
	color: var(--bp-coral);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.bp-category-card h3 {
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.bp-category-card p {
	max-width: 300px;
	margin: 0;
	color: var(--bp-ink-soft);
	font-size: 15px;
	line-height: 1.55;
}

.bp-category-card__link {
	z-index: 1;
	padding-top: 24px;
	font-size: 13px;
	font-weight: 750;
}

/* GeoDirectory y fichas */
.bp-listings-section {
	border-top: 1px solid var(--bp-line);
	background: #f2eee6;
}

.bp-directory-results {
	margin-top: 10px;
}

.bp-directory-results .geodir-loop-container,
.bp-directory-results .row {
	gap: 15px;
}

.bp-directory-results .geodir-post,
.bp-directory-results .card,
.bp-directory-results .geodir-category-list-view {
	overflow: hidden;
	border: 1px solid #ded7cb !important;
	border-radius: var(--bp-radius) !important;
	background: var(--bp-white);
	box-shadow: 0 10px 30px rgba(18, 48, 74, 0.05);
}

.bp-directory-results .geodir-post:hover,
.bp-directory-results .card:hover {
	box-shadow: var(--bp-shadow);
	transform: translateY(-3px);
}

.bp-directory-results .geodir-field-post_title,
.bp-directory-results .geodir-entry-title,
.bp-directory-results h3 {
	color: var(--bp-ink);
	font-size: 1.25rem;
	font-weight: 750;
	letter-spacing: -0.03em;
}

.bp-directory-results .geodir-post-content-container,
.bp-directory-results .card-body {
	padding: 20px !important;
}

.bp-directory-results .geodir-image-container img,
.bp-directory-results .embed-item-cover-xy img {
	transition: transform 420ms ease;
}

.bp-directory-results .geodir-post:hover img,
.bp-directory-results .card:hover img {
	transform: scale(1.02);
}

.bp-fallback-listings {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
}

.bp-fallback-card {
	min-height: 285px;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid #ded7cb;
	border-radius: var(--bp-radius);
	background: var(--bp-white);
	box-shadow: 0 10px 30px rgba(18, 48, 74, 0.05);
}

.bp-fallback-card > span {
	color: var(--bp-coral);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.bp-fallback-card h3 {
	margin: 14px 0 10px;
	font-size: 1.45rem;
}

.bp-fallback-card p {
	color: var(--bp-ink-soft);
	font-size: 14px;
	line-height: 1.6;
}

.bp-fallback-card .bp-text-link {
	margin-top: auto;
}

/* Mapa editorial por zonas */
.bp-zones {
	display: grid;
	min-height: 590px;
	grid-template-columns: 0.82fr 1.18fr;
	background: var(--bp-ink);
	color: var(--bp-white);
}

.bp-zones__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px max(30px, calc((100vw - var(--bp-wrap)) / 2));
	padding-right: clamp(30px, 6vw, 88px);
}

.bp-zones__copy h2 {
	max-width: 540px;
	margin: 0;
	color: var(--bp-white);
	font-size: clamp(2.75rem, 5vw, 4.7rem);
	line-height: 1;
	text-wrap: balance;
}

.bp-zones__copy > p:not(.bp-eyebrow) {
	max-width: 520px;
	margin: 25px 0 34px;
	color: #bdc9d1;
	font-size: 17px;
	line-height: 1.6;
}

.bp-zone-links {
	display: flex;
	max-width: 570px;
	flex-wrap: wrap;
	gap: 10px;
}

.bp-zone-links a {
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #eaf0f3;
	font-size: 13px;
	font-weight: 650;
	text-decoration: none;
}

.bp-zone-links a:hover {
	border-color: var(--bp-coral);
	background: rgba(216, 97, 76, 0.14);
	color: var(--bp-white);
}

.bp-zones__visual {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	background: #193e5a;
}

.bp-zones__visual::before,
.bp-zones__visual::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 44% 56% 59% 41% / 59% 39% 61% 41%;
	content: "";
	transform: rotate(-10deg);
}

.bp-zones__visual::before {
	inset: 13% 10% 15% 17%;
}

.bp-zones__visual::after {
	inset: 24% 22% 26% 5%;
	transform: rotate(11deg);
}

.bp-map-ring {
	position: absolute;
	border: 1px dashed rgba(250, 247, 240, 0.18);
	border-radius: 50%;
}

.bp-map-ring--one {
	top: 13%;
	right: 18%;
	width: 270px;
	height: 270px;
}

.bp-map-ring--two {
	bottom: 8%;
	left: 14%;
	width: 360px;
	height: 360px;
}

.bp-river {
	position: absolute;
	top: 50%;
	right: -8%;
	width: 118%;
	height: 82px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	background: rgba(94, 168, 191, 0.22);
	transform: rotate(-17deg);
}

.bp-map-dot {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--bp-white);
	font-size: 12px;
	font-weight: 750;
}

.bp-map-dot::before {
	width: 13px;
	height: 13px;
	border: 4px solid var(--bp-coral);
	border-radius: 50%;
	background: var(--bp-white);
	box-shadow: 0 0 0 7px rgba(216, 97, 76, 0.18);
	content: "";
}

.bp-map-dot--one {
	top: 30%;
	left: 47%;
}

.bp-map-dot--two {
	right: 17%;
	bottom: 25%;
}

.bp-map-dot--three {
	bottom: 21%;
	left: 19%;
}

/* Guías */
.bp-guides-section {
	background: var(--bp-ivory);
}

.bp-guides-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	gap: 15px;
}

.bp-guide-card {
	min-height: 410px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 31px;
	border-radius: 17px;
	color: var(--bp-white);
	box-shadow: 0 14px 40px rgba(18, 48, 74, 0.08);
}

.bp-guide-card:hover {
	box-shadow: 0 22px 54px rgba(18, 48, 74, 0.15);
	transform: translateY(-4px);
}

.bp-guide-card--1 {
	background: linear-gradient(145deg, #244e69, #102d44);
}

.bp-guide-card--2 {
	background: linear-gradient(145deg, #d47858, #a94434);
}

.bp-guide-card--3,
.bp-guide-card--4,
.bp-guide-card--5,
.bp-guide-card--6 {
	background: linear-gradient(145deg, #6e8061, #384c3b);
}

.bp-guide-card__kicker {
	display: flex;
	justify-content: space-between;
	margin-bottom: auto;
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bp-guide-card h3 {
	max-width: 500px;
	margin: 0;
	color: var(--bp-white);
	font-size: clamp(1.65rem, 2.4vw, 2.5rem);
	line-height: 1.08;
}

.bp-guide-card h3 a,
.bp-guide-card a {
	color: var(--bp-white);
	text-decoration: none;
}

.bp-guide-card p {
	max-width: 470px;
	margin: 17px 0 24px;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.55;
}

.bp-guide-card__link {
	width: fit-content;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.62);
	font-size: 14px;
	font-weight: 750;
}

/* CTA */
.bp-business-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	margin-top: 10px;
	margin-bottom: 90px;
	padding: clamp(40px, 5vw, 70px);
	border-radius: 20px;
	background: #ece4d7;
}

.bp-business-cta h2 {
	margin: 0;
	font-size: clamp(2.45rem, 4vw, 4rem);
	line-height: 1.05;
}

.bp-business-cta p:not(.bp-eyebrow) {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--bp-ink-soft);
	line-height: 1.6;
}

.bp-business-cta__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

/* Hero y contenido de páginas interiores */
.bp-page-hero {
	padding: clamp(72px, 10vw, 132px) 0;
	border-bottom: 1px solid var(--bp-line);
	background:
		radial-gradient(circle at 82% 20%, rgba(216, 97, 76, 0.13), transparent 25%),
		var(--bp-paper);
}

.bp-page-hero--compact {
	padding-top: 70px;
	padding-bottom: 70px;
}

.bp-page-hero h1 {
	max-width: 920px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 5.8rem);
	line-height: 0.98;
	text-wrap: balance;
}

.bp-page-hero p:not(.bp-eyebrow) {
	max-width: 760px;
	margin: 26px 0 0;
	color: var(--bp-ink-soft);
	font-size: clamp(1.08rem, 1.6vw, 1.3rem);
	line-height: 1.65;
}

.bp-content-section {
	padding: 82px 0;
}

.bp-content-section--paper {
	border-top: 1px solid var(--bp-line);
	border-bottom: 1px solid var(--bp-line);
	background: var(--bp-paper);
}

.bp-content-section h2 {
	margin: 0 0 24px;
	font-size: clamp(2.15rem, 4vw, 3.6rem);
	line-height: 1.06;
}

.bp-prose {
	max-width: 780px;
	color: var(--bp-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.bp-prose h2,
.bp-prose h3 {
	color: var(--bp-ink);
}

.bp-feature-grid,
.bp-step-grid,
.bp-pricing-grid,
.bp-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 36px;
}

.bp-step-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bp-feature-card,
.bp-step-card,
.bp-price-card,
.bp-contact-card {
	display: flex;
	flex-direction: column;
	padding: 27px;
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	background: var(--bp-white);
}

.bp-feature-card h3,
.bp-step-card h3,
.bp-price-card h3,
.bp-contact-card h3 {
	margin: 0 0 12px;
	font-size: 1.45rem;
}

.bp-feature-card p,
.bp-step-card p,
.bp-price-card p,
.bp-contact-card p {
	margin: 0;
	color: var(--bp-ink-soft);
	line-height: 1.65;
}

.bp-feature-card > span,
.bp-price-card > span,
.bp-contact-card > span {
	display: block;
	margin-bottom: 18px;
	color: var(--bp-coral);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bp-price-card .bp-button,
.bp-contact-card .bp-button {
	width: fit-content;
	margin-top: 24px;
}

.bp-step-card > span {
	display: block;
	margin-bottom: 18px;
	color: var(--bp-coral);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.bp-price-card--featured {
	border-color: var(--bp-coral);
	box-shadow: var(--bp-shadow);
}

.bp-price-card ul,
.bp-feature-list {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.bp-price-card li,
.bp-feature-list li {
	position: relative;
	margin: 10px 0;
	padding-left: 24px;
	color: var(--bp-ink-soft);
}

.bp-price-card li::before,
.bp-feature-list li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--bp-coral);
	content: "✓";
	font-weight: 800;
}

.bp-table-wrap {
	overflow-x: auto;
	margin-top: 30px;
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	background: var(--bp-white);
}

.bp-data-table {
	width: 100%;
	min-width: 760px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
}

.bp-data-table th,
.bp-data-table td {
	padding: 18px 20px;
	border: 0;
	border-bottom: 1px solid var(--bp-line);
	text-align: left;
}

.bp-data-table th {
	background: var(--bp-ink);
	color: var(--bp-white);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bp-data-table tr:last-child td {
	border-bottom: 0;
}

.bp-faq {
	max-width: 900px;
	margin: 32px auto 0;
}

.bp-faq details {
	margin: 10px 0;
	padding: 20px 22px;
	border: 1px solid var(--bp-line);
	border-radius: 12px;
	background: var(--bp-white);
}

.bp-faq summary {
	cursor: pointer;
	color: var(--bp-ink);
	font-weight: 750;
}

.bp-faq details p {
	margin: 15px 0 0;
	color: var(--bp-ink-soft);
}

.bp-inline-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 38px;
	padding: 30px;
	border-radius: var(--bp-radius);
	background: var(--bp-ink);
	color: var(--bp-white);
}

.bp-inline-cta h3,
.bp-inline-cta p {
	color: var(--bp-white);
}

.bp-inline-cta h3 {
	margin: 0 0 8px;
}

.bp-inline-cta p {
	margin: 0;
	opacity: 0.76;
}

.bp-form-shell {
	padding: 62px 0 90px;
}

.bp-form-shell .geodir-add-listing,
.bp-form-shell form,
.bp-notice {
	padding: clamp(24px, 4vw, 48px);
	border: 1px solid var(--bp-line);
	border-radius: var(--bp-radius);
	background: var(--bp-white);
	box-shadow: var(--bp-shadow);
}

.bp-notice h2 {
	margin-top: 0;
}

/* Área comercial Anúnciate */
.bp-commercial-nav {
	display: flex;
	overflow-x: auto;
	align-items: center;
	gap: 4px;
	padding-top: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--bp-line);
	scrollbar-width: none;
}

.bp-commercial-nav::-webkit-scrollbar {
	display: none;
}

.bp-commercial-nav a {
	flex: 0 0 auto;
	padding: 10px 13px;
	border-radius: 9px;
	color: var(--bp-ink-soft);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.bp-commercial-nav a:hover,
.bp-commercial-nav a.is-current {
	background: var(--bp-blue-soft);
	color: var(--bp-ink);
}

.bp-commercial-nav .bp-commercial-nav__cta {
	margin-left: auto;
	background: var(--bp-coral);
	color: var(--bp-white);
}

.bp-commercial-nav .bp-commercial-nav__cta:hover {
	background: var(--bp-coral-dark);
	color: var(--bp-white);
}

.bp-commercial-hero {
	padding: clamp(74px, 9vw, 126px) 0 72px;
	border-bottom: 1px solid var(--bp-line);
	background:
		radial-gradient(circle at 84% 18%, rgba(216, 97, 76, 0.18), transparent 25%),
		linear-gradient(135deg, var(--bp-paper), #f7eee4);
}

.bp-commercial-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: center;
	gap: clamp(45px, 7vw, 100px);
}

.bp-commercial-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(3.25rem, 6.4vw, 6.5rem);
	line-height: 0.94;
	text-wrap: balance;
}

.bp-commercial-hero__intro {
	max-width: 710px;
	margin: 28px 0 0;
	color: var(--bp-ink-soft);
	font-size: clamp(1.1rem, 1.7vw, 1.38rem);
	line-height: 1.62;
}

.bp-commercial-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.bp-commercial-note {
	margin: 16px 0 0;
	color: var(--bp-ink-soft);
	font-size: 13px;
}

.bp-commercial-proof {
	display: grid;
	overflow: hidden;
	border: 1px solid var(--bp-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--bp-shadow);
}

.bp-commercial-proof article {
	padding: 25px 28px;
	border-bottom: 1px solid var(--bp-line);
}

.bp-commercial-proof article:last-child {
	border-bottom: 0;
}

.bp-commercial-proof span {
	display: block;
	margin-bottom: 7px;
	color: var(--bp-coral);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bp-commercial-proof strong {
	display: block;
	margin-bottom: 5px;
	color: var(--bp-ink);
	font-size: 1.25rem;
}

.bp-commercial-proof p {
	margin: 0;
	color: var(--bp-ink-soft);
	font-size: 14px;
	line-height: 1.55;
}

.bp-commercial-section {
	padding: 88px 0;
}

.bp-commercial-section--paper {
	border-top: 1px solid var(--bp-line);
	border-bottom: 1px solid var(--bp-line);
	background: var(--bp-paper);
}

.bp-commercial-section--ink {
	background: var(--bp-ink);
	color: var(--bp-white);
}

.bp-commercial-section--ink h2,
.bp-commercial-section--ink h3 {
	color: var(--bp-white);
}

.bp-commercial-section--ink .bp-eyebrow {
	color: #f49a87;
}

.bp-commercial-section h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(2.4rem, 4.8vw, 4.3rem);
	line-height: 1.02;
	text-wrap: balance;
}

.bp-commercial-lead {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--bp-ink-soft);
	font-size: 17px;
	line-height: 1.72;
}

.bp-commercial-section--ink .bp-commercial-lead {
	color: #c5d1d8;
}

.bp-choice-grid,
.bp-product-grid,
.bp-plan-grid,
.bp-inventory-grid {
	display: grid;
	gap: 16px;
	margin-top: 42px;
}

.bp-choice-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-choice-card,
.bp-product-card,
.bp-plan-card,
.bp-inventory-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 29px;
	border: 1px solid var(--bp-line);
	border-radius: 18px;
	background: var(--bp-white);
	color: var(--bp-ink);
}

.bp-choice-card > span,
.bp-product-card > span,
.bp-inventory-card > span {
	margin-bottom: 20px;
	color: var(--bp-coral);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.bp-choice-card h3,
.bp-product-card h3,
.bp-plan-card h3,
.bp-inventory-card h3 {
	margin: 0 0 12px;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.14;
}

.bp-choice-card p,
.bp-product-card p,
.bp-plan-card p,
.bp-inventory-card p {
	margin: 0;
	color: var(--bp-ink-soft);
	line-height: 1.65;
}

.bp-choice-card a,
.bp-product-card a,
.bp-inventory-card a {
	width: fit-content;
	margin-top: auto;
	padding-top: 24px;
	color: var(--bp-ink);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.bp-choice-card:hover,
.bp-product-card:hover,
.bp-inventory-card:hover {
	border-color: #ddb1a7;
	box-shadow: var(--bp-shadow);
	transform: translateY(-3px);
}

.bp-product-grid,
.bp-inventory-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bp-product-card {
	min-height: 275px;
}

.bp-product-card ul,
.bp-plan-card ul,
.bp-commercial-checklist {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.bp-product-card li,
.bp-plan-card li,
.bp-commercial-checklist li {
	position: relative;
	margin: 10px 0;
	padding-left: 24px;
	color: var(--bp-ink-soft);
	line-height: 1.55;
}

.bp-product-card li::before,
.bp-plan-card li::before,
.bp-commercial-checklist li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--bp-coral);
	content: "✓";
	font-weight: 850;
}

.bp-plan-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.bp-plan-card {
	padding: 32px;
}

.bp-plan-card__label {
	width: fit-content;
	margin-bottom: 22px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--bp-blue-soft);
	color: var(--bp-ink);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bp-plan-card__for {
	margin: 0 0 20px !important;
	font-size: 14px;
}

.bp-plan-card .bp-button {
	width: 100%;
	margin-top: auto;
	padding-top: 0;
}

.bp-plan-card--recommended {
	border-color: var(--bp-coral);
	box-shadow: var(--bp-shadow);
	transform: translateY(-8px);
}

.bp-plan-card--recommended .bp-plan-card__label {
	background: var(--bp-coral);
	color: var(--bp-white);
}

.bp-inventory-card__mock {
	position: relative;
	min-height: 170px;
	display: grid;
	place-items: center;
	overflow: hidden;
	margin: -29px -29px 26px;
	border-bottom: 1px solid var(--bp-line);
	border-radius: 18px 18px 0 0;
	background: #edf2f3;
}

.bp-inventory-card__mock::before {
	width: 78%;
	min-height: 64px;
	display: grid;
	place-items: center;
	border: 1px dashed #93a6b2;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--bp-ink-soft);
	content: attr(data-label);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.bp-inventory-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 18px;
}

.bp-inventory-card__meta span {
	padding: 6px 9px;
	border-radius: 999px;
	background: var(--bp-coral-soft);
	color: var(--bp-coral-dark);
	font-size: 11px;
	font-weight: 750;
}

.bp-commercial-band {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	gap: 50px;
	padding: clamp(36px, 5vw, 62px);
	border-radius: 22px;
	background: #ece4d7;
}

.bp-commercial-band h2 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.bp-commercial-band p {
	margin: 18px 0 0;
	color: var(--bp-ink-soft);
	line-height: 1.65;
}

.bp-commercial-band__actions {
	display: grid;
	gap: 10px;
}

.bp-campaign-form-shell {
	max-width: 1040px;
	margin: 44px auto 0;
}

.bp-campaign-form {
	padding: clamp(26px, 5vw, 50px);
	border: 1px solid var(--bp-line);
	border-radius: 20px;
	background: var(--bp-white);
	box-shadow: var(--bp-shadow);
}

.bp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.bp-campaign-form label {
	display: grid;
	gap: 8px;
	color: var(--bp-ink);
	font-size: 14px;
	font-weight: 750;
}

.bp-campaign-form label > span {
	color: var(--bp-coral);
}

.bp-campaign-form input,
.bp-campaign-form select,
.bp-campaign-form textarea {
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid #cfd5d8;
	border-radius: 9px;
	background: var(--bp-white);
	box-shadow: none;
	color: var(--bp-ink);
	font-size: 15px;
	font-weight: 450;
}

.bp-campaign-form textarea {
	min-height: 135px;
	resize: vertical;
}

.bp-campaign-form input:focus,
.bp-campaign-form select:focus,
.bp-campaign-form textarea:focus {
	border-color: var(--bp-ink);
	outline: 2px solid rgba(18, 48, 74, 0.14);
}

.bp-form-full {
	margin-top: 20px;
}

.bp-form-consent {
	display: flex !important;
	align-items: flex-start;
	gap: 11px !important;
	margin: 24px 0;
	color: var(--bp-ink-soft) !important;
	font-weight: 450 !important;
	line-height: 1.55;
}

.bp-form-consent input {
	width: 18px;
	min-height: 18px;
	flex: 0 0 18px;
	margin-top: 2px;
}

.bp-form-consent span {
	color: inherit !important;
}

.bp-form-consent a {
	text-decoration: underline;
}

.bp-form-note {
	margin: 14px 0 0;
	color: var(--bp-ink-soft);
	font-size: 12px;
}

.bp-form-message {
	margin-bottom: 16px;
	padding: 16px 18px;
	border-radius: 10px;
	font-weight: 700;
}

.bp-form-message--success {
	border: 1px solid #9dc7ad;
	background: #edf8f1;
	color: #24593a;
}

.bp-form-message--error {
	border: 1px solid #e0aaa0;
	background: var(--bp-coral-soft);
	color: #873a2e;
}

.bp-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.bp-commercial-legal {
	display: grid;
	grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
	gap: 64px;
}

.bp-commercial-legal__index {
	position: sticky;
	top: 120px;
	align-self: start;
	display: grid;
	gap: 8px;
	padding: 22px;
	border: 1px solid var(--bp-line);
	border-radius: 14px;
	background: var(--bp-white);
}

.bp-commercial-legal__index a {
	padding: 7px 0;
	color: var(--bp-ink-soft);
	font-size: 13px;
	font-weight: 700;
}

.bp-commercial-legal__body {
	max-width: 780px;
	color: var(--bp-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.bp-commercial-legal__body section {
	padding-top: 10px;
	margin-bottom: 46px;
	scroll-margin-top: 125px;
}

.bp-commercial-legal__body h2 {
	margin: 0 0 18px;
	color: var(--bp-ink);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* Artículos */
.single-post.bp-site .entry-content {
	font-size: 18px;
	line-height: 1.78;
}

.single-post.bp-site .entry-content > p,
.single-post.bp-site .entry-content > h2,
.single-post.bp-site .entry-content > h3,
.single-post.bp-site .entry-content > ul,
.single-post.bp-site .entry-content > ol {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}

.single-post.bp-site .entry-content h2 {
	margin-top: 2.2em;
	font-size: clamp(2rem, 3vw, 2.8rem);
}

/* Animación discreta */
.bp-has-js .bp-reveal {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 360ms ease, transform 360ms ease;
}

.bp-has-js .bp-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1100px) {
	.bp-hero {
		grid-template-columns: 1fr;
	}

	.bp-hero__visual {
		min-height: 440px;
	}

	.bp-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-fallback-listings {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-zones {
		grid-template-columns: 1fr 1fr;
	}

	.bp-guides-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-guide-card:first-child {
		grid-column: 1 / -1;
	}

	.bp-business-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.bp-feature-grid,
	.bp-step-grid,
	.bp-pricing-grid,
	.bp-choice-grid,
	.bp-plan-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-commercial-hero__inner,
	.bp-commercial-band {
		grid-template-columns: 1fr;
	}

	.bp-commercial-legal {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.bp-commercial-legal__index {
		position: static;
	}
}

@media (max-width: 720px) {
	.bp-wrap {
		width: min(calc(100% - 32px), var(--bp-wrap));
	}

	.bp-site .main-navigation .primary-menu-container > ul > li.bp-menu-cta > a {
		margin: 8px 14px;
	}

	.bp-section {
		padding: 68px 0;
	}

	.bp-section-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
		margin-bottom: 34px;
	}

	.bp-hero__copy {
		padding: 54px 20px 40px;
	}

	.bp-hero h1 {
		font-size: clamp(3rem, 15vw, 4.4rem);
	}

	.bp-search {
		grid-template-columns: 1fr;
		padding: 7px;
	}

	.bp-search__field {
		min-height: 54px;
		padding: 0 12px;
	}

	.bp-search__field--near {
		border-top: 1px solid var(--bp-line);
		border-left: 0;
	}

	.bp-search__button {
		min-height: 50px;
		margin: 6px 0 0;
	}

	.bp-quick-links {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 7px;
		scrollbar-width: none;
	}

	.bp-quick-links::-webkit-scrollbar {
		display: none;
	}

	.bp-quick-links a {
		flex: 0 0 auto;
	}

	.bp-hero__visual {
		min-height: 330px;
	}

	.bp-local-note {
		right: 16px;
		bottom: 16px;
		left: 16px;
		max-width: none;
	}

	.bp-ad-shell {
		padding: 16px 0;
	}

	.bp-ad-slot {
		min-height: 132px;
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding: 18px;
	}

	.bp-ad-slot__label {
		grid-column: 1 / -1;
		padding: 0;
		border: 0;
	}

	.bp-ad-slot__copy span {
		display: none;
	}

	.bp-ad-slot__copy strong {
		font-size: 1.3rem;
	}

	.bp-ad-slot .bp-button {
		min-height: 42px;
		padding: 0 15px;
	}

	.bp-category-grid,
	.bp-fallback-listings,
	.bp-guides-grid,
	.bp-feature-grid,
	.bp-step-grid,
	.bp-pricing-grid,
	.bp-contact-grid,
	.bp-choice-grid,
	.bp-product-grid,
	.bp-plan-grid,
	.bp-inventory-grid,
	.bp-form-grid {
		grid-template-columns: 1fr;
	}

	.bp-commercial-nav .bp-commercial-nav__cta {
		margin-left: 0;
	}

	.bp-commercial-hero {
		padding-top: 62px;
	}

	.bp-commercial-hero h1 {
		font-size: clamp(3rem, 14vw, 4.5rem);
	}

	.bp-commercial-section {
		padding: 68px 0;
	}

	.bp-plan-card--recommended {
		transform: none;
	}

	.bp-category-card {
		min-height: 220px;
	}

	.bp-zones {
		grid-template-columns: 1fr;
	}

	.bp-zones__copy {
		padding: 70px 20px;
	}

	.bp-zones__visual {
		min-height: 360px;
	}

	.bp-guide-card:first-child {
		grid-column: auto;
	}

	.bp-guide-card {
		min-height: 360px;
	}

	.bp-business-cta {
		width: calc(100% - 32px);
		margin-bottom: 70px;
		padding: 35px 24px;
	}

	.bp-business-cta__actions {
		width: 100%;
		flex-direction: column;
	}

	.bp-page-hero {
		padding: 70px 0;
	}

	.bp-inline-cta {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.bp-has-js .bp-reveal {
		opacity: 1;
		transform: none;
	}
}
