/* --- 1. VARIABLES --- */
:root {
	--ff-red-primary: #e84142;
	--ff-red-dark: #d13637;
	--ff-cyan: #26c6da;
	--ff-cyan-hover: #00acc1;
	--ff-bg-gray: #f4f4f4;
}

/* --- 2. HERO SECTION --- */
.promo-hero.ffpf-portada-hero {
	position: relative;
	width: 100%;
	min-height: 650px;
	background-color: var(--ff-bg-gray);
	background-image: var(--ffpf-bg-desktop);
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 40px 5%;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
}

.promo-hero.ffpf-portada-hero::before {
	display: none;
}

.promo-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1200px;
}

/* --- 3. TEXTO DE NAVIDAD (ESCRITORIO) --- */
.promo-christmas-text {
	text-align: left;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
	display: none;
}

.promo-line-1 {
	display: block;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 50px;
	line-height: 0.8;
	font-weight: 400;
	margin-bottom: 5px;
}

.promo-line-2 {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
	margin-bottom: 5px;
}

.promo-line-3 {
	display: block;
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-size: 80px;
	line-height: 0.9;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 10px;
}

.promo-line-4 {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 3px;
	background: rgba(0, 0, 0, 0.3);
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
}

/* --- 4. TÍTULO MÓVIL --- */
.promo-mobile-header {
	text-align: center;
	margin-bottom: 20px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	padding: 15px 30px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	display: block;
	order: -1;
}

.promo-mobile-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 28px;
	color: var(--ff-red-primary);
	margin: 0;
	line-height: 1;
}

.promo-mobile-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
}

/* --- 5. TARJETA ROJA RAYADA --- */
.promo-card {
	width: 100%;
	max-width: 320px;
	background-color: var(--ff-red-primary);
	background-image: repeating-linear-gradient(
		90deg,
		var(--ff-red-primary),
		var(--ff-red-primary) 15px,
		var(--ff-red-dark) 15px,
		var(--ff-red-dark) 30px
	);
	padding: 25px;
	border-radius: 4px;
	box-shadow:
		0 0 0 6px #ffffff,
		0 15px 30px rgba(0, 0, 0, 0.3);
	color: #fff;
	text-align: center;
}

.promo-card-header h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 5px 0;
	line-height: 1.2;
}

.promo-card-header p {
	font-size: 14px;
	font-weight: 400;
	margin: 0 0 15px 0;
	opacity: 0.9;
}

.promo-divider {
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
	width: 60%;
	margin: 0 auto 20px auto;
}

/* --- 6. FORMULARIO --- */
.promo-steps-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.promo-step-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.promo-circle {
	width: 32px;
	height: 32px;
	min-width: 32px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
}

.promo-input-group {
	flex-grow: 1;
	text-align: left;
}

.promo-label {
	font-size: 11px;
	color: #fff;
	display: block;
	margin-bottom: 2px;
	font-weight: 600;
}

.promo-select {
	width: 100%;
	height: 34px;
	border-radius: 4px;
	border: none;
	padding: 0 10px;
	font-size: 13px;
	color: #555;
	background-color: #fff;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
	outline: none;
}

/* --- 7. BOTÓN --- */
.promo-btn-container {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
}

.promo-btn {
	background-color: var(--ff-cyan);
	color: #fff;
	border: none;
	padding: 8px 25px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: background 0.3s, transform 0.2s;
}

.promo-btn:hover {
	background-color: var(--ff-cyan-hover);
	transform: translateY(-2px);
}

/* --- 8. MEDIA QUERIES --- */
@media (max-width: 899px) {
	.promo-hero.ffpf-portada-hero {
		justify-content: center;
		background-position: center;
		background-image: var(--ffpf-bg-mobile, var(--ffpf-bg-desktop));
		padding: 30px 4%;
		min-height: 520px;
	}

	.promo-card {
		margin: 0 auto;
	}

	.promo-christmas-text {
		display: none;
	}

	.promo-mobile-header {
		display: block;
		margin-bottom: 15px;
	}
}

