/*GENERAL*/
:root{
	--bg1:#ffbc02;
	--bg2:#fff0c3;
	--bg3:#fff;
	--bg4:#FFF8E2;
	--bg5:#f8f7f6;
	
	--tc1:#2c2c2c;
	--tc2:#2c2c2c;
	--tc3:#ffffff;
	
	--ts1:35px;
	--ts2:22px;
	--ts3:20px;
	--ts4:18px;
	--ts5:16px;
	
	--radius:20px;
	--mg-bottom:100px;
}
@media (max-width: 800px){
	:root{
			--mg-bottom:80px;
	}	
}
html{
scroll-behavior:smooth;
}
:target{
	scroll-margin-top:80px;
}
body{
	background:var(--bg3);
	max-width:1200px;
	margin:0 auto;
	font-family: "Nunito", sans-serif;
	color:var(--tc1);
}
main{
	padding:0 25px;
}
.container{
	width:100%;
}
h1,h2{
	line-height:1.3;
	margin:0px;
	font-weight:600;
}
h3,p,a{
	margin:0px;
	line-height:1.5;
}
p{
	text-align:jus;
}
ul, li{
	list-style:none;
	padding:0px;
}
a{
	text-decoration:none;
	color: var(--tc1);
}
button, input, select{
	border:0px;
	cursor:pointer;
	font-family: "Nunito", sans-serif;
	box-sizing:border-box;
}

.cta-button{
	padding:10px 20px;
	background-color:var(--bg1);
	color:var(--tc3);
	font-size:18px;
	font-weight:600;
	border-radius:100px;
	width:fit-content;
	display:flex;
	justify-content:center;
	align-items:center;
	box-sizing:border-box;
}
@media (max-width: 800px){
	main{
		max-width:650px;
		margin:0 auto;
		padding:0px 15px;
	}
	.cta-button{
	padding:8px 18px;
	background-color:var(--bg1);
	color:var(--tc3);
	font-size:16px;
	font-weight:600;
	border-radius:100px;
}
}
/*HEADER*/
.header{
	display:flex;
	padding:25px;
	position:relative;
	align-items:center;
}

.header .logo{
	display:flex;
	align-items:center;
}

.header .logo img{
	width:200px;
	height:auto;
}

.header .menu{
	margin-left:auto;
	display:flex;
	gap:25px;
	align-items:center;
}

.header .menu-nav{
	display:flex;
	align-items:center;
	font-size:var(--ts4);
	font-weight:600;
}

.header .menu-item{
	position:relative;
	display:flex;
	align-items:center;
}

.header .menu-link{
	display:flex;
	align-items:center;
	padding:10px 12px;
	border-radius:12px;
}

.header .menu-caret{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-left:6px;
}

.header .menu-item:hover .menu-caret svg,
.header .menu-item:focus-within .menu-caret svg{
	transform:rotate(180deg);
	transition:transform .2s ease;
}

.header .menu-sub{
	position:absolute;
	top:100%;
	left:0;
	min-width:220px;
	background:var(--bg3);
	border-radius:14px;
	padding:8px;
	box-shadow:0 20px 60px rgba(0,0,0,.18);
	opacity:0;
	pointer-events:none;
	transform:translateY(10px);
	transition:opacity .2s ease, transform .2s ease;
	z-index:50;
}

.header .menu-item:hover .menu-sub,
.header .menu-item:focus-within .menu-sub{
	opacity:1;
	pointer-events:auto;
	transform:translateY(0);
}

.header .menu-sublink{
	display:flex;
	align-items:center;
	padding:10px 12px;
	border-radius:12px;
	white-space:nowrap;
}

.header .menu-cta{
	display:flex;
	gap:15px;
	background-color:var();
}

.header .menu-cta a{
	display:flex;
	align-items:center;
	font-size:16px;
}

.cta-button.menu-cta-call{
	background-color: transparent;
	border: 2px solid var(--bg1);
	color: var(--tc1);
}

.nav-toggle{
	position:absolute;
	opacity:0;
	pointer-events:none;
}

.nav-toggle-btn{
	display:none;
	align-items:center;
	justify-content:center;
	width:44px;
	height:44px;
	border-radius:12px;
	cursor:pointer;
	user-select:none;
}
.nav-toggle-btn svg{
	height:28px;
	width:28px;
}
.menu-overlay{
	display:none;
}

.menu-drawer{
	display:none;
}

.menu-drawer-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:20px;
	border-bottom:1px solid rgba(0,0,0,.08);
}

.menu-drawer-logo{
	display:flex;
	align-items:center;
}

.menu-drawer-logo img{
	width:160px;
	height:auto;
}

.menu-close-btn{
	display:flex;
	align-items:center;
	justify-content:center;
	width:44px;
	height:44px;
	border-radius:12px;
	cursor:pointer;
	user-select:none;
}

.menu-drawer-content{
	padding:20px;
}

.menu-subtoggle{
	position:absolute;
	opacity:0;
	pointer-events:none;
}

.menu-subbtn{
	display:none;
}

@media (max-width: 1100px){
	header{
		position: sticky;
		top: 0;
		z-index: 9997;
		background: var(--bg3);
	}

	.header{
		position: relative;
		padding:15px;
	}
	.nav-toggle-btn{
		display:flex;
	}

	.header .menu-nav{
		display:none;
	}

	.header .logo img{
		width:120px;
	}

	.menu-overlay{
		display:block;
		position:fixed;
		inset:0;
		background:rgba(0,0,0,.45);
		opacity:0;
		pointer-events:none;
		transition:opacity .25s ease;
		z-index:9998;
	}

	.menu-drawer{
		display:block;
		position:fixed;
		top:0;
		left:0;
		height:100vh;
		width:min(85vw, 340px);
		background:var(--bg3);
		transform:translateX(-105%);
		transition:transform .25s ease;
		z-index:9999;
		box-shadow: 0 20px 60px rgba(0,0,0,.25);
	}

	.nav-toggle:checked ~ .menu-overlay{
		opacity:1;
		pointer-events:auto;
	}

	.nav-toggle:checked ~ .menu-drawer{
		transform:translateX(0);
	}

	.menu-drawer .menu-nav{
		display:flex;
		flex-direction:column;
		gap:0;
		align-items:stretch;
		font-size:var(--ts4);
		font-weight:600;
	}

	.menu-drawer .menu-item{
		border-bottom:1px solid rgba(0,0,0,.08);
	}

	.menu-drawer .menu-link{
		display:block;
		width:100%;
		padding:14px 0;
	}

	.menu-drawer .menu-item.has-sub{
		display:grid;
		grid-template-columns:1fr 44px;
		align-items:center;
	}

	.menu-drawer .menu-item.has-sub .menu-link{
		padding-right:10px;
	}

	.menu-drawer .menu-subbtn{
		display:flex;
		align-items:center;
		justify-content:center;
		width:44px;
		height:44px;
		cursor:pointer;
		user-select:none;
	}

	.menu-drawer .menu-subbtn svg{
		transition:transform .2s ease;
	}

	.menu-drawer .menu-sub{
		position:static;
		min-width:0;
		background:transparent;
		padding:0 0 12px 14px;
		box-shadow:none;
		border-radius:0;
		opacity:1;
		pointer-events:auto;
		transform:none;
		display:none;
		grid-column:1 / -1;
	}

	.menu-drawer .menu-subtoggle:checked + .menu-subbtn svg{
		transform:rotate(180deg);
	}

	.menu-drawer .menu-subtoggle:checked ~ .menu-sub{
		display:block;
	}

	.menu-drawer .menu-sublink{
		display:block;
		padding:10px 0;
		font-weight:500;
		opacity:.85;
	}
	.header .menu-cta{
		gap:8px;
	}
	.header .cta-button{
	padding:5px 10px;
	font-size:14px!important;
}
	.header .menu-cta-call{
		position:fixed;
		bottom:30px;
		right:30px;
		z-index:100;
		background-color:white;
		font-size:20px!important;
	}
}

