/* ===== Cupines landing page ===== */

:root{
	--orange: #F97D01;
	--orange-soft: #FFA143;
	--yellow: #FFC000;
	--yellow-soft: #FFD080;
	--green: #92D050;
	--blue: #9DC3E6;
	--coral: #ED8388;
	--cream: #FFFAEF;
	--ink: #5b4632;
	--ink-soft: #8a7763;
	--white: #ffffff;

	--font-title: 'Fredoka', 'Trebuchet MS', sans-serif;
	--font-body: 'Nunito', 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }
html, body{ overflow-x: hidden; max-width: 100%; }

body.cupines-landing{
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	color: var(--ink);
	background: var(--orange);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; }

h1, h2, h3, h4{
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 .5em;
	color: var(--orange);
}

.container{
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.section{
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.section-title{
	text-align: center;
	font-size: clamp(28px, 4vw, 42px);
	margin-bottom: 16px;
	color: var(--white);
}

.section-subtitle{
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
	color: rgba(255,255,255,.85);
	font-size: 18px;
}

.eyebrow{
	display: inline-block;
	font-family: var(--font-title);
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--white);
	background: var(--orange);
	padding: 6px 18px;
	border-radius: 999px;
	margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 17px;
	padding: 16px 36px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	border: none;
	cursor: pointer;
}
.btn-primary{
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 10px 24px rgba(249, 125, 1, .35);
}
.btn-primary:hover{
	background: var(--ink);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(249, 125, 1, .45);
}
.btn-outline{
	background: transparent;
	color: var(--orange);
	border: 2px solid var(--orange);
}
.btn-outline:hover{
	background: var(--orange);
	color: var(--white);
	transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header{
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--cream);
	border-bottom: 1px solid rgba(91, 70, 50, .06);
	transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled{
	background: var(--cream);
	box-shadow: 0 6px 24px rgba(91, 70, 50, .12);
	border-bottom-color: transparent;
}
.site-header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	transition: padding .3s ease;
}
.site-header.is-scrolled .container{
	padding-top: 9px;
	padding-bottom: 9px;
}
.site-header .logo img{
	height: 52px;
	width: auto;
	transition: height .3s ease;
}
.site-header.is-scrolled .logo img{ height: 42px; }
.site-nav ul{
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}
.site-nav a{
	position: relative;
	font-family: var(--font-title);
	font-weight: 500;
	text-decoration: none;
	color: var(--ink);
	font-size: 16px;
	transition: color .15s ease;
}
.site-nav a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2.5px;
	border-radius: 2px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.site-nav a:hover{ color: var(--orange); }
.site-nav a:hover::after{ transform: scaleX(1); }
.header-cta{ display: flex; align-items: center; gap: 28px; }
.header-cta .btn{ padding: 12px 28px; font-size: 15px; }

/* Hamburger (mobile only) */
.nav-toggle{
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 9px;
	border: none;
	background: transparent;
	cursor: pointer;
}
.nav-toggle span{
	display: block;
	width: 100%;
	height: 2.5px;
	border-radius: 2px;
	background: var(--ink);
	transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Cover hero ---------- */
.cover-hero{
	position: relative;
	overflow: hidden;
	background: var(--orange);
	padding: 64px 0 110px;
}
.cover-grid{
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.cover-logo{
	height: 54px;
	width: auto;
	margin-bottom: 28px;
	filter: brightness(0) invert(1);
}
.cover-copy h1{
	font-size: clamp(42px, 6vw, 68px);
	color: var(--white);
	position: relative;
	line-height: 1.28;
}
.cover-copy h1 span{
	color: var(--orange);
	background: var(--white);
	padding: 4px 14px;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(91,70,50,.16);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.hero-tagline{
	font-family: var(--font-title);
	font-weight: 600;
	font-size: clamp(20px, 2.4vw, 26px);
	color: var(--white);
	margin: 20px 0 0;
	line-height: 1.3;
}
.cover-copy p.lead{
	font-size: 18px;
	color: rgba(255,255,255,.92);
	max-width: 480px;
	margin-top: 22px;
	margin-bottom: 32px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }
.btn-cover-primary{
	background: var(--white);
	color: var(--orange);
	box-shadow: 0 10px 26px rgba(91,70,50,.2);
}
.btn-cover-primary:hover{
	background: var(--ink);
	color: var(--white);
	transform: translateY(-2px);
}
.btn-cover-outline{
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255,255,255,.7);
}
.btn-cover-outline:hover{
	background: var(--white);
	color: var(--orange);
	border-color: var(--white);
	transform: translateY(-2px);
}
.cover-photo{
	position: relative;
	display: flex;
	justify-content: center;
}
.cover-photo img{
	width: 100%;
	max-width: 440px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 32px;
	border: 7px solid var(--white);
	box-shadow: 0 28px 60px rgba(91,70,50,.28);
}
.cover-wave{
	position: absolute;
	left: 0; right: 0; bottom: -2px;
	width: 100%;
	height: 90px;
	z-index: 0;
}
/* Reusable section wave divider */
.sec-wave{
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	width: 100%;
	height: 70px;
	z-index: 2;
	pointer-events: none;
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference){
	.reveal{
		opacity: 0;
		transform: translateY(30px);
		transition: opacity .7s cubic-bezier(.22,.7,.25,1), transform .7s cubic-bezier(.22,.7,.25,1);
		transition-delay: var(--reveal-delay, 0ms);
		will-change: opacity, transform;
	}
	.reveal.is-visible{
		opacity: 1;
		transform: none;
		will-change: auto;
	}
	/* Stronger focus-in for the quote */
	.quote-section blockquote.reveal{
		transform: translateY(36px) scale(.94);
		filter: blur(6px);
		transition: opacity .95s ease, transform .95s cubic-bezier(.22,.7,.25,1), filter .95s ease;
	}
	.quote-section blockquote.reveal.is-visible{
		transform: none;
		filter: blur(0);
	}
}

/* ---------- Hero strip ---------- */
.hero-strip-section{ background: var(--yellow); }
.hero-strip{
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	justify-content: center;
	padding: 26px 0;
}
.hero-strip .item{
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
}
.hero-strip .dot{
	width: 12px; height: 12px; border-radius: 50%;
	display: inline-block;
}

/* ---------- Mission / vision ---------- */
.mv-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.mv-card{
	background: var(--white);
	border-radius: 28px;
	padding: 40px;
	box-shadow: 0 16px 40px rgba(91,70,50,.07);
	position: relative;
}
.mv-card::before{
	content: "";
	position: absolute;
	top: 32px; left: 32px;
	width: 52px; height: 52px;
	border-radius: 16px;
	opacity: .18;
}
.mv-card.mission::before{ background: var(--green); }
.mv-card.vision::before{ background: var(--yellow); }
.mv-card h3{
	font-size: 24px;
	margin-bottom: 14px;
}
.mv-card.mission h3{ color: var(--green); }
.mv-card.vision h3{ color: var(--orange-soft); }
.mv-card p{
	color: var(--ink-soft);
	font-size: 16.5px;
	margin: 0;
}

/* ---------- Áreas de desarrollo ---------- */
.areas-section{ background: var(--orange); }

/* Cream sections — dark text for contrast */
#nosotros .section-title,
#servicios .section-title,
#activame .section-title{ color: var(--orange); }
#nosotros .section-subtitle,
#servicios .section-subtitle{ color: var(--ink); }
.areas-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.area-card{
	border-radius: 28px;
	padding: 18px 18px 30px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 16px 36px rgba(91,70,50,.12);
}
.area-card:hover{
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(91,70,50,.18);
}
.area-orange{ background: var(--orange); }
.area-green{ background: var(--green); }
.area-coral{ background: var(--coral); }
.area-blue{ background: var(--blue); }
.area-yellow{ background: var(--yellow); }
.area-yellow h4{ color: var(--ink); }
.area-yellow p{ color: rgba(91,70,50,.82); }
.area-photo{
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	margin-bottom: 20px;
	border: 4px solid rgba(255,255,255,.55);
	background: rgba(0,0,0,.06);
}
.area-photo img,
.area-photo video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.area-card:hover .area-photo img,
.area-card:hover .area-photo video{ transform: scale(1.05); }
.area-card h4{
	font-size: 19px;
	margin-bottom: 10px;
	color: var(--white);
}
.area-card p{
	font-size: 15px;
	color: rgba(255,255,255,.88);
	margin: 0;
}

/* ---------- Servicios — planes destacados ---------- */
.plans-list{
	display: grid;
	gap: 64px;
	margin-top: 16px;
}
.plan-feature{
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 48px;
	align-items: center;
	background: var(--white);
	border-radius: 32px;
	padding: 32px;
	box-shadow: 0 20px 50px rgba(91,70,50,.12);
}
.plan-feature.reverse{
	grid-template-columns: 1.15fr .85fr;
}
.plan-feature.reverse .plan-media{ order: 2; }
.plan-feature.reverse .plan-info{ order: 1; }

.plan-media{
	position: relative;
	min-height: 340px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
}
/* Decorative blob dots around the photo */
.plan-media::before,
.plan-media::after{
	content: "";
	position: absolute;
	border-radius: 50%;
	z-index: 0;
}
.plan-media::before{ width: 48px; height: 48px; background: var(--coral); top: 4%; right: 6%; }
.plan-media::after{ width: 70px; height: 70px; background: var(--green); bottom: 2%; left: 4%; }
.plan-media img{
	width: 100%;
	height: 100%;
	min-height: 320px;
	max-height: 430px;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 1;
	border: 7px solid var(--orange);
	border-radius: 30px;
	box-shadow: 0 24px 50px rgba(91,70,50,.22);
	transition: transform .4s ease;
}
.plan-feature.gemelos .plan-media img{ border-color: var(--green); }
.plan-feature.online .plan-media img{ border-color: var(--coral); object-position: center 14%; }
.plan-feature:hover .plan-media img{ transform: scale(1.02); }

.plan-info .plan-tagline{ margin-bottom: 14px; }
.plan-divider{
	border-top: 2px dotted rgba(91,70,50,.28);
	margin: 0 0 22px;
}

.plan-tag{
	display: inline-block;
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--orange);
	background: rgba(249,125,1,.1);
	padding: 7px 18px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.plan-feature.gemelos .plan-tag{ color: var(--green); background: rgba(146,208,80,.15); }
.plan-feature.online .plan-tag{ color: var(--ink); background: rgba(255,192,0,.25); }

.plan-info h3{
	font-size: clamp(26px, 3.4vw, 34px);
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 6px;
	letter-spacing: -.01em;
}
.plan-feature.gemelos .plan-info h3{ color: var(--green); }
.plan-feature.online .plan-info h3{ color: var(--orange-soft); }
.plan-info .plan-tagline{
	font-family: var(--font-title);
	font-weight: 500;
	font-size: 16px;
	color: var(--ink-soft);
	margin: 0 0 18px;
}
.plan-info .meta{
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 14.5px;
	color: var(--ink-soft);
	margin-bottom: 16px;
}
.plan-info .meta strong{ font-weight: 600; color: var(--ink); }
.plan-info .desc{
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	color: var(--ink-soft);
	margin-bottom: 26px;
}
.plan-info .price-table{ margin-bottom: 28px; }
.plan-info .btn{ font-size: 16px; padding: 15px 34px; }

.plan-feature .amount{ color: var(--orange); }
.plan-feature.gemelos .amount{ color: var(--green); }
.plan-feature.online .amount{ color: var(--orange-soft); }

.price-table{
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
	margin-bottom: 6px;
}
.price-table th{
	text-align: left;
	font-family: var(--font-title);
	font-weight: 500;
	color: var(--ink-soft);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 8px 6px;
	border-bottom: 2px solid rgba(91,70,50,.15);
}
.price-table td{
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink-soft);
	padding: 10px 6px;
	border-bottom: 1px solid rgba(91,70,50,.1);
}
.price-table td.amount{
	font-family: var(--font-title);
	font-weight: 600;
	color: var(--orange);
}
.price-table .usd{
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: var(--ink-soft);
}

.includes-box{
	margin-top: 56px;
	background: var(--white);
	border-radius: 28px;
	padding: 38px 44px;
	box-shadow: 0 16px 40px rgba(91,70,50,.07);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}
.includes-box h4{
	color: var(--ink);
	font-size: 19px;
	margin-bottom: 14px;
}
.includes-box ul{
	margin: 0;
	padding-left: 0;
	list-style: none;
	font-size: 15px;
	color: var(--ink-soft);
	display: grid;
	gap: 10px;
}
.includes-box ul li{
	display: flex;
	gap: 10px;
	align-items: flex-start;
}
.includes-box ul li::before{
	content: "✓";
	color: var(--green);
	font-weight: 700;
	flex-shrink: 0;
}
.includes-box .policy{ display: grid; gap: 14px; }
.policy-card{ display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(180deg, #FFF6E6, var(--cream)); border: 1.5px solid rgba(249,125,1,.22); border-radius: 18px; padding: 18px 20px; box-shadow: 0 8px 22px rgba(249,125,1,.07); }
.policy-card .pc-ic{ flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 14px rgba(249,125,1,.3); }
.policy-card .pc-ic svg{ width: 22px; height: 22px; }
.policy-card h5{ font-family: var(--font-title); font-weight: 600; font-size: 17px; color: var(--orange); margin: 2px 0 5px; }
.policy-card p{ font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.policy-card p b{ color: var(--ink); }

/* ---------- Quote ---------- */
.quote-section{
	background: var(--orange);
	color: var(--white);
	text-align: center;
	padding: 130px 0 90px;
	position: relative;
	overflow: hidden;
}
/* Small baby silhouette, tone-on-tone, crowning the quote above the words "Lo que" */
.quote-section::after{
	content: "";
	position: absolute;
	top: 44px;
	left: 50%;
	width: 78px; height: 78px;
	transform: translateX(-150px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('img/baby-yellow.png');
	filter: brightness(.82) saturate(1.1) hue-rotate(-16deg);
	opacity: .34;
	pointer-events: none;
	z-index: 0;
}
.quote-section blockquote{
	font-family: var(--font-title);
	font-size: clamp(24px, 3.6vw, 36px);
	max-width: 780px;
	margin: 0 auto 18px;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}
.quote-section cite{
	font-style: normal;
	font-size: 16px;
	opacity: .85;
	position: relative;
	z-index: 1;
}

/* ---------- CTA final ---------- */
.cta-section{
	text-align: center;
	padding-bottom: 44px;
}
.cta-card{
	background: var(--white);
	border-radius: 32px;
	padding: 64px 40px;
	box-shadow: 0 20px 50px rgba(91,70,50,.1);
	max-width: 760px;
	margin: 0 auto;
	position: relative;
}
.cta-card .blob{
	width: 140px; height: 140px;
	opacity: .35;
}
.cta-card .blob-a{ background: var(--yellow-soft); top: -40px; left: -40px; }
.cta-card .blob-b{ background: var(--green); bottom: -40px; right: -30px; border-radius: 58% 42% 37% 63% / 53% 41% 59% 47%; }
.cta-card h2{
	font-size: clamp(26px, 4vw, 36px);
	position: relative; z-index: 1;
}
.cta-card p{
	color: var(--ink-soft);
	font-size: 17px;
	max-width: 480px;
	margin: 0 auto 30px;
	position: relative; z-index: 1;
}
.cta-card .hero-actions{ justify-content: center; position: relative; z-index: 1; }
.cta-choices{
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.cta-choices .btn{ flex: 0 1 auto; }
.cta-email{
	color: var(--ink-soft);
	font-size: 14.5px;
	text-decoration: none;
	border-bottom: 1px solid rgba(138,119,99,.4);
	transition: color .15s ease, border-color .15s ease;
}
.cta-email:hover{ color: var(--orange); border-color: var(--orange); }

/* ---------- Cupines en Actívame (presencial) ---------- */
.activame-section{
	background: var(--cream);
	position: relative;
	overflow: hidden;
}
.activame-section .container{ position: relative; z-index: 1; max-width: 1060px; }

.activame-head{ text-align: center; max-width: 640px; margin: 0 auto; }
.activame-logo{
	width: 220px;
	max-width: 62%;
	height: auto;
	margin: 0 auto 22px;
	display: block;
}
.activame-badge{
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .3px;
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 26px;
}
#activame .section-title{ margin-bottom: 28px; line-height: 1.22; }
/* Both intro paragraphs share one harmonious treatment */
.activame-head .section-subtitle,
.activame-head .activame-intro{
	font-size: 16.5px;
	line-height: 1.8;
	color: var(--ink-soft);
	max-width: 620px;
	margin: 0 auto 22px;
	text-align: center;
}
.activame-head .activame-intro{ margin-bottom: 0; }
.activame-head .section-subtitle strong{ color: var(--ink); }

.activame-facts{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin: 48px 0 8px;
}
.activame-facts .fact{
	background: var(--orange);
	border-radius: 18px;
	padding: 18px 32px;
	text-align: center;
	min-width: 160px;
	box-shadow: 0 12px 28px rgba(249,125,1,.28);
}
.fact-num{
	display: block;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 23px;
	color: var(--white);
}
.fact-lbl{ display: block; font-size: 13.5px; color: rgba(255,255,255,.9); margin-top: 2px; }

.activame-carousel-wrap{ position: relative; margin: 44px 0 8px; }
.activame-carousel{
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 6px 2px 18px;
	-webkit-overflow-scrolling: touch;
}
.activame-carousel img{
	flex: 0 0 auto;
	width: 268px;
	height: 340px;
	object-fit: cover;
	border-radius: 18px;
	scroll-snap-align: center;
	box-shadow: 0 12px 28px rgba(91,70,50,.16);
}
.activame-carousel::-webkit-scrollbar{ height: 8px; }
.activame-carousel::-webkit-scrollbar-track{ background: rgba(91,70,50,.08); border-radius: 99px; }
.activame-carousel::-webkit-scrollbar-thumb{ background: var(--orange-soft); border-radius: 99px; }
.carousel-btn{
	position: absolute;
	top: 44%;
	transform: translateY(-50%);
	width: 48px; height: 48px;
	border-radius: 50%;
	border: none;
	background: var(--orange);
	color: var(--white);
	font-family: var(--font-title);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(249,125,1,.35);
	z-index: 3;
	display: flex; align-items: center; justify-content: center;
	transition: transform .2s ease, background .2s ease;
}
.carousel-btn:hover{ background: var(--orange-soft); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev{ left: 4px; }
.carousel-btn.next{ right: 4px; }

.activame-subtitle{
	text-align: center;
	font-family: var(--font-title);
	color: var(--orange);
	font-size: 27px;
	margin: 56px 0 6px;
}
.activame-note{
	text-align: center;
	color: var(--ink-soft);
	font-size: 15px;
	max-width: 600px;
	margin: 0 auto 26px;
	line-height: 1.55;
}

/* Spaces */
.salones-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 10px;
}
.salon{
	position: relative;
	background: var(--white);
	border-radius: 20px;
	padding: 28px 26px 26px;
	box-shadow: 0 10px 26px rgba(91,70,50,.07);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}
.salon::before{
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 5px;
	background: var(--acc, var(--orange));
}
.salon:hover{
	transform: translateY(-5px);
	box-shadow: 0 20px 38px rgba(91,70,50,.13);
}
.salon-ic{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	margin-bottom: 16px;
	color: #fff;
	background: var(--acc, var(--orange));
	box-shadow: 0 8px 18px color-mix(in srgb, var(--acc, var(--orange)) 38%, transparent);
}
.salon-ic svg{ width: 27px; height: 27px; }
.salon h4{ font-family: var(--font-title); color: var(--navy); font-size: 17px; margin: 0 0 8px; }
.salon p{ color: var(--ink-soft); font-size: 14px; margin: 0; line-height: 1.55; }

/* Pricing */
.modalidad-panel{
	position: relative;
	margin: 56px auto 0;
	padding: 46px 44px 40px;
	border-radius: 30px;
	background: linear-gradient(165deg, #2E3E86 0%, var(--navy) 70%);
	box-shadow: 0 26px 60px rgba(30,42,99,.28);
	overflow: hidden;
}
.modalidad-panel::before{
	content: "";
	position: absolute;
	top: -90px; right: -70px;
	width: 280px; height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,192,0,.18), transparent 70%);
	pointer-events: none;
}
.modalidad-panel .activame-subtitle{ margin-top: 0; }
.activame-subtitle.on-dark{ color: #fff; }
.activame-note.on-dark{ color: rgba(255,255,255,.82); }
.activame-note.on-dark strong{ color: var(--yellow); }
.modalidad-tables{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
	margin-top: 10px;
	position: relative;
}
.modalidad-block{
	background: var(--white);
	border-radius: 22px;
	padding: 30px 30px 14px;
	box-shadow: 0 14px 34px rgba(91,70,50,.1);
}
.modalidad-title{
	font-family: var(--font-title);
	color: var(--orange);
	font-size: 19px;
	margin: 0 0 8px;
	text-align: center;
}
.modalidad-title span{
	display: block;
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--ink-soft);
	font-size: 13px;
	margin-top: 2px;
}
.modalidad-desc{
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.55;
	text-align: center;
	margin: 0 auto 16px;
	max-width: 420px;
}
.modalidad-block .price-table{ width: 100%; }
.modalidad-block .price-table th{
	background: var(--orange);
	color: var(--white);
	border-bottom: none;
	padding: 11px 12px;
}
.modalidad-block .price-table thead th:first-child{ border-radius: 10px 0 0 10px; }
.modalidad-block .price-table thead th:last-child{ border-radius: 0 10px 10px 0; }
.modalidad-block .price-table td{ padding: 12px; }

/* Good to know */
.saber-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 10px;
}
.saber-item{
	background: var(--white);
	border-radius: 18px;
	padding: 24px 24px;
	box-shadow: 0 10px 26px rgba(91,70,50,.07);
}
.saber-item h4{
	font-family: var(--font-title);
	color: var(--orange);
	font-size: 16px;
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(249,125,1,.18);
}
.saber-item p{ color: var(--ink-soft); font-size: 14px; margin: 0; line-height: 1.55; }

.activame-cta{ text-align: center; margin-top: 48px; }
.activame-cta-note{ color: var(--ink-soft); font-size: 14px; margin: 14px 0 0; }

/* ---------- Brand baby silhouettes ---------- */
.cta-babies{
	display: block;
	width: 230px;
	max-width: 60%;
	margin: 0 auto -24px;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 12px 20px rgba(91,70,50,.16));
}
/* Subtle tone-on-tone baby accent in the banner */
.cover-hero::after{
	content: "";
	position: absolute;
	left: 1.5%;
	bottom: 60px;
	width: 200px;
	height: 200px;
	background: url(img/baby-orange.png%3Fv=2) no-repeat center / contain;
	opacity: .2;
	pointer-events: none;
	z-index: 0;
}

/* ---------- Footer ---------- */
.site-footer{
	background: var(--coral);
	color: rgba(255,255,255,.92);
	padding: 56px 0 28px;
}
.site-footer .footer-top{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 36px;
}
.site-footer .logo img{
	height: 46px;
	filter: brightness(0) invert(1);
	opacity: .95;
}
.site-footer h5{
	font-family: var(--font-title);
	color: var(--white);
	font-size: 16px;
	margin: 0 0 14px;
	letter-spacing: .02em;
}
.site-footer ul{
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 8px;
	font-size: 14.5px;
}
.site-footer a{ text-decoration: none; color: inherit; transition: color .15s ease; }
.site-footer a:hover{ color: var(--yellow); }
.footer-bottom{
	border-top: 1px solid rgba(255,255,255,.3);
	padding-top: 22px;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	color: rgba(255,255,255,.78);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px){
	.cover-grid{ grid-template-columns: 1fr; gap: 32px; }
	.cover-photo{ order: -1; }
	.cover-photo img{ max-width: 320px; }
	.mv-grid{ grid-template-columns: 1fr; }
	.areas-grid{ grid-template-columns: repeat(2, 1fr); }
	.plan-feature,
	.plan-feature.reverse{ grid-template-columns: 1fr; padding: 24px; gap: 28px; }
	.plan-feature.reverse .plan-media{ order: 1; }
	.plan-feature.reverse .plan-info{ order: 2; }
	.plan-media, .plan-media img{ min-height: 220px; }
	.includes-box{ grid-template-columns: 1fr; }
	.salones-grid{ grid-template-columns: repeat(2, 1fr); }
	.saber-grid{ grid-template-columns: repeat(2, 1fr); }
	.modalidad-tables{ grid-template-columns: 1fr; gap: 22px; }
	.nav-toggle{ display: flex; order: 3; }
	.header-cta{ order: 2; gap: 10px; }
	.site-header .container{ position: relative; }
	.site-nav{
		order: 4;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--cream);
		box-shadow: 0 18px 30px rgba(91, 70, 50, .14);
		border-top: 1px solid rgba(91, 70, 50, .06);
		max-height: 0;
		overflow: hidden;
		transition: max-height .35s ease;
	}
	.site-header.nav-open .site-nav{ max-height: calc(100vh - 64px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
	.site-nav ul{
		flex-direction: column;
		gap: 0;
		padding: 6px 24px 16px;
	}
	.site-nav li{ border-bottom: 1px solid rgba(91, 70, 50, .07); }
	.site-nav li:last-child{ border-bottom: none; }
	.site-nav a{ display: block; padding: 14px 2px; font-size: 17px; }
	.site-nav a::after{ display: none; }
	.header-cta .btn{ padding: 10px 20px; font-size: 14px; }
	.site-header .logo img{ height: 44px; }
	.site-header.is-scrolled .logo img{ height: 38px; }
}
@media (max-width: 560px){
	.container{ padding: 0 18px; }
	.section{ padding: 56px 0; }
	.cover-hero{ padding: 32px 0 80px; }
	.cover-hero::after{ display: none; }

	/* Hero text scales down, no overflow */
	.cover-copy{ min-width: 0; }
	.cover-copy h1{ font-size: clamp(40px, 12.5vw, 56px); line-height: 1.14; overflow-wrap: break-word; }
	.cover-copy h1 span{ display: table; margin-top: 12px; padding: 4px 12px; border-radius: 12px; }
	.hero-tagline{ margin-top: 24px; }
	.cover-copy p.lead{ font-size: 16px; margin-top: 22px; }
	/* Small baby silhouette crowning the quote on mobile */
	.quote-section{ padding: 104px 0 64px; }
	.quote-section::after{ width: 64px; height: 64px; top: 34px; transform: translateX(-118px); }
	.cover-photo img{ max-width: 280px; border-width: 6px; }

	/* Full-width stacked buttons for easy tapping */
	.hero-actions{ width: 100%; }
	.hero-actions .btn{ flex: 1 1 100%; }

	.section-title{ font-size: clamp(24px, 6.8vw, 32px); }
	.section-subtitle{ font-size: 16px; margin-bottom: 40px; }
	.areas-grid{ grid-template-columns: 1fr; }
	.area-photo{ aspect-ratio: 4 / 5; }

	/* Compact price table */
	.price-table{ font-size: 13px; }
	.price-table th{ font-size: 11px; padding: 7px 3px; }
	.price-table td{ padding: 9px 3px; }
	.plan-feature{ padding: 18px; }

	/* Activame presencial — keep arrows visible so users know they can swipe */
	.carousel-btn{ width: 40px; height: 40px; font-size: 23px; opacity: .95; }
	.carousel-btn.prev{ left: 2px; }
	.carousel-btn.next{ right: 2px; }
	.activame-carousel img{ width: 220px; height: 290px; }
	.salones-grid{ grid-template-columns: 1fr; }
	.saber-grid{ grid-template-columns: 1fr; }
	.activame-facts{ gap: 12px; }
	.activame-facts .fact{ flex: 1 1 calc(50% - 12px); min-width: 0; padding: 16px 14px; }
	.fact-num{ font-size: 21px; }
	.activame-subtitle{ font-size: 22px; }
	.modalidad-panel{ padding: 30px 18px 26px; border-radius: 22px; }
	.modalidad-block{ padding: 22px 16px 8px; }

	/* CTA + footer */
	.cta-card{ padding: 48px 24px; }
	.cta-babies{ width: 180px; }
	.site-footer .footer-top{ flex-direction: column; gap: 26px; }
	.btn{ font-size: 16px; padding: 14px 28px; }
}
@media (max-width: 400px){
	.header-cta .btn{ padding: 9px 15px; font-size: 13px; }
	.site-header .logo img{ height: 40px; }
	.cover-copy h1{ font-size: 41px; }
}

/* ============== SUMMER CAMP ============== */
:root{ --navy:#1E2A63; --camp-green:#7FB53A; --camp-green-d:#5E9326; --camp-blue:#6FA8D6; }
.nav-camp{ color: var(--orange) !important; font-weight: 700; }
.camp{ background: var(--cream); }
/* camp hero */
/* ---- Cover / poster ---- */
.camp-cover-wrap{ padding: 56px 40px 70px; background: var(--cream); }
.camp-cover{ position: relative; max-width: 1080px; margin: 0 auto; padding: 88px 60px 70px; text-align: center;
	background:
		radial-gradient(120% 80% at 50% -10%, rgba(255,214,90,.55), rgba(255,214,90,0) 45%),
		linear-gradient(180deg, #BFE3F7 0%, #DCEFFB 42%, #F4FBFF 100%);
	border-radius: 46px; overflow: hidden;
	box-shadow: 0 36px 80px rgba(46,80,120,.22), inset 0 0 0 6px rgba(255,255,255,.55);
	border: 3px solid #fff; }
.camp-cover-deco{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.camp-cover-deco .sun-glow{ position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(255,200,40,.45), transparent 62%); }
.camp-cover-deco .cloud{ position: absolute; display: block; filter: drop-shadow(0 10px 16px rgba(80,130,170,.18)); }
.camp-cover-deco .cloud svg{ width: 100%; height: auto; display: block; }
.camp-cover-deco .dot{ position: absolute; width: 18px; height: 18px; border-radius: 50%; }
.camp-cover-deco .d1{ background: var(--orange); top: 120px; left: 16%; }
.camp-cover-deco .d2{ background: var(--camp-green); top: 230px; left: 10%; width: 13px; height: 13px; }
.camp-cover-deco .d3{ background: var(--coral); top: 100px; right: 18%; width: 14px; height: 14px; }
.camp-cover-deco .d4{ background: var(--yellow); top: 250px; right: 12%; }
.camp-cover-deco .d5{ background: var(--camp-blue); bottom: 220px; left: 14%; width: 14px; height: 14px; }
.camp-cover-deco .d6{ background: var(--orange); bottom: 250px; right: 16%; width: 13px; height: 13px; }
.camp-cover > *{ position: relative; z-index: 2; }
/* badges */
.camp-flag{ position: absolute; top: 30px; left: 30px; z-index: 4; background: var(--orange); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 17px; letter-spacing: 1px; padding: 11px 22px; border-radius: 14px; transform: rotate(-4deg); box-shadow: 0 12px 24px rgba(249,125,1,.34); }
.camp-open{ position: absolute; top: 34px; right: 30px; z-index: 4; background: var(--camp-green); color: #fff; font-family: var(--font-title); font-weight: 600; font-size: 16px; padding: 10px 20px; border-radius: 999px; transform: rotate(3deg); box-shadow: 0 12px 24px rgba(94,147,38,.3); }
/* official logo */
.camp-officlogo{ width: 100%; max-width: 440px; margin: 6px auto 10px; display: block; filter: drop-shadow(0 14px 26px rgba(46,80,120,.16)); }
/* meta pills */
.camp-meta{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.camp-dates-pill{ background: var(--navy); color: #fff; font-family: var(--font-title); font-weight: 600; font-size: 19px; padding: 12px 26px; border-radius: 999px; }
.camp-age-pill{ background: #fff; color: var(--navy); font-family: var(--font-title); font-weight: 600; font-size: 19px; padding: 12px 26px; border-radius: 999px; box-shadow: 0 6px 16px rgba(46,80,120,.12); }
.camp-actions{ margin: 30px 0 6px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.camp-ghost{ background: #fff; color: var(--navy); border: 2px solid var(--navy); }
/* photo cluster */
.camp-photos{ display: flex; justify-content: center; gap: 18px; margin-top: 44px; }
.camp-photos .cp{ width: 150px; height: 150px; border-radius: 22px; background-size: cover; background-position: center; border: 6px solid #fff; box-shadow: 0 16px 30px rgba(46,80,120,.22); display: block; }

/* ---- Program modal ---- */
.cprog-overlay{ position: fixed; inset: 0; z-index: 9999; background: rgba(18,26,52,.55); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); display: flex; align-items: flex-start; justify-content: center; padding: 48px 22px; overflow-y: auto; opacity: 0; transition: opacity .28s ease; }
.cprog-overlay[hidden]{ display: none; }
.cprog-overlay.is-open{ opacity: 1; }
body.cprog-lock{ overflow: hidden; }
.cprog{ position: relative; width: 100%; max-width: 880px; margin: auto; background: var(--cream); border-radius: 32px; overflow: hidden; box-shadow: 0 40px 90px rgba(10,20,50,.4); transform: translateY(24px) scale(.98); transition: transform .3s cubic-bezier(.22,.7,.25,1); }
.cprog-overlay.is-open .cprog{ transform: none; }
.cprog-close{ position: absolute; top: 16px; right: 18px; z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--navy); font-size: 32px; line-height: 1; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.18); transition: transform .15s ease; }
.cprog-close:hover{ transform: rotate(90deg); }
.cprog-head{ background: linear-gradient(160deg, #2E3E86, var(--navy)); color: #fff; text-align: center; padding: 52px 50px 40px; }
.cprog-eyebrow{ font-family: var(--font-title); font-weight: 600; font-size: 16px; letter-spacing: 3px; color: var(--yellow); }
.cprog-head h3{ font-size: clamp(28px, 4vw, 42px); margin: 12px 0 10px; }
.cprog-head p{ font-size: 19px; line-height: 1.5; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto; }
.cprog-facts{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.cprog-facts span{ background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.3); border-radius: 999px; padding: 9px 20px; font-family: var(--font-title); font-weight: 600; font-size: 16px; }
.cprog-head-cta{ display: inline-block; margin-top: 24px; background: var(--orange); color: #fff; font-family: var(--font-title); font-weight: 600; font-size: 19px; padding: 14px 34px; border-radius: 999px; text-decoration: none; box-shadow: 0 12px 26px rgba(249,125,1,.36); transition: transform .15s ease; }
.cprog-head-cta:hover{ transform: translateY(-2px); }
.cprog-body{ padding: 44px 50px 50px; }
.cprog-area{ display: flex; gap: 30px; align-items: center; padding: 26px 0; border-bottom: 2px solid rgba(154,134,111,.16); }
.cprog-area:last-of-type{ border-bottom: none; }
.cprog-area--alt{ flex-direction: row-reverse; }
.cprog-pic{ flex: 0 0 240px; height: 200px; border-radius: 22px; background-size: cover; background-position: center; box-shadow: 0 14px 30px rgba(91,70,50,.18); border: 5px solid #fff; position: relative; }
.cprog-pic::after{ content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: var(--acc); border-radius: 0 0 16px 16px; }
.cprog-txt{ flex: 1; }
.cprog-en{ font-family: var(--font-title); font-weight: 700; font-size: 20px; letter-spacing: 1px; }
.cprog-txt h4{ font-size: 30px; color: var(--ink); margin: 4px 0 10px; }
.cprog-txt p{ font-size: 19px; line-height: 1.6; color: var(--ink-soft); }
.cprog-cta{ text-align: center; margin-top: 40px; padding-top: 34px; border-top: 2px solid rgba(154,134,111,.16); }
.cprog-cta p{ font-family: var(--font-title); font-weight: 600; font-size: 24px; color: var(--navy); margin-bottom: 18px; }
.cprog-wa{ margin-top: 16px; font-size: 18px; color: var(--ink-soft); }
.cprog-wa b{ color: var(--camp-green-d); }
/* section subheadings inside modal */
.cprog-section{ font-family: var(--font-title); font-weight: 700; font-size: clamp(26px, 3.4vw, 34px); color: var(--orange); text-align: center; margin: 50px 0 24px; }
.cprog-body .ptier{ text-align: left; }
/* blue step cards (as before) */
.cprog-steps{ margin-top: 6px; }
.cprog .camp-step{ background: linear-gradient(165deg, #2E3E86, var(--navy)); border: none; box-shadow: 0 16px 32px rgba(30,42,99,.26); }
.cprog .camp-step h4{ color: #fff; }
.cprog .camp-step p{ color: rgba(255,255,255,.86); }
.cprog .camp-step b{ color: var(--yellow); }

@media (max-width: 560px){
	.cprog-overlay{ padding: 0; }
	.cprog{ border-radius: 0; min-height: 100%; }
	.cprog-head{ padding: 64px 24px 32px; }
	.cprog-body{ padding: 30px 22px 40px; }
	.cprog-area, .cprog-area--alt{ flex-direction: column; gap: 16px; text-align: center; }
	.cprog-pic{ flex: 0 0 auto; width: 100%; height: 200px; }
	.cprog-txt h4{ font-size: 26px; }
}
/* intro */
.camp-intro{ background: var(--camp-green); color: #fff; text-align: center; padding: 64px 0; }
.camp-intro h3{ font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; color: #fff; }
.camp-intro p{ font-size: 20px; line-height: 1.6; opacity: .96; max-width: 760px; margin: 0 auto; }
.camp-pills{ display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.camp-pills span{ background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.4); border-radius: 999px; padding: 11px 24px; font-family: var(--font-title); font-weight: 600; font-size: 19px; }
/* blocks */
.camp-block{ padding: 80px 0; }
.camp-precios{ background: #FFF3DD; }
.camp-head{ text-align: center; margin-bottom: 48px; }
.camp-eyebrow{ display: inline-block; font-family: var(--font-title); font-weight: 600; font-size: 18px; letter-spacing: 3px; color: var(--camp-green-d); background: rgba(127,181,58,.14); padding: 8px 20px; border-radius: 999px; }
.camp-eyebrow.light{ color: var(--yellow); background: rgba(255,193,7,.16); }
.camp-head h3{ font-size: clamp(32px, 4.6vw, 52px); color: var(--orange); margin: 14px 0 8px; }
.camp-precios .camp-head h3{ color: var(--camp-green-d); }
.camp-head p{ font-size: 20px; color: var(--ink-soft); }
/* areas */
.camp-areas{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.camp-area{ background: #fff; border-radius: 26px; padding: 36px 30px; box-shadow: 0 16px 36px rgba(91,70,50,.08); border-top: 7px solid var(--orange); }
.camp-area:nth-child(2){ border-top-color: var(--camp-green); }
.camp-area:nth-child(3){ border-top-color: var(--camp-blue); }
.camp-area:nth-child(4){ border-top-color: var(--coral); }
.camp-area:nth-child(5){ border-top-color: var(--yellow); }
.camp-area .emoji{ font-size: 50px; }
.camp-area .en{ font-family: var(--font-title); font-weight: 700; font-size: 23px; color: var(--navy); margin: 12px 0 2px; letter-spacing: 1px; }
.camp-area h4{ font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.camp-area p{ font-size: 18px; line-height: 1.5; color: var(--ink-soft); }
/* precios */
.ptier{ background: #fff; border-radius: 24px; padding: 32px 38px; margin-bottom: 22px; box-shadow: 0 12px 28px rgba(91,70,50,.08); }
.ptier-tt{ display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.ptier-tt h4{ font-size: 28px; color: var(--navy); }
.ptier-tt .tag{ font-family: var(--font-title); font-weight: 600; font-size: 16px; color: #fff; background: var(--orange); padding: 6px 16px; border-radius: 999px; }
.ptier.special .ptier-tt .tag{ background: var(--camp-green); }
.ptier.twins .ptier-tt .tag{ background: var(--camp-blue); }
.prow{ display: flex; gap: 16px; }
.pcell{ flex: 1; background: var(--cream); border-radius: 16px; padding: 22px; text-align: center; }
.pcell .d{ font-family: var(--font-title); font-weight: 600; font-size: 20px; color: var(--ink); }
.pcell .pr{ font-family: var(--font-title); font-weight: 700; font-size: 34px; color: var(--orange); margin: 8px 0 2px; }
.ptier.special .pcell .pr{ color: var(--camp-green-d); }
.ptier.twins .pcell .pr{ color: var(--camp-blue); }
.pcell .hr{ font-size: 16px; color: var(--ink-soft); }
.pnote{ font-size: 18px; color: var(--ink-soft); margin-top: 14px; }
.pnote b{ color: var(--navy); }
/* inscripcion */
.camp-insc{ background: var(--navy); color: #fff; }
.camp-insc .camp-head h3{ color: #fff; }
.camp-steps{ display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 48px; }
.camp-step{ background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.14); border-radius: 22px; padding: 32px 26px; }
.camp-step .n{ width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 30px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.camp-step h4{ font-size: 24px; color: #fff; margin-bottom: 8px; }
.camp-step p{ font-size: 19px; line-height: 1.5; color: rgba(255,255,255,.85); }
.camp-step b{ color: var(--yellow); }
/* form */
.camp-form{ background: #fff; border-radius: 30px; padding: 48px 50px; color: var(--ink); max-width: 860px; margin: 0 auto; }
.camp-form h4{ font-size: 34px; color: var(--navy); text-align: center; margin-bottom: 6px; }
.camp-form .sub{ text-align: center; color: var(--ink-soft); font-size: 20px; margin-bottom: 32px; }
.camp-form .frow{ display: flex; gap: 18px; margin-bottom: 18px; }
.camp-form .field{ flex: 1; }
.camp-form label{ display: block; font-family: var(--font-title); font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.camp-form input, .camp-form select{ width: 100%; font-family: var(--font-body); font-size: 19px; padding: 15px 16px; border: 2px solid #E8DFCE; border-radius: 13px; background: var(--cream); color: var(--ink); }
.camp-submit{ width: 100%; margin-top: 12px; background: var(--orange); color: #fff; border: none; font-family: var(--font-title); font-weight: 600; font-size: 24px; padding: 18px; border-radius: 999px; box-shadow: 0 14px 30px rgba(249,125,1,.3); cursor: pointer; }
.camp-wa{ text-align: center; margin-top: 18px; font-size: 19px; color: var(--ink-soft); }
.camp-wa b{ color: var(--camp-green-d); }
/* form replaced by direct link to Google Form */
.camp-cta{ text-align: center; max-width: 680px; }
a.camp-submit{ display: inline-block; width: auto; text-decoration: none; margin-top: 24px; padding: 20px 48px; transition: transform .15s ease, box-shadow .15s ease; }
a.camp-submit:hover{ transform: translateY(-2px); box-shadow: 0 18px 38px rgba(249,125,1,.4); }

@media (max-width: 920px){
	.camp-areas{ grid-template-columns: repeat(2,1fr); }
	.camp-steps{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
	.camp-cover-wrap{ padding: 30px 16px 44px; }
	.camp-cover{ padding: 80px 22px 50px; border-radius: 34px; }
	.camp-flag{ top: 22px; left: 50%; transform: translateX(-50%) rotate(-2deg); font-size: 14px; padding: 9px 18px; }
	.camp-open{ display: none; }
	.camp-officlogo{ max-width: 300px; }
	.camp-meta{ gap: 10px; }
	.camp-dates-pill, .camp-age-pill{ font-size: 16px; padding: 10px 18px; }
	.camp-actions{ width: 100%; }
	.camp-actions .btn{ flex: 1 1 100%; }
	.camp-photos{ gap: 10px; margin-top: 34px; }
	.camp-photos .cp{ width: 92px; height: 92px; border-radius: 16px; border-width: 4px; }
	.camp-block{ padding: 56px 0; }
	.camp-areas{ grid-template-columns: 1fr; }
	.camp-pills span{ font-size: 17px; padding: 10px 18px; }
	.ptier{ padding: 24px 18px; }
	.prow{ flex-direction: column; gap: 12px; }
	.pcell{ display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 16px 20px; }
	.pcell .d{ flex: 1; font-size: 19px; line-height: 1.2; }
	.pcell .pr{ margin: 0; font-size: 27px; white-space: nowrap; }
	.pcell .hr{ display: none; }
	.camp-form{ padding: 34px 22px; }
	.camp-form .frow{ flex-direction: column; gap: 18px; }
}

/* ============== INSCRIPCIÓN MODALS (domicilio / activame) ============== */
.insc-overlay{ position: fixed; inset: 0; z-index: 9999; background: rgba(18,26,52,.55); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); display: flex; align-items: flex-start; justify-content: center; padding: 48px 22px; overflow-y: auto; opacity: 0; transition: opacity .28s ease; }
.insc-overlay[hidden]{ display: none; }
.insc-overlay.is-open{ opacity: 1; }
.insc{ position: relative; width: 100%; max-width: 640px; margin: auto; background: var(--cream); border-radius: 30px; overflow: hidden; box-shadow: 0 40px 90px rgba(10,20,50,.4); transform: translateY(22px) scale(.98); transition: transform .3s cubic-bezier(.22,.7,.25,1); }
.insc-overlay.is-open .insc{ transform: none; }
.insc-close{ position: absolute; top: 14px; right: 16px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--navy); font-size: 30px; line-height: 1; cursor: pointer; box-shadow: 0 6px 16px rgba(0,0,0,.18); transition: transform .15s ease; }
.insc-close:hover{ transform: rotate(90deg); }
.insc-head{ color: #fff; text-align: center; padding: 44px 40px 34px; }
.insc-head.dom{ background: linear-gradient(160deg, #FFA143, var(--orange)); }
.insc-head.act{ background: linear-gradient(160deg, #2E3E86, var(--navy)); }
.insc-eyebrow{ font-family: var(--font-title); font-weight: 600; font-size: 15px; letter-spacing: 3px; color: rgba(255,255,255,.85); }
.insc-head h3{ font-size: clamp(26px, 4vw, 36px); margin: 8px 0 8px; }
.insc-head p{ font-size: 18px; color: rgba(255,255,255,.9); }
.insc-body{ padding: 36px 40px 42px; }
.insc-steps{ display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.insc-step{ display: flex; gap: 18px; align-items: flex-start; }
.insc-step .n{ flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 24px; display: flex; align-items: center; justify-content: center; }
.insc-step h4{ font-family: var(--font-title); font-weight: 600; font-size: 22px; color: var(--navy); margin-bottom: 2px; }
.insc-step p{ font-size: 18px; line-height: 1.45; color: var(--ink-soft); }
.insc-step b{ color: var(--camp-green-d); }
.insc-bank{ background: #fff; border: 2px dashed rgba(249,125,1,.4); border-radius: 20px; padding: 24px 26px; margin-bottom: 28px; }
.insc-bank-top{ display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 18px; text-align: center; }
.insc-bank-top .ib-label{ font-family: var(--font-title); font-weight: 600; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); }
.insc-bank-top .ib-name{ font-size: 17px; color: var(--ink-soft); line-height: 1.35; }
.insc-bank-top .ib-name b{ color: var(--ink); }
.insc-bank-top .ib-ced{ font-size: 15px; color: var(--ink-soft); white-space: nowrap; }
.insc-accts{ display: flex; flex-direction: column; gap: 12px; }
.acct{ display: flex; align-items: center; gap: 14px; background: var(--cream); border-radius: 14px; padding: 14px 18px; }
.acct .bk{ font-family: var(--font-title); font-weight: 600; font-size: 18px; color: var(--navy); flex: 1; }
.acct .no{ font-family: var(--font-title); font-weight: 700; font-size: 24px; color: var(--orange); letter-spacing: 1px; }
.acct .cur{ font-family: var(--font-title); font-weight: 700; font-size: 14px; color: #fff; background: var(--camp-green); padding: 4px 12px; border-radius: 999px; }
.insc-cta{ display: block; width: 100%; text-align: center; text-decoration: none; box-sizing: border-box; }
.insc-wa{ text-align: center; margin-top: 16px; font-size: 17px; color: var(--ink-soft); }
.insc-wa b{ color: var(--camp-green-d); }
@media (max-width: 560px){
	.insc-overlay{ padding: 0; }
	.insc{ border-radius: 0; min-height: 100%; }
	.insc-body{ padding: 28px 20px 36px; }
	.acct{ flex-wrap: wrap; gap: 6px 12px; }
	.acct .no{ font-size: 21px; }
}

/* fix: white title on inscription modal headers + secondary form link */
.insc-head h3{ color: #fff; }
.insc-formlink{ display: block; text-align: center; margin-top: 16px; font-family: var(--font-title); font-weight: 600; font-size: 18px; color: var(--navy); text-decoration: none; border-bottom: 2px solid rgba(30,42,99,.3); width: fit-content; margin-left: auto; margin-right: auto; padding-bottom: 2px; transition: color .15s ease, border-color .15s ease; }
.insc-formlink:hover{ color: var(--orange); border-color: var(--orange); }

/* WhatsApp clickable number chip (visible number + icon, opens chat) */
.wa-num{ display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; background: #25D366; color: #fff !important; font-family: var(--font-title); font-weight: 700; font-size: .92em; line-height: 1; padding: 5px 12px 5px 9px; border-radius: 999px; text-decoration: none; white-space: nowrap; box-shadow: 0 4px 12px rgba(37,211,102,.32); transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.wa-num:hover{ background: #1EBE5A; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37,211,102,.42); }
.wa-num .wa-ic{ width: 17px; height: 17px; flex: 0 0 auto; }

/* ============== JUGUETES RECOMENDADOS (Amazon) — franja abierta ============== */
.toys-section{ position: relative; overflow: hidden; padding: 96px 0 104px;
	background: var(--navy); }
.toys-section .container{ position: relative; z-index: 3; }
/* atmosphere */
.toys-glow{ position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.toys-glow-a{ top: -140px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,192,0,.20), transparent 68%); }
.toys-glow-b{ bottom: -180px; left: -140px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(255,192,0,.10), transparent 70%); }
.toys-dot{ position: absolute; border-radius: 50%; z-index: 1; opacity: .55; pointer-events: none; }
.toys-dot-1{ top: 70px; left: 8%; width: 14px; height: 14px; background: var(--coral); }
.toys-dot-2{ bottom: 90px; right: 12%; width: 20px; height: 20px; background: var(--green); }
.toys-dot-3{ top: 120px; right: 26%; width: 10px; height: 10px; background: var(--yellow); }

.toys-inner{ display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 56px; max-width: 1040px; }

/* floating emblem (no card) */
.toys-emblem{ display: flex; flex-direction: column; align-items: center; gap: 20px; }
.store-bag{ width: 132px; height: 132px; border-radius: 30px; background: linear-gradient(160deg, #FFD24D, #FFB300); display: flex; align-items: center; justify-content: center; color: var(--navy); box-shadow: 0 22px 48px rgba(0,0,0,.34); animation: toysFloat 5s ease-in-out infinite; }
.store-bag svg{ width: 68px; height: 68px; }
.store-wordmark{ font-family: var(--font-title); font-weight: 700; font-size: 38px; letter-spacing: 1px; color: var(--yellow); line-height: 1; }
.store-shelf{ display: flex; gap: 12px; }
.store-shelf i{ width: 30px; height: 30px; border-radius: 8px; display: block; box-shadow: 0 6px 14px rgba(0,0,0,.3); }
@keyframes toysFloat{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

/* content directly on navy */
.toys-content{ max-width: 520px; }
.store-eyebrow{ display: inline-block; font-family: var(--font-title); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); background: var(--yellow); padding: 6px 16px; border-radius: 999px; }
.toys-content h2{ font-size: clamp(28px, 3.6vw, 40px); color: #fff; margin: 16px 0 12px; line-height: 1.08; }
.toys-content > p{ font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.8); margin: 0 0 22px; }
.store-feats{ list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; }
.store-feats li{ position: relative; padding-left: 30px; font-size: 16px; color: #fff; font-weight: 600; }
.store-feats li::before{ content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; background: var(--green); color: #fff; border-radius: 50%; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.store-btn{ display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(180deg, #FFD24D, #FFB300); color: var(--navy); font-family: var(--font-title); font-weight: 700; font-size: 18px; padding: 16px 32px; border-radius: 14px; text-decoration: none; box-shadow: 0 12px 30px rgba(0,0,0,.32); transition: transform .15s ease, box-shadow .15s ease, filter .15s ease; }
.store-btn:hover{ filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.4); }
.store-btn .cart{ width: 22px; height: 22px; }
.toys-content > p.store-disc{ font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.42); margin: 30px 0 0; max-width: 440px; }
@media (max-width: 820px){
	.toys-inner{ grid-template-columns: 1fr; gap: 34px; max-width: 540px; text-align: center; }
	.toys-content{ max-width: none; }
	.store-feats{ display: inline-grid; text-align: left; justify-self: center; }
	.store-disc{ max-width: none; }
}
@media (max-width: 560px){
	.toys-section{ padding: 72px 0 84px; }
	.store-bag{ width: 104px; height: 104px; border-radius: 24px; }
	.store-bag svg{ width: 54px; height: 54px; }
	.store-wordmark{ font-size: 32px; }
	.store-btn{ width: 100%; }
}