@media (min-width: 900px) {
	.promo-hero.ffpf-portada-hero {
		background-position: center right;
	}

	.promo-content {
		flex-direction: row;
		align-items: center;
		gap: 60px;
		width: 100%;
		max-width: 1200px;
	}

	.promo-hero.ffpf-portada-hero.ffpf-align-left .promo-content {
		flex-direction: row;
		justify-content: flex-start;
		margin-left: 0;
		margin-right: auto;
	}

	.promo-hero.ffpf-portada-hero.ffpf-align-center .promo-content {
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
		margin-left: auto;
		margin-right: auto;
	}

	.promo-hero.ffpf-portada-hero.ffpf-align-right .promo-content {
		flex-direction: row-reverse;
		justify-content: flex-start;
		margin-left: auto;
		margin-right: 0;
	}

	.promo-card {
		margin: 0;
	}

	.promo-christmas-text {
		display: block;
	}

	.promo-mobile-header {
		display: none !important;
	}
}

/* ====================================================================== */
/*  ESTILO CALEÑO                                                         */
/*  Portada horizontal vibrante con buscador integrado                    */
/* ====================================================================== */

:root {
	--cl-primary: #e84393;
	--cl-secondary: #ff7675;
	--cl-gradient: linear-gradient(90deg, var(--cl-primary) 0%, #fdcb6e 100%);
	--cl-white: #ffffff;
	--cl-dark: #2d3436;
	--cl-gray: #dfe6e9;
	--cl-shadow-floating: 0 20px 50px rgba(232, 67, 147, 0.25);
	--cl-font: 'Poppins', sans-serif;
	--cl-radius-desktop: 40px;
	--cl-radius-mobile: 20px;
}

.cl-hero {
	position: relative;
	width: 100%;
	min-height: 600px;
	background-color: #000;
	background-image: var(--cl-bg-desktop, url('../images/cl-hero-bg.jpg'));
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 12px;
	overflow: hidden;
	font-family: var(--cl-font);
}

.cl-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
}

.cl-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	text-align: center;
}

.cl-badge {
	display: inline-block;
	background: var(--cl-white);
	color: var(--cl-primary);
	padding: 8px 20px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cl-title {
	color: var(--cl-white);
	font-size: clamp(36px, 5vw, 64px);
	margin: 0 0 15px 0;
	font-weight: 900;
	line-height: 1.1;
	text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.cl-subtitle {
	color: #f1f2f6;
	font-size: 18px;
	margin-bottom: 50px;
	font-weight: 400;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	display: none;
}

.cl-search-bar {
	background: var(--cl-white);
	box-shadow: var(--cl-shadow-floating);
	border-radius: var(--cl-radius-mobile);
	padding: 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 4px solid rgba(255, 255, 255, 0.3);
	background-clip: padding-box;
}

.cl-search-bar:hover {
	transform: translateY(-3px);
	box-shadow: 0 30px 60px rgba(232, 67, 147, 0.4);
	border-color: rgba(255, 118, 117, 0.5);
}

.cl-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cl-group {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5px 10px;
	text-align: left;
}

.cl-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--cl-primary);
	text-transform: uppercase;
	margin-bottom: 5px;
	letter-spacing: 0.5px;
}

.cl-field-wrapper {
	position: relative;
	width: 100%;
	height: 40px;
}

.cl-select {
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	font-size: 15px;
	color: var(--cl-dark);
	font-weight: 600;
	cursor: pointer;
	outline: none;
	appearance: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cl-arrow {
	position: absolute;
	right: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-right: 3px solid var(--cl-dark);
	border-bottom: 3px solid var(--cl-dark);
	transform: rotate(45deg);
	pointer-events: none;
	opacity: 0.3;
	transition: all 0.3s;
}

.cl-group:hover .cl-arrow {
	opacity: 1;
	border-color: var(--cl-primary);
	transform: rotate(45deg) translate(2px, 2px);
}

.cl-btn-wrapper {
	padding: 5px;
}

.cl-btn {
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 12px;
	background: var(--cl-gradient);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 1px;
	cursor: pointer;
	transition: transform 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 8px 20px rgba(232, 67, 147, 0.3);
}

.cl-btn:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 25px rgba(232, 67, 147, 0.5);
}