/*HEAD BASIC*/
.head-basic{
	text-align:center;
	
	margin:0 auto;
	margin-bottom:var(--mg-bottom);
	padding:70px 25px;
	background-color:var(--bg4);
	border-radius:var(--radius);
}
.head-basic .section-head{
	margin:0px;
	max-width:600px;
	margin:0 auto;
}

/*SECTION HEAD (SH)*/
.section-head{
	display:grid;
	margin-bottom:40px;
	text-align:center;
	grid-gap:15px;
}
.sh-subtitle{
	font-weight:300;
	font-size:var(--ts3);
	color:var(--tc2);
}
.sh-badge svg{
	height:22px;
	width:auto;
}
.sh-title{
	font-size:28px;
}

/*HERO*/
.hero{
	background-color:var(	--bg4);
	padding:50px 50px;
	border-radius:25px;
	margin-bottom:var(--mg-bottom);
}
.hero .grid{
	display:grid;
	grid-template-columns:50% auto;
	grid-gap:40px;
	margin:0 auto;
}
.hero .grid .text{
	display:flex;
	flex-direction:column;
	align-items:left;
	justify-content:center;
	gap:20px;
}
.hero .grid .text .badge{
display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color:;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 550;
    line-height: 1;
    width: fit-content;
	gap:5px;
	color:var(--bg1);
	border:2px solid #ffbc0366;
}
.hero .grid .text .badge-text{
	line-height:1;
}
.hero .grid .text .badge svg{
	height:18px;
	width:18px;
}
.hero .grid .text h1{
	font-size:36px;
	line-height:1.2;
}
.hero .grid .text h2{
	font-size:20px;
	line-height:1.4;
	font-weight:300;
}
.hero .grid .text .cta{
	display:flex;
	grid-template-columns:1fr 1fr;
	text-align:center;
	align-items:center;
	gap:20px;
	font-weight:500;
	font-size:16px;
}
.hero .grid .text .cta a{
	width:fit-content;
			border:2px solid transparent;
}
.hero .grid .text .cta .cta-1{

}
.hero .grid .text .cta .cta-2{
	background-color:var(--bg2);
	border:1px solid var(--bg1);
	color:var(--tc1);
	color:#3b3b3b;
}
.hero-territorios-title{
	color: #d89f00;
    margin-bottom: 10px;
    font-size: 15px;
}
.hero .grid .media{
 background-color: var(--bg2);
  aspect-ratio: 4 / 3;
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.hero.has-media .media{background:transparent}

.hero .grid .media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px){
		.hero .grid .text .cta{
		display:grid;
		grid-template-columns:1fr;
			width:100%;
	}
	.hero .grid .text .cta a{
		width:100%;
	}
}
@media (max-width: 800px) {
	.hero{
		padding:25px;
	}
.hero .grid .text h1{
	font-size:32px;
}
.hero .grid .text h2{
	font-size:20px;
}
.hero .grid .text .cta{
	display:grid;
	grid-gap:15px;
	grid-template-columns:1fr;
	text-align:center;
}
	.hero .grid{
	display:grid;
	grid-template-columns:1fr;
}
}

/*EXPANSION*/
.container-exp{
	width:100%;
	margin:0 auto;
}
.header-exp{
	width:100%;
	margin:0 auto;
	display:flex;
	justify-content:center;
	padding:25px;
}
.header-exp .logo{
	width:200px;
	height:auto;
}
.hero-exp{
	text-align:center;
	display:grid;
	max-width:800px;
	margin:0 auto;
	margin-bottom:80px;
}
.hero-exp .subtitle{
	color:var(--tc2);
	font-weight:350;
	font-size:20px;
	margin-bottom:10px;
}
.hero-exp .title{
	font-size:54px;
	font-weight:700;
	line-height:1.2;
	letter-spacing:-0.5px;
	margin-bottom:25px;
	margin:0 auto 25px;

}
.hero-exp .cta{
	background-color:var(--bg1);
	width:fit-content;
	margin:0 auto;
	padding:10px 25px;
	border-radius:100px;
	color:var(--bg2);
	font-size:18px;
	font-weight:600;
}

/*MEDIA LOGOS*/
.section-media{
	margin-bottom:var(--mg-bottom);
}
.sm-title{
	text-align:center;
	margin-bottom:25px;
	font-size:16px;
	color:var(--tc2);
	font-weight:400;
}
.sm-logos{
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
	grid-gap:90px;
	max-width:720px;
	margin:0 auto;
}

.sm-logo{
	display:flex;
	align-items:center;
	justify-content:center;
	min-width:0;
}

.sm-logo img{
	max-height:28px;
	width:auto;
	max-width:100%;
	height:auto;
	object-fit:contain;
	display:block;
}

/*FEATURES*/
.section-features{
margin-bottom:var(--mg-bottom);
}
.sf-grid{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	grid-gap:25px;
}
.sf-card{
	background-color:var(	--bg4);
	padding:25px;
	border-radius:var(--radius);
}
.sf-icon{
	height:90px;
	width:90px;
	background-color:var(--bg2);
	border-radius:100px;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:25px;
}
.sf-icon svg{
	height:40px;
	width:auto;
	color:var(--bg1);
}
.sf-subtitle{
	font-size:var(--ts3);
	font-weight:600;
	color:var(--tc1);
	margin-bottom:6px;
}
.sf-text{
	font-weight:300;
}

@media (max-width: 800px){
	.sf-grid{ grid-template-columns: 1fr; }
}

