:root{
	--ink: #0b132b;
	--blue: #1f8ac0;
	--deep: #0a2a43;
	--bg: #f6f8fc;
}

*{ 
	box-sizing: border-box; }
body{
	margin: 0;
	font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
	color: #1c1c1c;
	background: #fff;
}

.hide-mobile{ 
	display: block; }
@media (max-width: 768px){
	.hide-mobile{ 
		display: none; }
}

.sys-phone{
	display: block;
	order: 3 !important;
	margin: 2px 0 0;
	max-width: 580px;
	width: 100%;
}

.sys-phone__link{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(10, 32, 58, 0.42), rgba(10, 32, 58, 0.26));
	box-shadow: 0 14px 28px rgba(4, 23, 38, 0.12);
	backdrop-filter: blur(10px);
	text-decoration: none;
	width: 100%;
	max-width: 100%;
}

.sys-flags{
	display: inline-flex;
	gap: 0;
	flex-shrink: 0;
}

.sys-flags img{
	width: 18px;
	height: 18px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 50%;
}

.sys-phone__text{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,.96);
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.35;
}

.sys-phone__text::before{
	content: "\f095";
	font-family: "Font Awesome 6 Free";
	font-weight: 800;
	font-size: 0.85rem;
	color: #fff;
}

.sys-phone__hours{
	color: rgba(255,255,255,.72);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
}

.sys-phone__link .sys-phone__hours::before{
	content: "|";
	margin: 0 8px 0 2px;
	color: rgba(255,255,255,.3);
}