@media (max-width: 899px) {
	.cl-hero {
		background-image: var(--cl-bg-mobile, var(--cl-bg-desktop, url('../images/cl-hero-bg.jpg')));
		padding: 24px 16px;
		min-height: 520px;
	}
}

@media (min-width: 1024px) {
	.cl-subtitle {
		display: block;
	}

	.cl-search-bar {
		border-radius: var(--cl-radius-desktop);
		padding: 35px 50px;
		max-width: 900px;
		margin: 0 auto;
	}

	.cl-form {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 25px;
		align-items: start;
	}

	.cl-group {
		padding: 0 20px;
		border-right: 1px solid #eee;
	}

	.cl-group:nth-child(3) {
		border-right: none;
	}

	.cl-btn-wrapper {
		grid-column: 1 / -1;
		margin-top: 15px;
		padding: 0;
		display: flex;
		justify-content: center;
	}

	.cl-btn {
		border-radius: 50px;
		height: 60px;
		width: 100%;
	}
}

/* ====================================================================== */
/*  ESTILO NEIVA                                                          */
/* ====================================================================== */

.fn-hero-wrapper {
	position: relative;
	width: 100%;
	background-image: var(--fn-bg-desktop, url('../images/fn-hero-bg.jpg'));
	background-size: cover;
	background-position: center 40%;
	border-radius: 20px;
	overflow: hidden;
	padding: 40px 20px;
	box-sizing: border-box;
	font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fn-hero-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
}

.fn-content {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: center;
	text-align: center;
}

.fn-title-block {
	width: 100%;
	margin-bottom: 10px;
}

.fn-subtitle {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #f1c40f;
	margin-bottom: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fn-title {
	color: #ffffff;
	font-size: clamp(28px, 5vw, 42px);
	line-height: 1.1;
	margin: 0;
	font-weight: 800;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.fn-desc {
	color: #ffffff;
	font-size: 16px;
	max-width: 600px;
	margin: 10px auto 0 auto;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
	display: none;
}

.fn-search-card {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	padding: 20px;
	border-radius: 20px;
	width: 100%;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}

.fn-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

.fn-input-group {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.fn-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: #576574;
	margin-bottom: 6px;
	margin-left: 10px;
}

.fn-field-container {
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 50px;
	height: 55px;
	display: flex;
	align-items: center;
	border: 1px solid transparent;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
	padding-right: 40px;
}

.fn-select {
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: #1e272e;
	cursor: pointer;
	appearance: none;
	outline: none;
	border-radius: 50px;
}

.fn-btn-wrapper {
	display: flex;
	align-items: flex-end;
}

.fn-submit-btn {
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 50px;
	background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
	color: white;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
	text-transform: uppercase;
}

.fn-submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(39, 174, 96, 0.5);
	background: linear-gradient(135deg, #35d67a 0%, #219653 100%);
}

@media (min-width: 1024px) {
	.fn-hero-wrapper {
		padding: 60px 40px;
		text-align: left;
	}

	.fn-content {
		align-items: flex-start;
		text-align: left;
	}

	.fn-title {
		font-size: 48px;
	}

	.fn-desc {
		display: block;
		text-align: left;
	}

	.fn-form {
		grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
		align-items: end;
		gap: 15px;
	}

	.fn-search-card {
		padding: 25px 35px;
		margin-top: 20px;
	}

	.fn-label {
		position: absolute;
		top: -22px;
		left: 10px;
		color: #ffffff;
		text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
		font-weight: 600;
	}
}

@media (max-width: 1023px) {
	.fn-hero-wrapper {
		background-image: var(--fn-bg-mobile, var(--fn-bg-desktop));
	}

	.fn-form {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fn-form {
		grid-template-columns: 1fr 1fr;
	}

	.fn-btn-wrapper {
		grid-column: span 2;
	}
}

/* ====================================================================== */
/*  ESTILO IBAGUÉ                                                         */
/*  Ciudad Musical y Ocobos                                               */
/* ====================================================================== */

:root {
	--ib-pink: #fd79a8;
	--ib-purple: #6c5ce7;
	--ib-gradient: linear-gradient(135deg, var(--ib-pink) 0%, var(--ib-purple) 100%);
	--ib-text-dark: #2d3436;
	--ib-text-gray: #636e72;
	--ib-white: #ffffff;
	--ib-shadow: 0 15px 35px rgba(108, 92, 231, 0.25);
	--ib-font-main: 'Montserrat', sans-serif;
}

.ib-hero {
	position: relative;
	width: 100%;
	min-height: 550px;
	background-image: var(--ib-bg-desktop, url('../images/ib-hero-bg.jpg'));
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 16px;
	overflow: hidden;
	font-family: var(--ib-font-main);
}

.ib-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(45, 52, 54, 0.3) 0%, rgba(108, 92, 231, 0.2) 100%);
	backdrop-filter: blur(1px);
	z-index: 1;
}

.ib-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	text-align: center;
}