/*Z LAYOUT*/
.section-z{
	margin-bottom:var(--mg-bottom);
	display:grid;
	grid-gap:80px;
	background-color:var(--bg4);
	padding:50px;
	border-radius:var(--radius);
}
.section-z.is-transparent{
	background-color:transparent;
	padding:0px;
}
.sz-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	grid-gap:70px;
	align-items:center;
}

.sz-grid:nth-child(even){
	direction: rtl;
}

.sz-grid:nth-child(even) > *{
	direction: ltr;
}

.section-z.is-invert .sz-grid:nth-child(even){
	direction:ltr;
}

.section-z.is-invert .sz-grid:nth-child(odd){
	direction: rtl;
}

.section-z.is-invert .sz-grid:nth-child(odd) > *{
	direction: ltr;
}

.sz-text{
	display:grid;
	grid-gap:15px;
}

.sz-title{
	font-size:28px;
	line-height:1.2;
}

.sz-par{
	font-size:var(--ts4);
	color:var(--tc1);
	font-weight:300;
}
.sz-checklist{
	display:grid;
	gap:15px;
}
.sz-checkitem{
display: grid;
    grid-template-columns: 45px auto;
    align-items: center;
    gap: 15px;
}
.sz-checkicon{
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:var(--bg2);
	border-radius:100px;
	height:45px;
	width:45px;
}
.sz-checktext{
	display:flex;
	align-items:center;	
	font-size:var(--ts4);
	font-weight:400;
}
.sz-media{
	
}

.sz-frame{
	background-color:;
	aspect-ratio:4/3;
	border-radius:var(--radius);
	overflow:hidden;
	position:relative;
}
.sz-grid.has-media .sz-frame{background:transparent}
.sz-frame img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}

@media (max-width: 800px){
	.section-z{
		padding:35px 25px;
	}
	.sz-grid{
		grid-template-columns:1fr;
		grid-gap:30px;
	}
	.sz-grid:nth-child(even),
	.section-z.is-invert .sz-grid:nth-child(odd){
		direction:ltr;
	}
	.section-z.is-invert .sz-text{
		order:2;
	}
	.section-z.is-invert .sz-media{
		order:1;
	}
}


/* TESTIMONIOS */
.section-testimonials{
	margin-bottom: var(--mg-bottom);
	display:grid;
}

.st-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
		max-width:950px;
	margin:0 auto;
}

.st-card{
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	background-color: var(--bg4);
	display: grid;
}

.st-media{
	aspect-ratio: 1/1;
	background-color:var(--bg2);
}

.st-media img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	-webkit-user-drag: none;
}

.st-overlay{
	padding: 25px;
}

.st-nameRow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.st-name{
	font-weight: 600;
	font-size:var(--ts3);
}

.st-role{
	color: var(--tc2);
	font-weight:400;
}

.st-quote{
	margin-top: 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-weight:300;
}

.st-verified{
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: #1D9BF0;
}

.section-testimonials .cta-button{
margin:50px auto 0px auto;
}
@media (max-width: 800px){
	.st-grid{ grid-template-columns: 1fr; }
}

/* CUIDADORES */
.section-cuidadores{
	margin-bottom: var(--mg-bottom);
	display:grid;
}

.cuidadores-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
	max-width:950px;
	margin:0 auto;
}

.sc-card{
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	background-color: var(--bg4);
	display: grid;
}

.sc-media{
	aspect-ratio: 1/1;
	background-color:var(--bg2);
}

.sc-media img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	-webkit-user-drag: none;
}

.sc-overlay{
	padding: 25px;
}

.sc-nameRow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.sc-name{
	font-weight: 600;
	font-size:var(--ts3);
}

.sc-role{
	color: var(--tc2);
	font-weight:400;
}

.sc-quote{
	margin-top: 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-weight:300;
}

.sc-verified{
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	fill: #1D9BF0;
}

.section-cuidadores .cta-button{
	margin:50px auto 0px auto;
}

@media (max-width: 800px){
	.cuidadores-grid{ grid-template-columns: 1fr; }
}

/* UBICACIONES */
.section-ubicaciones{
	margin-bottom: var(--mg-bottom);
	display: grid;
}

.su-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px;
}


@media (max-width: 800px){
	.section-ubicaciones .su-grid{
		grid-template-columns: 1fr;
	}
}

/* SERVICIOS */
.section-services{
	margin-bottom: var(--mg-bottom);
	display: grid;
}

.section-services .sv-grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
			max-width:950px;
	margin:0 auto;
	gap: 25px;
}

.section-services .sv-card{
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	background-color: var(--bg4);
	display: grid;
}

.section-services .sv-media{
	aspect-ratio: 1/1;
	background-color: var(--bg2);
}

.section-services .sv-media img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	-webkit-user-drag: none;
}

.section-services .sv-overlay{
	padding: 25px;
}

.section-services .sv-titleRow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.section-services .sv-title{
	font-weight: 600;
	font-size: var(--ts3);
}

.section-services .sv-desc{
	margin-top: 8px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-weight: 300;
}
.sv-link{
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	justify-content:right;
}

.sv-linkIcon{
	flex: 0 0 auto;
}
.section-services .cta-button{
	margin: 50px auto 0px auto;
}

@media (max-width: 800px){
	.section-services .sv-grid{
		grid-template-columns: 1fr;
	}
}

/*FOTOS*/
.footer-exp{
	color:var(--tc2);
	font-size:14px;
	padding:40px;
	display:flex;
	justify-content:center;
	margin-top:80px;
}

/*SINGLE POST*/
.post {
--container: 750px;
--line: #e5e7eb;
--soft: #FFF8E2;
--accent-soft: #f3f4f6;
--radius: 20px;
--shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
padding: 25px;
}

.post,
.post * {
box-sizing: border-box;
}

.post .post__wrap {
max-width: var(--container);
margin: 0 auto;
}

.post .post__article {
background: #fff;
}

.post .post__top {
position: static !important;
top: auto !important;
z-index: auto !important;
margin-bottom: 20px;
text-align: left;
}

.post .post__eyebrow {
margin-bottom:10px;
	font-size:14px;
	color:grey;
	font-weight:300;
	display:flex;
	gap:15px;
}

.post .post__eyebrow-category a {
text-decoration: none;
	color:grey;
	background-color:var(--bg5);
	padding:4px 8px;
	border-radius:999px;
}

.post .post__eyebrow a:hover {
text-decoration: underline;
}

.post .post__title {
position: static !important;
top: auto !important;
font-size: 42px;
line-height: 1.08;
letter-spacing: -0.03em;
font-weight: 600;
margin: 0 0 16px;
text-wrap: ;
}