@media (max-width: 1200px){
	.sys-phone__link{
		width: 100%;
		border-radius: 18px;
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.sys-phone__link .sys-phone__hours::before{
		content: "";
		margin: 0;
	}
}

.sr-only{
	position: absolute!important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.nav-toggle{
	display: none;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 1.25rem;
}

/* =========================
HEADER BASE
========================= */

.site-header{
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	transition: box-shadow .3s ease, background .3s ease;
}

/* Sticky state */
.site-header.is-sticky{
	box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

/* ===== LANG SELECTOR ===== */

/* Contenedor principal */
.lang__selector {
	position: relative;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
}

/* Selector visible */
.lang__selected {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 30px;
	transition: all 0.25s ease;
	background: transparent;
	color: black;
}

.lang__selected:hover {
	background: rgba(0, 0, 0, 0.05);
}

/* Flecha */
.lang__selected i {
	font-size: 14px;
	transition: transform 0.25s ease;
}

.lang__label{
	white-space: nowrap;
}

.lang__iso{
	display: none;
	white-space: nowrap;
	font-weight: 700;
	letter-spacing: .04em;
}


/* Items */
.lang__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	font-size: 14px;
	transition: background 0.2s ease;
	color: black;
}

.lang__item img {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #ccc;
}

.lang__item:hover {
	background: #f3f4f6;
}

.lang__selector.active .lang__list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang__selector.active .lang__selected i {
	transform: rotate(180deg);
}

.lang__wrap{
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
}

.lang__list{
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 160px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(0,0,0,.12);
	padding: 6px 0;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .25s ease;
	z-index: 9999;
}

/* Abierto */
.lang__selector.active .lang__list{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 900px){
	.lang__wrap{
		margin-left: auto;           
		margin-right: 8px;
	}

	.lang__selected{
		padding: 6px 10px;
		border: 1px solid rgba(0,0,0,.12);
		background: #fff;
	}

	.lang__selected{
		gap: 6px;
	}

	.lang__selected .lang__label{
		display: none;
	}

	.lang__selected .lang__iso{
		display: inline;
	}

	.lang__list{
		position: fixed;           
		top: 64px;                  
		right: 12px;
		left: 12px;                 
		min-width: unset;
		max-height: 55vh;
		overflow: auto;
		border-radius: 14px;
		z-index: 10000;
	}

	.lang__item{
		padding: 12px 14px;
	}

	.lang__item.is-current{
		display: none;
	}
}
/* =========================
TOP BAR
========================= */

.header-top{
	height: 30px;
	background: #1a1a1a;
	color: #ffffff;
	display: flex;
	align-items: center;
	font-size: 1rem;
	line-height: 0.9rem;
}

.header-top__wrap{
	width: min(1200px, calc(100% - 36px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-items: center;
}

.header-top__left{ 
	justify-self: start; }
.header-top__center{ 
	justify-self: center; 
	display: none; }
.header-top__right{ 
	justify-self: end; }

.header-top__link{
	color: #ffffff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	opacity: .9;
	transition: opacity .2s ease;
}

.header-top__link:hover{
	opacity: 1;
}

.hide-pc{
	display: none;
}

/* =========================
MIDDLE BAR
========================= */

.header-mid{
	height: 90px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(0,0,0,.06);
	transition: height .3s ease;
}

.site-header.is-sticky .header-mid{
	height: 90px;
}

.header-mid__wrap{
	width: min(1200px, calc(100% - 36px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-logo img{
	height: 80px;
	width: auto;
	display: block;
	transition: height .3s ease;
}

/*.site-header.is-sticky .header-logo img{
height: 60px;
}*/

/* =========================
NAVIGATION
========================= */

.header-nav{
	display: block;
	align-items: center;
}

.header-menu{
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.menu-item{
	position: relative;
}

/* Main links */

.menu-a,
.menu-link{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #111;
	text-decoration: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px 6px;
	transition: color .2s ease;
}

/*.menu-a:hover,
.menu-link:hover{
color: #c30000;
}*/

/* 
.menu-link i{
font-size: 0.7rem;
transition: transform .25s ease;
} */

.has-sub.is-open > .menu-link i{
	transform: rotate(180deg);
}

/* =========================
SUBMENU
========================= */

.sub-menu{
	list-style: none;
	margin: 0;
	position: absolute;
	left: 0;
	min-width: 240px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0,0,0,.12);
	border: 1px solid rgba(0,0,0,.06);
	display: none;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .25s ease, transform .25s ease;
	z-index: 999;
}

/* Desktop hover */
@media (min-width: 901px){
	.has-sub:hover > .sub-menu{
		display: none;

	}
}

/* Click open */
.has-sub.is-open > .sub-menu{
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.sub-menu li{
	margin: 0;
}

.sub-menu a{
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 0.9rem;
	color: #222;
	text-decoration: none;
	transition: background .2s ease;
}

.sub-menu a:hover{
	background: rgba(0,0,0,.05);
}


/* =========================
HEADER ACTIONS
========================= */

.header-actions{
	display: inline-flex;
	align-items: center;
	gap: 14px;
 
}

/* =========================
MOBILE TOGGLE
========================= */

.nav-toggle{
	display: none;
	background: transparent;
	border: none;
	font-size: 1.3rem;
	cursor: pointer;
	margin-left: 12px;
}

/* Accessibility */
.sr-only{
	position: absolute!important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.hide_pc{
	display: none;
}

@media (max-width: 950px){
	.hide-pc{
		display: block;
	}
	.header-logo img{
		height: auto;
		transition: none;

	}

	.site-header{
		position: sticky;
		top: 0;
	}
	
	.header-top{
		display: none;
	}

	.header-mid{
		position: relative;
		z-index: 10001; 
	}

	.nav-toggle{
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(0,0,0,.12);
		border-radius: 12px;
		background: #fff;
		padding: 0;
		line-height: 1;
	}
	.nav-toggle i{ 
		line-height: 1; }

	.header-nav{
		display: block;             
		position: absolute;
		top: 100%;                
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1px solid rgba(0,0,0,.06);
		box-shadow: 0 18px 50px rgba(0,0,0,.14);
		padding: 10px 18px 14px;

		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		pointer-events: none;
		transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
		z-index: 10000;

		max-height: calc(100vh - 60px);
		overflow-y: auto;
	}

	.site-header.nav-open .header-nav{
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	/* Menú en columna */
	.header-menu{
		flex-direction: column;
		gap: 6px;
	}

	.menu-link,
	.menu-a{
		width: 100%;
		justify-content: space-between;
		padding: 14px 8px;
	}

	/* Submenús: dentro del panel */
	.sub-menu{
		position: static;
		border: none;
		box-shadow: none;
		padding: 0 0 8px 16px;
		transform: none;
		opacity: 1;
		display: none;
	}

	.has-sub.is-open > .sub-menu{
		display: block;
	}
}
/* ===== HERO ===== */
.home-hero{
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	padding: 20px 20px 10px;
	background: linear-gradient(135deg,
	rgba(10,42,67,0.614),
	rgba(44,146,213,0.477),
	rgba(31,138,192,0.55)
	),
	url("../imagenes/web/img-hero-home.png");
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.home-hero:before{
	content: none;
}
.home-hero:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70px;
	pointer-events: none;
	z-index: 2;
}
.home-hero-wrap{
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 3;
}
.home-hero-left{
	position: relative;
	padding: 50px 0 0 0;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start;
	gap: 12px;
	max-width: 600px;
}
.home-hero-left::before{
	display: none;
}
.home-hero h1,
.home-hero-left .activity-hero__title{
	margin: 0;
	order: 1;
	font-size: clamp(2.75rem, 4vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 0.96;
	color: #fff !important;

}
.hero-eyebrow{
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin: 0 0 4px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.452);
	border: 1px solid rgba(255,255,255,.38);
	backdrop-filter: blur(8px);
	box-shadow: none;
	order: 0 !important;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #b31b1b !important;
}
.hero-sub{
	order: 4 !important;
	margin: 0;
	max-width: 52ch;
	padding: 4px 0 0;
	border-left: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	font-size: 1.01rem;
	line-height: 1.68;
	opacity: .88;
	font-weight: 500;
	color: #fff !important;
}

.home-hero-left > .hero-eyebrow{
	order: 0 !important;
}

.home-hero-left > h1,
.home-hero-left > .activity-hero__title{
	order: 1 !important;
}

.home-hero-left > .hero-chips{
	order: 2 !important;
}

.home-hero-left > h4.sys-phone,
.home-hero-left > .sys-phone{
	order: 3 !important;
}

.home-hero-left > .hero-sub,
.home-hero-left > .hide-mobile.hero-sub,
.home-hero-left > .hide-pc.hero-sub{
	order: 4 !important;
}

.home-hero-left ul{
	order: 5 !important;
	margin-top: 6px !important;
}

.header-mid__right{
	display: flex;
	align-items: center;
}

.hero-chips{
	order: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	max-width: 560px;
}
.hero-chip{
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 700;
	font-size: .84rem;
	letter-spacing: .01em;
	backdrop-filter: blur(8px);
	box-shadow: none;
	white-space: nowrap;
	color: #fff !important;
	opacity: .92;
}

@media (max-width:980px){
	.home-hero{ 
		padding: 20px 16px 10px; 
		min-height: auto; }
	.hero-eyebrow{ 
		margin-bottom: 4px; 
		font-size: 1.2rem; 
		letter-spacing: .16em; }
	.home-hero h1,
	.home-hero-left .activity-hero__title{ 
		font-size: 2.6rem !important; }
	.hero-sub{ 
		display: none !important; }
	.home-hero-left{
		gap: 10px;
		padding: 0;
		max-width: none;
    
	}
	.home-hero-left{
		display: inline !important;
    
	}
	.home-hero-left::before{
		display: none ;
	}
	.hero-chips{ 
		margin-bottom: 15px; }
	.home-hero-left > .sys-phone{ 
		display: none !important; }
	.activity-hero .activity-hero__title,
	.bus-hero .activity-hero__title{ 
		color: #fff !important; }

	.home-hero .home-hero-left,
	.activity-hero--sena .home-hero-left,
	.activity-hero--arco .home-hero-left,
	.bus-hero .home-hero-left{
		flex-direction: column !important;
		align-items: center !important;
		text-align: center;
	}

	.home-hero .home-hero-left > div,
	.activity-hero--sena .home-hero-left > div,
	.activity-hero--arco .home-hero-left > div,
	.bus-hero .home-hero-left > div{
		width: 100%;
	}

	.home-hero .home-hero-left > h1,
	.home-hero .home-hero-left > .activity-hero__title,
	.activity-hero--sena .home-hero-left > .activity-hero__title,
	.activity-hero--arco .home-hero-left > .activity-hero__title,
	.bus-hero .home-hero-left > .activity-hero__title{
		text-align: center;
	}

	.home-hero .home-hero-left > .hero-eyebrow,
	.activity-hero--sena .home-hero-left > .hero-eyebrow,
	.activity-hero--arco .home-hero-left > .hero-eyebrow,
	.bus-hero .home-hero-left > .hero-eyebrow{
		align-self: center;
	}

	.home-hero .home-hero-left > .hero-chips,
	.activity-hero--sena .home-hero-left > .hero-chips,
	.activity-hero--arco .home-hero-left > .hero-chips,
	.bus-hero .home-hero-left > .hero-chips{
		justify-content: center;
	}

	.home-hero .home-hero-left > .hero-sub,
	.activity-hero--sena .home-hero-left > .hero-sub,
	.activity-hero--arco .home-hero-left > .hero-sub,
	.bus-hero .home-hero-left > .hero-sub{
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

/* ===== FORM ===== */
.home-form{
	/*padding:40px 18px;*/
	background: linear-gradient(180deg,#3d5585,#211e59);
}
.home-form-wrap{
	max-width: 1400px;
	margin: 0 auto;
}
.wp-placeholder{
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	padding: 18px;
	color: #fff;
}

/* ===== HOME HERO + FORM LAYOUT OVERRIDES ===== */
.home-hero-right,
.home-form-wrap {
	width: 100%;
}

.home-form-wrap > div[id^="caja_formulario_"] {
	min-height: 0 !important;
	padding: 0 !important;
}

@media (min-width: 768px) {
	.home-hero {
		padding: 20px 20px 10px;
	}

	.home-hero-wrap {
		max-width: 1100px;
		display: grid;
		grid-template-columns: minmax(400px, 500px) minmax(0, 1fr);
		column-gap: 32px;
		align-items: start;
	}

	.home-hero-left {
		grid-column: 2;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.home-hero-right {
		display: contents;
	}

	.home-form-wrap {
		display: contents;
	}

	.home-form-wrap > div[id^="caja_formulario_"] {
		display: contents;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] {
		display: contents;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-wrap,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-grid {
		display: contents !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-col {
		width: 100%;
		max-width: none;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-col--left {
		grid-column: 1;
		grid-row: 1;
		margin: 0 !important;
		padding: 22px !important;
		border: 1px solid rgba(255, 255, 255, 0.16) !important;
		border-radius: 28px !important;
		background: rgba(255, 255, 255, 0.96) !important;
		box-shadow: 0 24px 60px rgba(4, 23, 38, 0.24);
		backdrop-filter: blur(10px);
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-col--right {
		grid-column: 2;
		grid-row: 1;
		align-self: start;
		margin-top: 0;
		padding: 0;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-desc {
		display: none !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-hero-img {
		display: none !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone {
		display: block !important;
		margin: 6px 0 0;
		max-width: 500px;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-col--right > .sys-phone {
		display: block !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone--desktop-left {
		display: none !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone__link {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 10px 12px;
		border: 1px solid rgba(13, 79, 124, 0.1);
		border-radius: 16px;
		background: rgba(225, 241, 252, 0.92);
		box-shadow: 0 10px 24px rgba(8, 35, 58, 0.05);
		backdrop-filter: blur(8px);
		text-decoration: none;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-flags {
		display: inline-flex;
		align-self: flex-start;
		gap: 0;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-flags img {
		width: 18px;
		height: 18px;
		border: 1px solid rgba(10, 42, 67, 0.08);
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone__text {
		display: inline-flex;
		align-items: center;
		gap: 0;
		color: #0f2f46;
		font-size: 0.96rem;
		font-weight: 700;
		line-height: 1.35;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone__text::before {
		content: "\f095";
		font-family: "Font Awesome 6 Free";
		font-weight: 800;
		font-size: 0.9rem;
		color: #0d4f7c;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-phone__hours {
		color: #5f7485;
		font-size: 0.88rem;
		font-weight: 600;
		line-height: 1.3;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-section-title {
		margin-bottom: 6px;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-section-title h4 {
		margin: 0;
		color: #0a2a43;
		font-size: 1.25rem;
		font-weight: 700;
		letter-spacing: -0.02em;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-selector {
		gap: 0;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-pax-row-2,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row--wrap,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-compact-inline {
		display: flex !important;
		flex-direction: column !important;
		gap: 0;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: center !important;
		align-items: stretch !important;
		gap: 12px !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row > .sys-row {
		flex: 1 1 0 !important;
		min-width: 0 !important;
		max-width: none !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row > .sys-row:only-child {
		flex: 0 1 calc(50% - 6px) !important;
		min-width: 0 !important;
		max-width: calc(50% - 6px) !important;
		margin-right: auto !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 14px !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row > .sys-row:not(:only-child)
	{
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 8px !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row > .sys-row .sys-row__control {
		width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row > .sys-row:only-child .sys-row__control {
		width: auto !important;
		flex: 0 0 auto !important;
		justify-content: flex-end !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-dates-row .sys-input--date,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] [id^="VUELTA_"] .sys-input--date {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		margin-left: 0 !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-pax-item,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row--card {
		width: 100% !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row__label {
		font-weight: 700;
		color: #15354a;
		text-align: left;
		min-width: 0 !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-pax-item,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] #selector_reserva_movil .sys-row,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] #selector_reserva_desktop .sys-row:not(.sys-row--wrap),
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row.caja_selector_pasajeros.sys-row--card,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-tickets,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row__control {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row.caja_selector_pasajeros.sys-row--card,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row.caja_selector_pasajeros.sys-row--card .sys-cancel,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row.caja_selector_pasajeros.sys-row--card .sys-row__control {
		align-items: center !important;
	}

	.activity-hero--sena .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-ticket,
	.activity-hero--arco .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-ticket {
		display: none !important;
	}

	.activity-hero--sena .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-pax-row-2,
	.activity-hero--sena .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row--wrap,
	.activity-hero--sena .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-compact-inline,
	.activity-hero--sena .home-form-wrap [id^="sys_caja_reserva_paso1_"] #selector_reserva_desktop,
	.activity-hero--arco .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-pax-row-2,
	.activity-hero--arco .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-row--wrap,
	.activity-hero--arco .home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-compact-inline,
	.activity-hero--arco .home-form-wrap [id^="sys_caja_reserva_paso1_"] #selector_reserva_desktop {
		gap: 0 !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 .sys-dates-row .sys-pax-item,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 .sys-dates-row .sys-row,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 [id^="VUELTA_"],
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 .sys-dates-row .sys-pax-item,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 .sys-dates-row .sys-row,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 [id^="VUELTA_"] {
		align-items: stretch !important;
		justify-content: flex-start !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 .sys-dates-row .sys-row__control,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 [id^="VUELTA_"] .sys-row__control,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 .sys-dates-row .sys-row__control,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 [id^="VUELTA_"] .sys-row__control {
		margin-left: 0 !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 .sys-dates-row .sys-input--date,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-17 [id^="VUELTA_"] .sys-input--date,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 .sys-dates-row .sys-input--date,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"].sys-reserva--product-91 [id^="VUELTA_"] .sys-input--date {
		margin-left: 0 !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalbox {
		display: block !important;
		margin-top: 8px !important;
		max-width: 420px;
		width: 100%;
		padding: 0;
		background: transparent !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalcard,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalpill {
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(13, 79, 124, 0.08);
		border-radius: 18px;
		box-shadow: 0 12px 28px rgba(8, 35, 58, 0.05);
		backdrop-filter: blur(6px);
		overflow: hidden;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalrow {
		min-height: 20px;
		/*padding: 9px 12px;*/
		border-bottom: 1px solid rgba(13, 79, 124, 0.06);
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalrow__label {
		color: #16384c;
		font-size: 1.02rem;
		font-weight: 700;
		letter-spacing: -0.01em;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalrow__value,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalrow__value--final,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalpill__value {
		color: #0a2a43;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalinput {
		color: #0a2a43;
		font-size: 1.15rem;
		font-weight: 700;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalrow--discount .sys-totalrow__label,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-totalinput--discount {
		color: #c11f2d !important;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-total-old {
		color: #97a3ae;
		font-size: 0.92rem;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-total-final {
		color: #12354b;
		font-size: 1.4rem;
		font-weight: 700;
		display: inline-block;
		line-height: 1.08;
		letter-spacing: 0;
		padding-right: 2px;
	}

	#sys_caja_reserva_paso1_86462 .sys-totalrow {
		padding: 0;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-actions {
		margin-top: 8px;
		max-width: 460px;
	}

	.home-hero-left ul{
		color: white;
		font-size: large;
		line-height: 32px;
		display: block;
		margin: 0 0 14px;
		max-width: 62ch;
		padding: 14px 18px 14px 42px;
		border-radius: 22px;
		background: rgba(44, 63, 119, 0.303);
		border: 1px solid rgba(255,255,255,.16);
		backdrop-filter: blur(8px);
		box-shadow: 0 10px 22px rgba(4, 23, 38, 0.12);
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-actions .sys-btn,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-actions .w-btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
		padding: 12px 18px;
		border: 1px solid #2f4ea1 !important;
		border-radius: 14px !important;
		background: #394481 !important;
		box-shadow: none !important;
		color: #fff !important;
		font-size: 1.02rem;
		font-weight: 700;
		letter-spacing: 0.01em;
		text-transform: none;
		transition: transform 0.18s ease, background 0.18s ease;
	}

	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-actions .sys-btn:hover,
	.home-form-wrap [id^="sys_caja_reserva_paso1_"] .sys-actions .w-btn:hover {
		transform: translateY(-1px);
		box-shadow: none !important;
		background: #2f3a72 !important;
	}

	.home-form-wrap [id^="selector_reserva_desktop"] {
		display: block !important;
	}

	.home-form-wrap [id^="total_mas_boton_d"] {
		display: block !important;
	}

	.home-form-wrap [id^="selector_reserva_movil"],
	.home-form-wrap [id^="total_mas_boton_m"],
	.home-form-wrap [id^="enlace_mov"] {
		display: none !important;
	}
}

/* ===== PRICING ===== */
.home-pricing{
	padding: 54px 20px;
	background: linear-gradient(135deg,#0a2a43,#0d4f7c,#1f8ac0);
}
.pricing-wrap{
	max-width: 1100px;
	margin: 0 auto;
}
.pricing-head h2{
	margin: 0 0 6px;
	font-size: clamp(1.6rem,2.2vw,2rem);
	letter-spacing: -0.02em;
	color: #fff;
	font-weight: 700;
}
.pricing-head p{
	margin: 0 0 18px;
	color: #d1d1d1;
	font-weight: 600;
	line-height: 1.6;
}
.pricing-grid{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 14px;
}
.price-card{
	border-radius: 18px;
	border: 1px solid rgba(10,42,67,.12);
	background: #fff;
	padding: 16px;
	box-shadow: 0 18px 40px rgba(0,0,0,.06);
}
.price-card-top{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
}
.price-label{
	font-weight: 700;
	color: #0a2a43;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}
.price-label span{
	margin-left: 6px;
	font-weight: 700;
	color: rgba(10,42,67,.6);
	font-size: .9rem;
}
.price-lines{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.price-line{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(31,138,192,.08);
	border: 1px solid rgba(31,138,192,.18);
	color: #0a2a43;
	font-weight: 700;
}
.price-line strong{ 
	font-weight: 700; }
.price-card-free .price-line{
	background: rgba(10,42,67,.06);
	border-color: rgba(10,42,67,.14);
}
.price-free{
	padding: 12px;
	border-radius: 14px;
	background: rgba(10,42,67,.06);
	border: 1px solid rgba(10,42,67,.14);
	color: #0a2a43;
}
.price-free strong{ 
	font-size: 1.2rem; 
	font-weight: 800; }
.price-foot{
	margin-top: 8px;
	color: rgba(10,42,67,.65);
	font-weight: 700;
	font-size: .9rem;
	line-height: 1.4;
}
@media (max-width:980px){
	.pricing-grid{ 
		grid-template-columns: 1fr; }
	.home-pricing{ 
		padding: 42px 16px; }
}

.bbp-compare{
	padding: 28px 18px;
	background: #f6f8fc;
}

.bbp-compare__wrap{
	max-width: 1100px;
	margin: 0 auto;
}

.bbp-compare__title{
	margin: 0 0 14px;
	font-size: clamp(20px, 2.2vw, 30px);
	font-weight: 700;
	color: #0b132b;
	letter-spacing: -0.02em;
}

/* CONTENEDOR */
.bbp-tableScroll{
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(11, 19, 43, 0.08);
	border: 1px solid rgba(11, 19, 43, 0.10);
	background: #fff;
	width: 100%;
}


/* tabla base */
.bbp-table{
	width: 100%;
	background: #fff;
	border-radius: 15px;
}

.bbp-table__row{
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
	width: 100%;
}

.bbp-table__cell{
	padding: 16px 12px;
	border-top: 1px solid rgba(11, 19, 43, 0.08);
	font-size: 15px;
	color: #0b132b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
}

.bbp-table__cell--crit{
	justify-content: flex-start;
	text-align: left;
	font-weight: 700;
	color: #0b132b;
}

/* Header */
.bbp-table__head .bbp-table__cell{
	border-top: 0;
	background: #1f3b73;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 14px 10px;
}

/* Columna destacada */
.bbp-table__cell--bestHead{
	background: #17315f !important;
}

.bbp-table__cell--best{
	background: #CEF2C7;
	font-weight: 700;
}

/* Pills */
.bbp-pill{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid rgba(11, 19, 43, 0.12);
	background: #ffffff;
	white-space: nowrap;
	font-size: 14px;
}

.bbp-pill--warn{ 
	color: #b42318; }
.bbp-pill--mid{ 
	color: #9a6700; }
.bbp-pill--ok{  
	color: #067647; }



/* ===== MOBILE ===== */
@media (max-width: 768px){
	.bbp-table__row{
		min-height: 72px;
	}

	.home-hero-left ul{
		display: none;
	}

	.bbp-table__cell{
		font-size: 12px;
		padding: 8px 6px;
		min-height: 72px;
		height: 100%;
		min-width: 0;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.bbp-pill{
		font-size: 11px;
		padding: 4px 8px;
		white-space: normal;
		text-align: center;
		line-height: 1.15;
		max-width: 100%;
	}

	.bbp-table__head .bbp-table__cell{
		font-size: 11px;
		min-height: 56px;
	}
}

@media (max-width: 420px){
	.bbp-table__row{
		min-height: 66px;
	}

	.bbp-table__cell{
		font-size: 11px;
		padding: 6px 4px;
		min-height: 66px;
		height: 100%;
		min-width: 0;
	}
}

/* ===== CTA HORARIOS ===== */
.horarios-cta{
	width: 100%;
	padding: 70px 20px;
	background: linear-gradient(135deg,#0a2a43,#0d4f7c,#1f8ac0);
	color: #fff;
}
.horarios-cta *{ 
	color: #fff !important; }
.horarios-cta-wrap{
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}
.horarios-text{ 
	max-width: 650px; }
.horarios-text h2{
	margin: 0 0 12px;
	font-size: clamp(1.8rem,3vw,2.6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}
.horarios-text p{
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	opacity: .95;
}
.horarios-button{
	background: #fff;
	color: #0a2a43 !important;
	padding: 16px 26px;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 10px 25px rgba(0,0,0,.25);
	transition: transform .2s ease, box-shadow .2s ease;
}
.horarios-button:hover{
	transform: translateY(-2px);
	box-shadow: 0 14px 35px rgba(0,0,0,.3);
}
@media (max-width:900px){
	.horarios-cta-wrap{ 
		flex-direction: column; 
		text-align: center; }
	.horarios-button{ 
		width: 100%; 
		max-width: 320px; }
}

/* ===== BUNDLES ===== */
.bundle-deals{
	width: 100%;
	padding: 40px 20px;
	background: #fff;
}
.bundle-wrap{
	max-width: 1100px;
	margin: 0 auto;
}
.bundle-head{ 
	margin-bottom: 22px; }
.bundle-head h2{
	margin: 0 0 10px;
	font-size: clamp(1.8rem,3vw,2.4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--deep);
}
.bundle-head p{
	margin: 0;
	max-width: 780px;
	line-height: 1.7;
	color: #3b4b57;
	font-size: 1.05rem;
}
.bundle-grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 18px;
	margin-top: 18px;
}
.deal-card{
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(10,42,67,.10);
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
	transition: transform .18s ease, box-shadow .18s ease;
}
.deal-card:hover{
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.deal-media{
	height: 190px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.deal-badge{
	position: absolute;
	top: 14px; 
	right: 14px;
	background: #e44d26;
	color: #fff;
	padding: 8px 10px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.deal-body{ 
	padding: 18px; }
.deal-meta{
	font-size: .82rem;
	font-weight: 700;
	color: var(--blue);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 8px;
}
.deal-title{
	margin: 0 0 10px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--deep);
	line-height: 1.2;
}
.deal-desc{
	margin: 0 0 16px;
	color: #435563;
	line-height: 1.6;
	font-size: 1.02rem;
}
.deal-footer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.deal-price{
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-weight: 700;
}
.deal-price .pvp{
	color: #6b7b86;
	font-size: .98rem;
}
.deal-price .pvp s{ 
	opacity: .9; }
.deal-price .now{
	color: #d53d00;
	font-size: 1.6rem;
}
.deal-kids{
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(31,138,192,.08);
	color: var(--deep);
	border-left: 4px solid var(--blue);
	padding: 10px 12px;
	border-radius: 10px;
	margin-bottom: 14px;
	font-size: .95rem;
	font-weight: 600;
}
.deal-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 12px;
	background: linear-gradient(135deg,#0d4f7c,#1f8ac0);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid rgba(0,0,0,.08);
	transition: transform .15s ease, opacity .15s ease;
	white-space: nowrap;
}
.deal-btn:hover{ 
	transform: translateY(-1px); 
	opacity: .95; }

@media (max-width:900px){
	.bundle-grid{ 
		grid-template-columns: 1fr; }
	.deal-media{ 
		height: 200px; }
	.deal-footer{ 
		flex-direction: column; 
		align-items: flex-start; }
	.deal-btn{ 
		width: 100%; }
}

/* ===== CANCEL INFO ===== */
.cancel-info{
	width: 100%;
	padding: 70px 20px;
}
.cancel-wrap{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.cancel-card{
	background: #fff;
	border-radius: 18px;
	padding: 32px;
	border: 1px solid rgba(10,42,67,.08);
	box-shadow: 0 12px 30px rgba(0,0,0,.06);
	line-height: 1.7;
	color: #2f3e4d;
}
.cancel-header{
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.cancel-icon{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg,#eaf3fb,#d7e9f7);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(10,42,67,.10);
	flex-shrink: 0;
}
.cancel-icon img{
	width: 22px; 
	height: 22px;
	object-fit: contain;
	opacity: .85;
}
.cancel-card h2{
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--deep);
}
.cancel-card p{
	margin: 0 0 16px;
	font-size: 1.05rem;
}
.cancel-card a{
	color: var(--blue);
	font-weight: 700;
	text-decoration: none;
}
.cancel-card a:hover{ 
	text-decoration: underline; }

.cancel-highlight{
	margin-top: 22px;
	padding: 18px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(31,138,192,.08), rgba(13,79,124,.08));
	border: 1px solid rgba(31,138,192,.20);
	font-size: 1rem;
	color: var(--deep);
}
.cancel-help{
	margin-top: 28px;
	padding: 18px 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border-radius: 14px;
	background: #f7fbff;
	border: 1px solid rgba(31,138,192,.18);
}
.cancel-help-icon{
	width: 36px; 
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg,#eaf3fb,#d7e9f7);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.cancel-help-icon img{ 
	width: 18px; 
	height: 18px; 
	opacity: .85; }
.cancel-help-content{
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 1rem;
}
.cancel-help-content strong{ 
	font-weight: 700; 
	color: var(--deep); }
.cancel-help-content p{ 
	margin: 0; }
.cancel-help-phone{
	margin-top: 6px;
	font-weight: 700;
	color: var(--deep);
}
.cancel-help-phone a{
	margin-left: 6px;
	color: var(--blue);
	text-decoration: none;
}
.cancel-help-phone a:hover{ 
	text-decoration: underline; }
.cancel-help-phone span{
	display: block;
	font-size: .9rem;
	color: rgba(10,42,67,.7);
}

@media (max-width:768px){
	.cancel-card{ 
		padding: 24px 20px; }
	.cancel-card h2{ 
		font-size: 1.5rem; }
	.cancel-help{ 
		flex-direction: column; 
		gap: 10px; }
}

/* ===== FEATURES ===== */
.features{
	padding: 48px 18px;
	background: var(--bg);
}
.features-wrap{
	max-width: 1100px;
	margin: 0 auto;
}
.features-grid{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px;
}
.feature{
	background: #fff;
	border: 1px solid rgba(10,42,67,.10);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.feature i{
	font-size: 20px;
	color: var(--blue);
}
.feature h3{
	margin: 10px 0 8px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--deep);
}
.feature p{
	margin: 0;
	color: #435563;
	line-height: 1.55;
	font-weight: 600;
	font-size: .95rem;
}

@media (max-width:980px){
	.features-grid{ 
		grid-template-columns: repeat(2,1fr); }
}
@media (max-width:520px){
	.features-grid{ 
		grid-template-columns: 1fr; }
}



/* =========================
FOOTER BASE
========================= */

.bb-footer{
	margin-top: 60px;
	color: #EAF4FB;
	background: linear-gradient(160deg,#0d4f7c 0%, #0a3d60 60%, #082f4a 100%);
	position: relative;
	overflow: hidden;
}

/* Línea superior */
.bb-footer__topline{
	height: 4px;
	background: linear-gradient(90deg,#1f8ac0,#5cc6ff);
}

/* Layout */
.bb-footer__wrap{
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 32px;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
}

/* =========================
BRAND
========================= */

.bb-footer__logo img{
	width: 190px;
	height: auto;
	filter: brightness(0) invert(1);
}

.bb-footer__tagline{
	margin-top: 14px;
	color: rgba(255,255,255,.75);
	font-size: .95rem;
	line-height: 1.6;
	max-width: 320px;
}

/* =========================
PHONE CARD
========================= */

.bb-footer__phone{
	margin-top: 18px;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	color: #ffffff;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	padding: 14px 16px;
	width: fit-content;
	backdrop-filter: blur(6px);
	transition: all .25s ease;
}

.bb-footer__phone:hover{
	background: rgba(255,255,255,.15);
	transform: translateY(-2px);
}

.bb-footer__phone-icon{
	font-size: 1rem;
}

.bb-footer__phone strong{
	font-size: 1.1rem;
	letter-spacing: .3px;
}

.bb-footer__phone-hours{
	font-size: .85rem;
	color: rgba(255,255,255,.7);
}

/* =========================
TITLES
========================= */

.bb-footer h4{
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
}

/* =========================
LEGAL LINKS
========================= */

.bb-footer__links{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bb-footer__links a{
	color: rgba(255,255,255,.85);
	text-decoration: none;
	font-weight: 600;
	position: relative;
	width: fit-content;
	transition: color .2s ease;
}

.bb-footer__links a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 2px;
	width: 0%;
	background: #5cc6ff;
	transition: .25s ease;
}

.bb-footer__links a:hover{
	color: #ffffff;
}

.bb-footer__links a:hover::after{
	width: 100%;
}

/* =========================
METODO DE PAGO
========================= */

.bb-footer__paybox{
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	padding: 16px;
	backdrop-filter: blur(6px);
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s ease;
}

.bb-footer__paybox:hover{
	background: rgba(255,255,255,.15);
}

.bb-footer__paybox img{
	height: 34px;
	display: block;
}

.bb-footer__secure{
	display: block;
	margin-top: 10px;
	font-size: .9rem;
	color: rgba(255,255,255,.7);
	font-weight: 600;
}

/* =========================
BOTTOM
========================= */

.bb-footer__bottom{
	border-top: 1px solid rgba(255,255,255,.15);
	text-align: center;
	padding: 18px;
	font-size: .9rem;
	color: rgba(255,255,255,.65);
	letter-spacing: .3px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:900px){

	.bb-footer__wrap{
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.bb-footer__brand,
	.bb-footer__links,
	.bb-footer__payments{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.bb-footer__logo{
		display: block;
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}

	.bb-footer__links{
		align-items: center;
	}

	.bb-footer__paybox{
		margin-left: auto;
		margin-right: auto;
	}

	.bb-footer__phone{
		align-self: center;
	}

	.bb-footer__tagline{
		margin-left: auto;
		margin-right: auto;
	}
}