.ib-tagline {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	color: #fff;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 15px;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.ib-title {
	font-size: clamp(32px, 5vw, 56px);
	color: #ffffff;
	margin: 0 0 40px 0;
	font-weight: 800;
	line-height: 1.1;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ib-title span {
	display: inline-block;
}

.ib-title-line2 {
	background: var(--ib-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: #fff;
	text-shadow: 0 0 20px rgba(253, 121, 168, 0.6);
}

.ib-search-bar {
	background: var(--ib-white);
	border-radius: 100px;
	padding: 10px 15px;
	display: flex;
	align-items: center;
	box-shadow: var(--ib-shadow);
	max-width: 950px;
	margin: 0 auto;
	position: relative;
	transition: transform 0.3s ease;
}

.ib-search-bar:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(108, 92, 231, 0.35);
}

.ib-form {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 0;
}

.ib-group {
	flex: 1;
	padding: 5px 20px;
	position: relative;
	border-right: 1px solid #eee;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

.ib-group:last-of-type {
	border-right: none;
}

.ib-group:nth-last-child(2) {
	border-right: none;
}

.ib-label {
	font-size: 10px;
	text-transform: uppercase;
	color: var(--ib-text-gray);
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
	display: block;
}

.ib-field-wrapper {
	position: relative;
	width: 100%;
}

.ib-select {
	width: 100%;
	border: none;
	background: transparent;
	font-size: 15px;
	color: var(--ib-text-dark);
	font-weight: 700;
	cursor: pointer;
	outline: none;
	appearance: none;
	padding-right: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ib-icon {
	position: absolute;
	right: 0;
	top: 2px;
	width: 14px;
	height: 14px;
	fill: var(--ib-purple);
	pointer-events: none;
	transition: transform 0.3s;
}

.ib-group:hover .ib-icon {
	transform: translateY(2px);
}

.ib-btn-container {
	padding-left: 10px;
	display: flex;
	align-items: center;
}

.ib-btn {
	width: 55px;
	height: 55px;
	min-width: 55px;
	border: none;
	border-radius: 50%;
	background: var(--ib-gradient);
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 5px 15px rgba(253, 121, 168, 0.4);
}

.ib-btn svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ib-btn-text {
	display: none;
}

.ib-btn:hover {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 10px 25px rgba(253, 121, 168, 0.6);
}

@media (max-width: 1023px) {
	.ib-hero {
		background-image: var(--ib-bg-mobile, var(--ib-bg-desktop, url('../images/ib-hero-bg.jpg')));
	}

	.ib-search-bar {
		border-radius: 25px;
		padding: 25px;
		flex-direction: column;
	}

	.ib-form {
		flex-direction: column;
		width: 100%;
		gap: 20px;
	}

	.ib-group {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #eee;
		padding: 10px 0;
		box-sizing: border-box;
	}

	.ib-group:last-of-type {
		border-bottom: none;
	}

	.ib-group:nth-last-child(2) {
		border-bottom: none;
	}

	.ib-btn-container {
		width: 100%;
		padding-left: 0;
		margin-top: 10px;
	}

	.ib-btn {
		width: 100%;
		height: 55px;
		border-radius: 50px;
		justify-content: center;
	}

	.ib-btn-text {
		display: inline-block;
		margin-left: 10px;
		font-size: 14px;
		font-weight: 700;
	}
}

/* ====================================================================== */
/*  ESTILO PEREIRA                                                         */
/*  Eje Cafetero – tarjeta orgánica                                        */
/* ====================================================================== */

/* --- 1. VARIABLES (Tema Pereira: Eje Cafetero) --- */
:root {
	--pe-primary: #e55039;       /* Terracota / Rojo Heliconia */
	--pe-primary-hover: #b71540;
	--pe-dark: #2f3542;          /* Gris Café oscuro */
	--pe-light: #f1f2f6;
	--pe-white: #ffffff;
	--pe-shadow: 0 20px 40px rgba(229, 80, 57, 0.15);
	--pe-font-head: 'Playfair Display', serif;
	--pe-font-body: 'Poppins', sans-serif;
}

/* --- 2. HERO SECTION --- */
.pe-hero {
	position: relative;
	width: 100%;
	min-height: 550px;
	background-image: var(--pe-bg-desktop, url('https://images.pexels.com/photos/2850516/pexels-photo-2850516.jpeg?auto=compress&cs=tinysrgb&w=1600'));
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 20px;
}

.pe-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(47, 53, 66, 0.7) 0%, rgba(229, 80, 57, 0.2) 100%);
	z-index: 1;
}

.pe-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	text-align: center;
}