.post .post__meta {
font-size: 14px;
	color:grey;
	display:flex;
	gap:15px;
}

.post .post__media {
margin-bottom:25px;
}

.post .post__media-frame {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
border-radius: 22px;
overflow: hidden;
box-shadow: var(--shadow);
background: #f3f4f6;
}

.post .post__media-frame img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}
.post__excerpt{
	margin-bottom:25px;
	font-weight:300;
	font-size:17px;
}
.post .post__toc {
background: var(--soft);
border-radius: var(--radius);
padding: 25px;
margin: 0 0 34px;
}

.post .post__toc-title {
font-size: 14px;
font-weight: 500;
line-height: 1.3;
margin: 0 0 18px;
	color:#ebad00;
}

.post .post__toc-list,
.post .post__toc-sublist {
list-style: none;
margin: 0;
padding: 0;
	margin-left:15px;
	font-weight:500;
}

.post .post__toc-list > li + li {
margin-top: 10px;
}

.post .post__toc-sublist {
margin-top: 8px;
padding-left: 16px;
border-left: 2px solid var(--bg1);
	font-weight:300;
}

.post .post__toc-sublist li + li {
margin-top: 7px;
}

.post .post__toc a {
text-decoration: none;
line-height: 1.3;
}

.post .post__toc a:hover {
text-decoration: underline;
}

.post .entry-content {
font-size: 18px;
line-height: 1.9;
}

.post .entry-content > *:first-child {
margin-top: 0;
}

.post .entry-content > *:last-child {
margin-bottom: 0;
}

.post .entry-content p,
.post .entry-content ul,
.post .entry-content ol,
.post .entry-content blockquote,
.post .entry-content table,
.post .entry-content .wp-block-image,
.post .entry-content figure {
margin-top: 0;
margin-bottom: 1.35em;
}

.post .entry-content h2,
.post .entry-content h3,
.post .entry-content h4,
.post .entry-content h5,
.post .entry-content h6 {
line-height: 1.2;
letter-spacing: -0.02em;
scroll-margin-top: 110px;
font-weight: 600;
}

.post .entry-content h2 {
font-size: 30px;
margin: 2.2em 0 0.65em;
}

.post .entry-content h3 {
font-size: 24px;
margin: 1.8em 0 0.6em;
}

.post .entry-content h4 {
font-size: 24px;
margin: 1.6em 0 0.55em;
}

.post .entry-content p {
text-wrap: pretty;
font-weight: 300;
}

.post .entry-content a {
text-decoration-thickness: 1px;
text-underline-offset: 2px;
}

.post .entry-content a:hover {
text-decoration: underline;
}

.post .entry-content strong {
font-weight: 700;
}

.post .entry-content ul,
.post .entry-content ol {
padding-left: 1.35em;
}

.post .entry-content li + li {
margin-top: 0.4em;
}

.post .entry-content blockquote {
border-left: 4px solid var(--bg1);
padding: 15px;
font-style: italic;
background: var(--bg4);
border-radius: 0 12px 12px 0;
	margin:0px;
}
.post .entry-content blockquote p{
	margin:0px;
}
.post .entry-content li{
	list-style:disc;
}
.post .entry-content img {
max-width: 100%;
height: auto;
border-radius: 14px;
}

.post .entry-content figure {
margin-left: 0;
margin-right: 0;
}

.post .entry-content figcaption,
.post .entry-content .wp-caption-text {
font-size: 14px;
line-height: 1.6;
margin-top: 10px;
text-align: center;
	color:grey;
	font-weight:300;
}

.post .entry-content .wp-block-table,
.post .entry-content figure.wp-block-table {
width: 100%;
max-width: 100%;
overflow-x: auto;
margin-bottom: 1.5em;
}

.post .entry-content table {
width: 100%;
min-width: 100%;
border-collapse: separate;
border-spacing: 0;
table-layout: auto;
border: 1px solid var(--line);
border-radius: 12px;
overflow: hidden;
}
.post .entry-content table thead th{
	background-color:var(--bg5);
	border-color:var(--line);
}
.post .entry-content table tbody td{
	border-color:var(--line);
}

.post .entry-content table th,
.post .entry-content table td {
padding: 12px 14px;
border-bottom: 1px solid var(--line);
text-align: left;
vertical-align: top;
white-space: normal;
word-break: normal;
	font-size:16px;
}

.post .entry-content table tr:last-child td {
border-bottom: 0;
}

.post .entry-content table th {
background: #f9fafb;
font-weight: 600;
}

.post .post__footer {
margin-top: 44px;
padding-top: 24px;
border-top: 1px solid var(--line);
}

.post .post__tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 28px;
}

.post .post__tag {
display: inline-flex;
align-items: center;
padding: 8px 12px;
border-radius: 999px;
background: var(--accent-soft);
font-size: 14px;
line-height: 1;
text-decoration: none;
}

.post .post__tag:hover {
background: #e5e7eb;
}