/* --- 3. TIPOGRAFÍA --- */
.pe-title {
	font-family: var(--pe-font-head);
	font-size: clamp(36px, 6vw, 58px);
	color: var(--pe-white);
	margin: 0 0 10px 0;
	text-shadow: 0 4px 15px rgba(0,0,0,0.4);
	font-weight: 700;
	line-height: 1.1;
}

.pe-title span {
	color: #ffa502; /* Amarillo solar */
	font-style: italic;
}

.pe-subtitle {
	font-family: var(--pe-font-body);
	color: #f1f2f6;
	font-size: 16px;
	margin-bottom: 40px;
	font-weight: 300;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- 4. TARJETA ORGÁNICA --- */
.pe-card {
	background: var(--pe-white);
	padding: 40px 30px;
	position: relative;
	/* Forma Asimétrica Orgánica */
	border-radius: 30px 70px 30px 70px;
	box-shadow: 0 25px 50px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
	max-width: 900px;
	margin: 0 auto;
}

.pe-card:hover {
	transform: translateY(-5px);
}

/* Etiqueta Flotante */
.pe-floating-tag {
	position: absolute;
	top: -15px;
	right: 40px;
	background-color: var(--pe-primary);
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-family: var(--pe-font-body);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(229, 80, 57, 0.4);
	z-index: 10;
	transform: rotate(2deg);
}

.pe-form {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr; /* Mobile: 1 columna */
}

/* --- 5. INPUTS --- */
.pe-input-group {
	position: relative;
	text-align: left;
}

.pe-label {
	font-family: var(--pe-font-body);
	font-size: 11px;
	color: #747d8c;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
	margin-left: 10px;
}

.pe-field {
	position: relative;
	background-color: #f7f8fa;
	border-radius: 15px;
	height: 55px;
	display: flex;
	align-items: center;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.pe-field:hover {
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pe-field:focus-within {
	background-color: #fff;
	border-color: var(--pe-primary);
	box-shadow: 0 0 0 4px rgba(229, 80, 57, 0.1);
}

.pe-icon {
	width: 22px;
	height: 22px;
	margin-left: 15px;
	fill: var(--pe-primary);
	opacity: 0.8;
}

.pe-select {
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	padding: 0 15px;
	font-family: var(--pe-font-body);
	font-size: 14px;
	color: var(--pe-dark);
	font-weight: 600;
	cursor: pointer;
	outline: none;
	appearance: none;
}

.pe-arrow {
	position: absolute;
	right: 15px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--pe-primary);
	border-bottom: 2px solid var(--pe-primary);
	transform: rotate(45deg);
	pointer-events: none;
	margin-top: -2px;
}

/* --- 6. BOTÓN --- */
.pe-btn-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px; /* Espacio extra antes del botón */
}

.pe-btn {
	width: 100%;
	height: 55px;
	border: none;
	border-radius: 15px;
	background: linear-gradient(45deg, #ff6b6b, #ee5253);
	color: white;
	font-family: var(--pe-font-body);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(238, 82, 83, 0.3);
	transition: transform 0.2s, box-shadow 0.2s;
}

.pe-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(238, 82, 83, 0.5);
}

/* --- 7. MEDIA QUERIES (DESKTOP) --- */
@media (min-width: 1024px) {
	.pe-card {
		padding: 40px 50px;
		border-radius: 50px 20px 50px 20px;
	}

	.pe-form {
		/* 3 columnas iguales para los inputs */
		grid-template-columns: 1fr 1fr 1fr; 
		align-items: start;
		gap: 25px;
	}

	/* El botón ocupa toda la fila de abajo */
	.pe-btn-wrapper {
		grid-column: 1 / -1; /* Span full width */
		margin-top: 15px;
	}
	
	.pe-btn {
		/* Opcional: si quieres el botón más angosto, ajusta max-width aquí.
			 Ej: max-width: 400px; */
		width: 100%; 
	}
	
	.pe-input-group:not(:last-child)::after {
		content: '';
		position: absolute;
		right: -12px;
		top: 35px; /* Ajustado al centro vertical del input */
		height: 30px;
		width: 1px;
		background-color: #dfe4ea;
	}
	
	/* Quitar la línea divisoria del último input de la fila (Precio) */
	.pe-input-group:nth-child(3)::after {
		display: none;
	}
}

/* ====================================================================== */
/*  ESTILO CÚCUTA                                                         */
/*  Perla del Norte                                                       */
/* ====================================================================== */

/* --- 1. VARIABLES (Tema Cúcuta: Perla del Norte) --- */
:root {
	--cc-green-dark: #083926;    /* Verde Bosque Profundo */
	--cc-green-light: #2ecc71;   /* Verde Hoja Vibrante */
	--cc-gold: #f1c40f;          /* Dorado Sol */
	--cc-white: #ffffff;
	--cc-gray: #f4f6f8;
	--cc-text: #2c3e50;
	--cc-border-radius: 12px;    /* Bordes moderados */
	--cc-font-main: 'Roboto', sans-serif;
}

/* --- 2. FONDO HERO --- */
.cc-hero {
	position: relative;
	width: 100%;
	min-height: 580px;
	/* Imagen: Naturaleza urbana o flores brillantes */
	background-image: var(--cc-bg-desktop, url('https://images.pexels.com/photos/992734/pexels-photo-992734.jpeg?auto=compress&cs=tinysrgb&w=1600'));
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
	border-radius: 10px;
	overflow: hidden;
	font-family: var(--cc-font-main);
}

/* Overlay oscuro pero transparente para profundidad */
.cc-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
	z-index: 1;
}

/* --- 3. LA TARJETA ESTRUCTURAL (SPLIT CARD) --- */
.cc-card {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 500px; /* Diseño vertical robusto */
	background-color: var(--cc-white);
	border-radius: var(--cc-border-radius);
	overflow: hidden; /* Para que el header respete los bordes */
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
}

/* --- 4. HEADER INTEGRADO (VERDE OSCURO) --- */
.cc-card-header {
	background-color: var(--cc-green-dark);
	padding: 35px 30px;
	text-align: center;
	position: relative;
}

/* Detalle decorativo: línea dorada */
.cc-card-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 30%;
	right: 30%;
	height: 4px;
	background-color: var(--cc-gold);
	border-radius: 4px 4px 0 0;
}

.cc-badge {
	color: var(--cc-gold);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 8px;
}

.cc-title {
	color: var(--cc-white);
	font-size: 32px;
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
}

.cc-subtitle {
	color: #bdc3c7;
	font-size: 14px;
	margin-top: 8px;
	font-weight: 300;
}

/* --- 5. CUERPO DEL FORMULARIO --- */
.cc-card-body {
	padding: 30px;
	background-color: var(--cc-white);
}

.cc-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* --- 6. INPUTS CON INDICADORES (STEPS) --- */
.cc-input-group {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}