@media (max-width: 768px) {
.post {
padding: 15px 0px 15px;
}

.post .post__top,
.post .post__eyebrow,
.post .post__title,
.post .post__media {
position: static !important;
top: auto !important;
transform: none !important;
}

.post .entry-content {
font-size: 17px;
line-height: 1.82;
}

.post .post__title {
font-size: clamp(1.7rem, 7vw, 2.15rem);
}

.post .post__media-frame {
aspect-ratio: 16 / 9;
border-radius: 18px;
}

.post .post__toc {
padding: 18px;
}

.post .entry-content .wp-block-table,
.post .entry-content figure.wp-block-table {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.post .entry-content table {
min-width: 640px;
}
}
/*LEGAL*/
.container-legal{
  background-color: var(--bg4);
  padding: 25px;
  border-radius: 25px;
  text-align: justify;
	max-width:800px;
	margin:0 auto;
}
.legal-title{
	font-size:26px;
	margin-bottom:10px;
}
.legal-content p{
	margin-bottom:10px;
}

/* COMPARATIVE */
.section-comparative{
	margin-bottom:var(--mg-bottom);
	display:grid;
	grid-gap:25px;
}

.sc-grid{
	background-color:var(--bg4);
	padding:50px;
	border-radius:var(--radius);

	display:grid;
	grid-template-columns:1fr 1fr;
	grid-gap:25px;
	align-items:stretch;
}

.sc-table{
	background:#ffffff;
	border-radius:var(--radius);
	padding:35px;
	display:grid;
	grid-gap:15px;
}

.sc-chip{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	background-color:var(--bg2);
	border-radius:999px;
	padding:8px 12px;
	font-size:16px;
	font-weight:500;
	line-height:1;
	width:fit-content;
	margin-bottom:15px;
}

.sc-title{
	font-size:22px;
	line-height:1.2;
}

.sc-content{
	font-size:var(--ts4);
	color:var(--tc1);
	font-weight:300;
}

.sc-list{
	display:grid;
	gap:15px;
	margin:0;
	padding:0;
	list-style:none;
}

.sc-item{
	display:grid;
	grid-template-columns:45px auto;
	align-items:center;
	gap:15px;
}

.sc-icon{
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:var(--bg2);
	border-radius:100px;
	height:45px;
	width:45px;
}

.sc-text{
	display:flex;
	align-items:center;
	font-size:var(--ts4);
}

@media (max-width: 800px){
	.sc-grid{
		grid-template-columns:1fr;
		padding:35px 25px;
	}
	.sc-table{
		padding:25px;
	}
}

	/*CONTACTO*/
	.contact{
		display:grid;
		grid-template-columns:1fr 1fr;
		grid-gap:70px;
		background-color:var(	--bg4);
		padding:50px;
		border-radius:var(--radius);
		margin-bottom:var(--mg-bottom);
	}
	.contact .text .title{
		font-size: 28px;
		font-weight: 600;
		margin-bottom: 15px;
	}
	.contact .text p{
		text-align:justify;
		font-size:17px;
		margin-bottom:35px;
	}
	.contact .text .cta{
		display:grid;
		grid-gap:15px;
	}
	.contact .cta-button{
		width:100%;
		gap:10px;
	}
	.contact .text .cta .cta-2{
		background-color:var(--bg2);
		border:1px solid var(--bg1);
		color:var(--tc1);
		color:#3b3b3b;
	}
	.contact form{
		border-radius:25px;
	}
	.contact-form .title-form{
		font-weight: 600;
		margin-bottom: 20px;
		font-size: var(--ts3);
	}
	.contact form input, .contact form textarea, select{
		width:100%;
		background-color:white;
		border:1px solid var(--text-);
		border-radius:100px;
		padding:15px;
		margin-bottom:15px;
		resize: none;
		font-size:var(--ts5);
	}
	.contact form input::placeholder, .contact form textarea::placeholder{
		color:var(--tc2);
	}

	.wpcf7-spinner{
		display:none;
	}
	.contact form .wpcf7-list-item{
		display:flex;
		font-size:14px;
		align-items:center;
		justify-content:;
		gap:5px;
	}
	.contact form .contact-privacy{
		width: fit-content;
		margin:0px;
		margin-right:5px;
	}
	.contact form .wpcf7-list-item a{
		text-decoration:underline;
	}

	.contact form select{
		width:100%;
		background-color:white;
		border:1px solid var(--text-);
		padding:15px;
		margin-bottom:15px;
		resize:none;
		font-size:var(--ts5);
		color:var(--tc2);
		appearance:none;
		-webkit-appearance:none;
		-moz-appearance:none;
	}

	.contact form select:invalid{
		color:var(--tc2);
	}

	.contact form select{
		background-image: linear-gradient(45deg, transparent 50%, var(--tc2) 50%), linear-gradient(135deg, var(--tc2) 50%, transparent 50%);
		background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
		background-size: 6px 6px, 6px 6px;
		background-repeat: no-repeat;
		padding-right: 44px;
	}

	.contact form .contact-upload{
		margin-bottom:25px;
	}

	.contact form .contact-upload-title p{
		font-weight:600;
		font-size:var(--ts5);
		color:var(--tc2);
		text-align:center;
		padding-bottom:8px;
	}

	.contact form .contact-upload p{
		margin:0;
	}

	.contact form .contact-upload-box{
		position:relative;
		width:100%;
		min-height:56px;
		padding:18px;
		border-radius:var(--radius);
		border:2px solid var(--bg2);
		background:#fff;
		display:flex;
		align-items:center;
		justify-content:center;
		text-align:center;
		cursor:pointer;
		user-select:none;
	}

	.contact form .contact-upload-box span{
		color:var(--tc2);
		font-size:var(--ts5);
		line-height:1.2;
	}

	.contact form .contact-upload-box .wpcf7-form-control-wrap{
		position:absolute;
		inset:0;
		margin:0;
	}

	.contact form .contact-upload-box input[type="file"]{
		position:absolute;
		inset:0;
		width:100%;
		height:100%;
		opacity:0;
		cursor:pointer!important;
	}

	.contact form .contact-upload-box:hover{
		border-color:var(--bg4);
	}

	.contact form .contact-upload-box:focus-within{
		border-color:var(--bg3);
		outline:none;
	}

	form .cta-button{
		margin-top:15px;
	}

	.tel-field p{
		display:flex;
		gap:5px;
	}
	.tel-field .wpcf7-form-control-wrap{
		width:fit-content;
	}

	@media (max-width: 800px) {
		.contact .text .title{
			font-size:;
		}
		.contact{
			grid-template-columns:1fr;
			grid-gap:40px;
			padding:50px 25px;
		}
		.contact .text .cta-wsp{
			justify-content:center;
			width:100%;
			font-size:15px;
		}
		.contact form{
			max-width:100%;
		}
	}

	/* ✅ EXTRA: soporte al selector custom SIN romper lo que ya tienes */
	.tel-field{
		display:flex;
		gap:5px;
		align-items:stretch;
	}

	/* el teléfono ocupa el resto */
	.tel-field .wpcf7-form-control-wrap[data-name="telefono"]{
		flex:1;
		width:auto;
	}
	.tel-field .wpcf7-form-control-wrap[data-name="telefono"] input{
		width:100%;
	}

	/* Selector custom (botón + dropdown) */
	.tel-country{
		position:relative;
		flex:0 0 auto;
	}

	.contact form .tel-country__btn{
		display:flex;
		align-items:center;
		gap:10px;
		width:auto;
		background-color:white;
		border:1px solid var(--text-);
		border-radius:100px;
		padding:15px;
		font-size:var(--ts5);
		cursor:pointer;
		white-space:nowrap;
	}

	.tel-country__flag{
		width:20px;
		height:20px;
		flex:0 0 20px;
		border-radius:999px;
		overflow:hidden;
		display:flex;
		align-items:center;
		justify-content:center;
	}
	.tel-country__flag img{
		width:100%;
		height:100%;
		object-fit:cover;
		display:block;
	}

	.tel-country__code{
		color:var(--tc2);
	}

	.tel-country__sr{
		position:absolute;
		width:1px;
		height:1px;
		padding:0;
		margin:-1px;
		overflow:hidden;
		clip:rect(0, 0, 0, 0);
		white-space:nowrap;
		border:0;
	}

	.tel-country__dropdown{
	position: absolute;
    left: 0;
    top: calc(100% - 10px);
    background: #fff;
    border-radius: var(--radius);
    padding: 6px;
    min-width: 240px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

	/* ✅ UX: altura limitada + scroll */
	max-height: 280px;
	overflow:auto;
	overscroll-behavior: contain;

	/* scrollbar fino */
	scrollbar-width: thin;
	}

	.tel-country__dropdown::-webkit-scrollbar{
		width: 10px;
	}
	.tel-country__dropdown::-webkit-scrollbar-thumb{
		background: rgba(0,0,0,.12);
		border-radius: 999px;
		border: 3px solid #fff;
	}
	.tel-country__dropdown::-webkit-scrollbar-track{
		background: transparent;
	}

	.tel-country__opt{
		width:100%;
		display:flex;
		align-items:center;
		gap:10px;
		padding:10px 12px;
		border-radius:12px;
		background:transparent;
		border:0;
		cursor:pointer;
		text-align:left;
		font-size:var(--ts5);
	}
	.tel-country__opt:hover{
		background:var(--bg4);
	}
	.tel-country__opt .name{
		color:var(--tc2);
	}

	/* ✅ Reutilizable: SELECT custom para cualquier <select class="js-pretty-select"> */
	.pretty-select{
		position:relative;
		width:100%;
		margin-bottom:15px;
	}
	.pretty-select select.js-pretty-select{
		position:absolute !important;
		opacity:0 !important;
		pointer-events:none !important;
		width:1px !important;
		height:1px !important;
		left:-9999px !important;
	}

	.contact form .pretty-select__btn{
		display:flex;
		align-items:center;
		justify-content:space-between;
		gap:10px;
		width:100%;
		background-color:white;
		border:1px solid var(--text-);
		border-radius:100px;
		padding:15px;
		font-size:var(--ts5);
		cursor:pointer;
	}

	.pretty-select__value{
		color:var(--tc2);
	}

	.pretty-select__caret{
		width: 10px;
		height: 10px;
		display:inline-block;
		transform: rotate(45deg);
		border-right:2px solid var(--tc2);
		border-bottom:2px solid var(--tc2);
		margin-right:6px;
	}

	.pretty-select__dropdown{
		position:absolute;
		left:0;
		top: calc(100% - 10px);
		width:100%;
		background:#fff;
		border-radius: var(--radius);
		padding: 6px;
		z-index: 999;
		box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

		/* ✅ UX: altura limitada + scroll */
		max-height: 280px;
		overflow:auto;
		overscroll-behavior: contain;

		scrollbar-width: thin;
	}
	.pretty-select__dropdown::-webkit-scrollbar{
		width: 10px;
	}
	.pretty-select__dropdown::-webkit-scrollbar-thumb{
		background: rgba(0,0,0,.12);
		border-radius: 999px;
		border: 3px solid #fff;
	}
	.pretty-select__dropdown::-webkit-scrollbar-track{
		background: transparent;
	}

	.pretty-select__opt{
		width:100%;
		display:flex;
		align-items:center;
		gap:10px;
		padding:10px 12px;
		border-radius:12px;
		background:transparent;
		border:0;
		cursor:pointer;
		text-align:left;
		font-size:var(--ts5);
	}
	.pretty-select__opt:hover{
		background:var(--bg4);
	}
	.pretty-select__opt[aria-selected="true"]{
		background:var(--bg4);
	}


/*FAQS*/
.faqs {
	background-color: var(--bg4);
	border-radius: var(--radius);
	padding: 50px 0px;
	display: grid;
	grid-gap: 15px;
	margin-bottom: var(--mg-bottom);
}

.faq-title {
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.2;
}

.faq-item {
	background: white;
	border-radius: var(--radius);
	margin-bottom: 1rem;
	overflow: hidden;
	max-width: 700px;
	margin: 0 auto;
	width: 100%;
	border:;
}

.faq-question {
	background: white;
	border: none;
	width: 100%;
	text-align: left;
	padding: 1.5rem 2rem;
	font-size: 17px;
	font-weight: 400;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s ease;
}

.faq-question-title {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	flex: 1;
}

.faq-question.active {
	background: white;
}

.faq-arrow {
	width: 10px;
	height: 10px;
	border: 2px solid;
	border-left: none;
	border-bottom: none;
	transform: rotate(135deg);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-question.active .faq-arrow {
	transform: rotate(315deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: white;
	padding: 0 2rem;
}

.faq-answer.active {
	max-height: 300px;
	padding: 1.5rem 2rem 2rem;
	border-top: 1px solid var(--bg5);
}

.faq-answer-content {
	line-height: 1.6;
	font-size: 17px;
	font-weight: 300;
}

.faq-answer-content p {
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
}

@media (max-width: 800px) {
	.faqs {
		padding: 25px 0px;
		background-color: transparent;
	}

	.faq-title {
		font-size:;
	}

	.faq-question {
		font-size:;
		padding: 15px;
	}

	.faq-answer {
		padding: 0 1.5rem;
	}

	.faq-answer-content {
		font-size:;
	}

	.faq-answer.active {
		padding: 15px;
	}
}

/*FOOTER*/
footer{
max-width:1200px;
	margin:0 auto;
	padding:25px;
}
.footer{
	position:relative;
	text-align:center;
	border-radius:25px;
	display:grid;
	grid-gap:0px;
	margin-top:0px;
	background-color:var(--bg5);
	border-radius:var(--radius);
	padding:50px;
}
.footer-nav{
	display:grid;
	grid-template-columns:1fr 1fr 1fr;
	text-align:left;
	grid-gap:50px;
	margin-bottom:50px;
}
.fn-section{
}
.fn-title{
	font-weight:700;
	margin-bottom:8px;
	display:flex;
	gap:6px;
}
.fn-description{
	font-weight:300;
	font-size:15px;
	margin-bottom:18px;
	max-width:250px;
	line-height:1.6;
}
.fn-links{
	display:grid;
	font-weight:300;
	grid-gap:5px;
}
.footer-logo{
	
}
.footer-logo img{
	width:180px;
	opacity: 0.6;
}
.footer .copy{
	font-size:14px;
	position:relative;
	padding-top:20px;
	display:flex;
	flex-direction:column;
	border-top:1px solid #eaeaea;
	color:#7c7c7c;
	font-weight:300;
}
.footer .copy .legal-links{
	margin-bottom:15px;
	display:flex;
	justify-content:center;
	gap:15px;
}
.footer .copy .legal-links a{
	color:#7c7c7c;
}
@media (max-width: 800px) {
	.footer{
		padding:15px;
		grid-gap:0px;
	}
	.footer-nav{
		grid-template-columns:1fr;
	}
	.footer .copy{
		flex-direction:column;
	}
	.footer .copy .legal-links{
	font-size:12px;
	margin-bottom:15px;
	display:flex;
	gap:15px;
			justify-content:center;
}
}


/*GALLERY*/
.section-gallery{
  margin-bottom:var(--mg-bottom);
  display:grid;
  grid-gap:0px;
}

.sg-marquee{
  position:relative;
  overflow:hidden;
}

/* ✅ fades laterales (a blanco, fondo externo) */
.sg-marquee:before,
.sg-marquee:after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:80px;
  pointer-events:none;
  z-index:2;
}

.sg-marquee:before{
  left:0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.sg-marquee:after{
  right:0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.sg-track{
  --sg-gap: 20px; /* ✅ GAP */
  display:flex;
  gap: var(--sg-gap);
  width:max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: sg-move var(--sg-duration, 24s) linear infinite;
}

/* ✅ pausa al hover */
.sg-marquee:hover .sg-track{
  animation-play-state: paused;
}

.sg-set{
  display:flex;
  gap: var(--sg-gap); /* ✅ GAP también aquí */
}

.sg-item{
  flex:0 0 auto;
  width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--bg4);
  overflow:hidden;
}

.sg-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

@keyframes sg-move{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--sg-distance, 0px)), 0, 0); }
}