/* Círculos indicadores numéricos (1, 2, 3) */
.cc-step {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background-color: var(--cc-gray);
	color: #95a5a6;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

/* Al hacer focus en el input, el step se ilumina */
.cc-input-group:focus-within .cc-step {
	background-color: var(--cc-green-dark);
	color: var(--cc-white);
}

.cc-field-container {
	width: 100%;
	position: relative;
}

.cc-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--cc-text);
	text-transform: uppercase;
	margin-bottom: 5px;
	display: block;
}

.cc-select-wrapper {
	position: relative;
	width: 100%;
}

.cc-select {
	width: 100%;
	height: 50px;
	background-color: var(--cc-gray);
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 0 15px;
	font-size: 14px;
	color: var(--cc-text);
	font-weight: 600;
	cursor: pointer;
	outline: none;
	appearance: none;
	transition: all 0.3s;
}

.cc-select:hover {
	background-color: #eef2f5;
}

.cc-select:focus {
	background-color: #fff;
	border-color: var(--cc-green-light);
	box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

.cc-arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	fill: var(--cc-text);
	pointer-events: none;
	opacity: 0.5;
}

/* --- 7. BOTÓN FOOTER --- */
.cc-btn-wrapper {
	margin-top: 10px;
}

.cc-btn {
	width: 100%;
	height: 55px;
	background-color: var(--cc-green-dark);
	color: var(--cc-white);
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.cc-btn:hover {
	background-color: var(--cc-green-light);
	box-shadow: 0 10px 20px rgba(46, 204, 113, 0.4);
	transform: translateY(-2px);
}

/* --- 8. MEDIA QUERIES --- */
@media (max-width: 899px) {
	.cc-hero {
		background-image: var(--cc-bg-mobile, var(--cc-bg-desktop, url('https://images.pexels.com/photos/992734/pexels-photo-992734.jpeg?auto=compress&cs=tinysrgb&w=1600')));
	}
}

@media (min-width: 900px) {
	/* En Desktop, hacemos la tarjeta Horizontal */
	.cc-card {
		max-width: 1100px;
		flex-direction: row; /* Header a la izquierda, form a la derecha */
		align-items: stretch;
	}

	.cc-card-header {
		width: 35%; /* 35% del ancho */
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		text-align: left;
		padding: 50px;
	}

	.cc-card-header::after {
		left: 0;
		width: 50px;
		right: auto;
	}

	.cc-card-body {
		width: 65%;
		padding: 40px 50px;
		display: flex;
		align-items: center;
	}

	.cc-form {
		display: grid;
		grid-template-columns: 1fr 1fr; /* 2 columnas */
		gap: 25px;
		width: 100%;
	}

	/* El botón ocupa dos columnas abajo */
	.cc-btn-wrapper {
		grid-column: span 2;
	}
}

/* ====================================================================== */
/*  ESTILO SANTA MARTA                                                    */
/*  Tropical & Fresh                                                      */
/* ====================================================================== */

/* --- 1. VARIABLES --- */
:root {
  --sm-sea: #00b894;           /* Turquesa Caribe */
  --sm-sea-dark: #00a884;
  --sm-sunset: #ff7675;        /* Coral Atardecer */
  --sm-sunset-dark: #d63031;
  --sm-sand: #fffbf0;          /* Blanco arena suave */
  --sm-text: #2d3436;
  --sm-shadow: 0 10px 25px rgba(0, 184, 148, 0.25); /* Sombra un poco más fuerte */
  --sm-radius: 25px;
}

/* --- 2. CONTENEDOR PRINCIPAL --- */
.sm-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: var(--sm-bg-desktop, url('https://images.pexels.com/photos/240526/pexels-photo-240526.jpeg?auto=compress&cs=tinysrgb&w=1600'));
  background-size: cover;
  background-position: center;
  padding: 40px 15px;
  box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 100%);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.sm-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* --- 3. TEXTOS --- */