@media (max-width: 800px){
  .sg-item{ width: 300px; }
  .sg-marquee:before,
  .sg-marquee:after{ width:55px; }
}

@media (prefers-reduced-motion: reduce){
  .sg-track{ animation:none; }
}

/*MAP*/
  .section-map{
    width:100%;
    margin-bottom: var(--mg-bottom);
  }

  .sm-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;              /* ✅ requested */
    align-items: stretch;   /* ✅ makes both columns equal height */
  }

  /* MAP: 16:9 */
  .sm-map{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow:hidden;
    background: var(--bg4);
  }

  .sm-iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  /* INFO: background + padding, and stretch to map height */
  .sm-info{
    width:100%;
    border-radius: var(--radius);
    background: var(--bg4);
    padding: 50px;
    box-sizing: border-box;     /* ✅ prevents padding overflow */
    display:flex;
    align-items:center;         /* centers the stack vertically inside */
    justify-content:flex-start;
    min-height: 100%;           /* ✅ ensures it stretches with grid row */
    overflow:hidden;
  }

  .sm-stack{
    width:100%;
    display:flex;
    flex-direction:column;
    gap: 18px;
    align-items:stretch;
  }

  .sm-row{
    display:flex;
    align-items:center;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .sm-ic{
    flex:0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: var(--bg2);
  }

  .sm-ic i{
    display:block;
    width: 20px;
    height: 20px;
  }

  .sm-val{
    flex:1 1 auto;
    line-height: 1.35;
    word-break: break-word;
  }

  /* ✅ links: no underline / no border effect */
  .sm-val a{
    color: inherit;
    text-decoration: none;
    border: 0;
  }
  .sm-val a:hover{
    text-decoration: none;
    border: 0;
  }

  /* Responsive */
  @media (max-width: 900px){
    .sm-grid{
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }
    .sm-info{
      align-items:flex-start;
      padding: 26px;
      min-height: 0;
    }
  }


/*POST CARD*/
	.post-card {
		border-radius: var(--radius);
		overflow: hidden;
		position: relative;
		background-color: var(--bg4);
		display: flex;
		flex-direction: column;
		text-decoration: none;
		color: inherit;
		height: 100%;
	}

	.post-card__media {
		aspect-ratio: 16 / 9;
		background-color: var(--bg2);
		overflow: hidden;
		flex: 0 0 auto;
		position: relative;
	}

	.post-card__media img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center;
		pointer-events: none;
		-webkit-user-drag: none;
	}

	.post-card__categories {
		position: absolute;
		right: 12px;
		bottom: 12px;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		z-index: 2;
	}

	.post-card__category-chip {
		padding: 6px 10px;
		background: rgba(0, 0, 0, 0.6);
		color: #fff;
		border-radius: 100px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-sizing: border-box;
		font-size: 12px;
		font-weight: 400;
		letter-spacing:0.5px;
		line-height: 1;
		white-space: nowrap;
	}

	.post-card__overlay {
		padding: 25px;
		display: flex;
		flex-direction: column;
		flex: 1 1 auto;
	}

	.post-card__title-row {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.post-card__title {
		font-weight: 600;
		font-size: var(--ts3);
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.post-card__desc {
		margin-top: 8px;
		margin-bottom: 14px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		font-weight: 300;
	}

	.post-card__link {
		margin-top: auto;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-weight: 600;
		justify-content: left;
	}

	.post-card__link-icon {
		flex: 0 0 auto;
	}

/*POST LIST*/
	.post-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 25px;
		margin-bottom: var(--mg-bottom);
	}

	.post-card {
		border-radius: var(--radius);
		overflow: hidden;
		position: relative;
		background-color: var(--bg4);
		display: grid;
		text-decoration: none;
		color: inherit;
	}

	.post-card__media {
		aspect-ratio: 16 / 9;
		background-color: var(--bg2);
	}

	.post-card__media img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center;
		pointer-events: none;
		-webkit-user-drag: none;
	}

	.post-card__overlay {
		padding: 25px;
	}

	.post-card__title-row {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.post-card__title {
		font-weight: 600;
		font-size: var(--ts3);
	}

	.post-card__desc {
		margin-top: 8px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		font-weight: 300;
	}

	.post-card__link {
		margin-top: 14px;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-weight: 600;
		justify-content: right;
	}

	.post-card__link-icon {
		flex: 0 0 auto;
	}

	@media (max-width: 1100px) {
		.post-list {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}

	@media (max-width: 800px) {
		.post-list {
			grid-template-columns: 1fr;
		}
	}

/*POST SUMMARY*/

	.post-summary {
		display: grid;
		margin-bottom: var(--mg-bottom);
	}

	.post-summary-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 25px;
		margin-bottom: 40px;
	}

	.post-card {
		border-radius: var(--radius);
		overflow: hidden;
		position: relative;
		background-color: var(--bg4);
		display: grid;
		text-decoration: none;
		color: inherit;
	}

	.post-card__media {
		aspect-ratio: 16 / 9;
		background-color: var(--bg2);
	}

	.post-card__media img {
		width: 100%;
		height: 100%;
		display: block;
		object-fit: cover;
		object-position: center;
		pointer-events: none;
		-webkit-user-drag: none;
	}

	.post-card__overlay {
		padding: 25px;
	}

	.post-card__title-row {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.post-card__title {
		font-weight: 600;
		font-size: var(--ts3);
	}

	.post-card__desc {
		margin-top: 8px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
		font-weight: 300;
	}

	.post-card__link {
		margin-top: 14px;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-weight: 600;
		justify-content: right;
	}

	.post-card__link-icon {
		flex: 0 0 auto;
	}

	@media (max-width: 800px) {
		.post-summary-list {
			grid-template-columns: 1fr;
		}
	}

/* CARD PAÍS */
.cp-card{
	display:flex;
	align-items:center;
	gap:14px;
	text-decoration:none;
	background:var(--bg5);
	border-radius:var(--radius);
	padding:14px 16px;
	transition:transform 180ms ease, box-shadow 180ms ease;
	box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.cp-card:hover{
	transform:translateY(-2px);
	box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.cp-flag{
	width:44px;
	height:44px;
	flex:0 0 44px;
	border-radius:50%;
	overflow:hidden;
	box-shadow: 0 0 0 1px rgba(0,0,0,.08);
	background:#fff;
	display:flex;
	align-items:center;
	justify-content:center;
}
.cp-flag img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.cp-body{
	flex:1;
	min-width:0;
	display:flex;
	flex-direction:column;
	gap:8px;
	text-align:left;
}
.cp-title{
	font-weight:700;
	color:var(--text, #111827);
	line-height:1.15;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.cp-chip{
	display:inline-flex;
	align-items:center;
	gap:8px;
	width:fit-content;
	padding:6px 10px;
	border-radius:999px;
	background:rgba(0,0,0,.05);
	color:rgba(0,0,0,.65);
	font-size:13px;
	font-weight:400;
}
.cp-chip i{
	width:16px;
	height:16px;
	display:inline-block;
}
.cp-chip-text{
	line-height:1;
}
@media (max-width: 800px){
	.cp-card{
		padding:12px 14px;
	}
	.cp-flag{
		width:40px;
		height:40px;
		flex:0 0 40px;
	}
	.cp-title{
		font-size:15px;
	}
}

/*STATS*/
  .section-stats{
    margin-bottom:var(--mg-bottom);

    /* ✅ ahora el fondo + padding viven en TODO el componente */
    background: var(--bg4);
    border-radius: var(--radius);
    padding: 50px;

    display: grid;
    gap: 20px; /* separación entre head y grid */
  }

  .ss-grid{
    /* ✅ quitamos fondo y padding aquí */
    background: transparent;
    border-radius: 0;
    padding: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .ss-card{
    background: #ffffff;
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    display:grid;
    grid-gap:10px;
  }

  .ss-value{
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    color: #111827;
  }

  .ss-label{
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: #6b7280;
  }

  @media (max-width: 768px){
    .section-stats{
      padding: 35px;
    }
    .ss-grid{
      grid-template-columns: 1fr;
    }
    .ss-value{
      font-size: 32px;
    }
  }

/*TIMELINE*/
  .section-timeline{
    --gap: 22px;
    --rowh: 170px;

    --line: #e5e7eb;
    --linew: 6px;

    --circle: 86px;
    --circle-border: 3px;

    --text: #111827;
    --muted: #6b7280;

    max-width: 750px;
	  margin:0 auto;
    display: grid;
    gap: 0px;
	  margin-bottom: var(--mg-bottom);
  }

  .ctl-row{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    min-height: var(--rowh);
  }

  .ctl-text{
    text-align: left;
    background-color: var(--bg4);
    padding: 25px;
    border-radius: 25px;
    margin: 20px 0px;
  }

  .ctl-row.is-first .ctl-text{ margin-top: 0px; }
  .ctl-row.is-last  .ctl-text{ margin-bottom: 0px; }

  .ctl-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: /*10px 15px*/;
    border-radius: 999px;
    background: /*var(--bg2)*/;
    color: #ffbc03;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 12px;
  }

  .ctl-title{
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
  }

  .ctl-p{
    margin: 0;
    font-size: var(--ts4);
    font-weight:300;
  }

  .ctl-mid{
    position: relative;
    display: grid;
    place-items: center;
    height: 100%;
  }

  .ctl-mid::before{
    content:"";
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: var(--linew);
    height: calc(50% - (var(--circle) / 2));
    background: var(--bg4);
    border-radius: 0px;
  }

  .ctl-mid::after{
    content:"";
    position:absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% + (var(--circle) / 2));
    width: var(--linew);
    height: calc(50% - (var(--circle) / 2));
    background: var(--bg4);
    border-radius: 0px;
  }

  .ctl-row.is-first .ctl-mid::before{ display:none; }
  .ctl-row.is-last  .ctl-mid::after{ display:none; }

  .ctl-circle{
    width: var(--circle);
    height: var(--circle);
    border-radius: 999px;
    background: var(--bg4);
    border: 5px solid var(--bg4);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
  }

  .ctl-circle svg{
    width: 36px;
    height: 36px;
    display: block;
    color: var(--bg1);
  }

  @media (max-width: 768px){
    .ctl-row{
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: center;
      min-height: var(--rowh);
    }

    .section-timeline{
      --circle: 80px;
    }

    .ctl-circle svg{
      width: 34px;
      height: 34px;
    }

    .ctl-text{
      padding: 20px;
    }
  }


/* CARD PAÍS */
.cp-card{
	display:flex;
	align-items:center;
	gap:14px;
	text-decoration:none;
	background:var(	--bg4);
	border-radius:var(--radius);
	padding:25px;
}
.cp-flag{
	width:44px;
	height:44px;
	flex:0 0 44px;
	border-radius:999px;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
}
.cp-flag img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.cp-body{
	flex:1;
	min-width:0;
	display:flex;
	flex-direction:column;
	gap:8px;
	text-align:left;
}
.cp-title{
	font-weight:700;
	color:var(--text, #111827);
	line-height:1.15;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.cp-tag{
	display:inline-flex;
	align-items:center;
	width:fit-content;
	font-size:13px;
	font-weight:400;
	line-height:1;
}
.cp-tag.is-available{
	color:rgb(16, 185, 129);
}
.cp-tag.is-soon{
	color:rgb(107, 114, 128);
}

/* ✅ CHEVRON */
.cp-chevron{
	flex:0 0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
	color:currentcolor;
	opacity:35%;
}
.cp-chevron svg{
	display:block;
	width:25px;
	height:25px;
}

@media (max-width: 800px){
	.cp-card{
		padding:12px 14px;
	}
	.cp-flag{
		width:40px;
		height:40px;
		flex:0 0 40px;
	}
	.cp-title{
		font-size:15px;
	}
}

/*UBICACIONES*/
.section-ubicaciones{
	display: grid;
	gap: 70px;
	max-width:800px;
	margin:0 auto;
	margin-bottom:var(--mg-bottom);
}

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

/* ✅ SEGUNDA SECCIÓN (SOON) — preparada para que metas estilos */
.su-block.su-block--soon{
	opacity:50%;
}

@media (max-width: 800px){
	.section-ubicaciones .su-grid{
		grid-template-columns: 1fr;
	}
}