.sm-header {
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(255,255,255,0.9); 
}

.sm-pretitle {
  color: var(--sm-sunset-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
  background: rgba(255,255,255,0.7);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
}

.sm-title {
  font-size: clamp(32px, 6vw, 52px);
  color: var(--sm-text);
  line-height: 1.1;
  font-weight: 900;
  margin: 10px 0 0 0;
}

/* Ensure Title is ALWAYS black in frontend */
.sm-title, 
.sm-title b {
  color: var(--sm-text);
  font-weight: inherit;
}

.sm-title span {
  color: var(--sm-sea-dark); /* Un turquesa más profundo para leerse mejor */
}

/* --- 4. EXTRAS DESKTOP --- */
.sm-desktop-extras {
  display: none; 
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.85); /* Más opaco para legibilidad */
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sm-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sm-text);
  font-weight: 700;
  font-size: 13px;
}

.sm-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px; /* Fix for flex squeeze */
  background: var(--sm-sea);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* --- 5. CAJA DEL BUSCADOR --- */
.sm-search-box {
  background: rgba(255, 255, 255, 0.95); /* Casi sólido para resaltar sobre la foto */
  padding: 25px;
  border-radius: var(--sm-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 2px solid #fff;
}

.sm-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* --- INPUTS --- */
.sm-input-wrapper {
  position: relative;
  width: 100%;
}

.sm-label {
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  color: var(--sm-sea-dark);
  margin-bottom: 5px;
  margin-left: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sm-field {
  width: 100%;
  height: 55px;
  background-color: #f4fbfb;
  border-radius: 50px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sm-field:hover {
  background-color: #fff;
  border-color: #b2bec3;
}

.sm-field:focus-within {
  background-color: #fff;
  border-color: var(--sm-sea);
  box-shadow: 0 0 0 4px rgba(0, 184, 148, 0.15);
}

.sm-icon {
  width: 20px;
  height: 20px;
  min-width: 20px; /* Prevent shrinking */
  stroke: var(--sm-sea);
  fill: none;
  stroke-width: 2.5;
  margin-right: 10px;
}

.sm-select {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--sm-text);
  font-weight: 600;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.sm-chevron {
  position: absolute;
  right: 20px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: var(--sm-sea);
  pointer-events: none;
}

/* --- BOTÓN --- */
.sm-btn-container {
  margin-top: 10px;
}

.sm-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--sm-sunset) 0%, var(--sm-sunset-dark) 100%);
  color: white;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 48, 49, 0.3);
  transition: transform 0.2s;
  text-transform: uppercase;
}

.sm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(214, 48, 49, 0.5);
}

/* --- 6. MEDIA QUERIES --- */
@media (max-width: 1023px) {
	.sm-hero {
		background-image: var(--sm-bg-mobile, var(--sm-bg-desktop, url('https://images.pexels.com/photos/240526/pexels-photo-240526.jpeg?auto=compress&cs=tinysrgb&w=1600')));
	}
}

@media (min-width: 1024px) {
  .sm-hero {
    padding: 60px 50px;
  }

  .sm-desktop-extras {
    display: flex; 
  }

  .sm-search-box {
    padding: 35px 45px;
    max-width: 1100px;
    margin: 0 auto;
    transform: translateY(-10px); 
  }

  .sm-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
    gap: 25px;
  }

  .sm-btn-container {
    margin-top: 0;
    width: auto;
  }
  
  .sm-btn {
    padding: 0 40px; 
    width: auto; 
  }
}
