*,::before,::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
}

.cc {
	font-family: var(--sans);
	color: var(--text);
	line-height: 1.7;
	font-weight: 300;
}

.cc-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 32px;
}

.cc-center {
	text-align: center;
}

.cc-urgency {
	background: var(--gold);
	color: var(--deep);
	text-align: center;
	padding: 11px 20px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .04em;
}

.cc-urgency strong {
	font-weight: 700;
}

.cc-hero {
	min-height: 100vh;
	background-image: url('https://hannacanon-coach.com/wp-content/uploads/2025/02/te-ayudio-a.png');
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px;
}

.cc-hero-overlay {
	position: absolute;
	background: linear-gradient(135deg,rgba(26,23,20,.88) 0%,rgba(26,23,20,.72) 50%,rgba(26,23,20,.60) 100%);
}

.cc-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: center;
}

.cc-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 26px;
	border: 1px solid rgba(201,169,110,.4);
	padding: 7px 16px;
	border-radius: 2px;
}

.cc-hero-tag-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
}

.cc-hero h1 {
	font-family: var(--serif);
	font-size: clamp(32px,3.8vw,56px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.14;
	margin-bottom: 22px;
}

.cc-hero h1 em {
	font-style: italic;
	color: var(--gold);
}

.cc-hero-sub {
	font-size: 18px;
	color: rgba(255,255,255,.62);
	font-weight: 300;
	line-height: 1.78;
	margin-bottom: 14px;
	max-width: 500px;
}

.cc-hero-sub strong {
	color: rgba(255,255,255,.92);
	font-weight: 400;
}

.cc-hero-note {
	font-size: 13px;
	color: rgba(255,255,255,.32);
	margin-bottom: 38px;
	font-style: italic;
}

.cc-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.cc-btn-hero {
	background: var(--gold);
	color: var(--deep);
	font-size: 16px;
	font-weight: 500;
	padding: 17px 38px;
	border-radius: var(--r);
	text-decoration: none;
	display: inline-block;
	letter-spacing: .02em;
}

.cc-btn-ghost {
	color: rgba(255,255,255,.7);
	font-size: 15px;
	padding: 17px 26px;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--r);
	text-decoration: none;
	display: inline-block;
}

.cc-hero-micro {
	font-size: 12px;
	color: rgba(255,255,255,.28);
	margin-top: 10px;
}

.cc-hero-stats {
	display: flex;
	gap: 34px;
	padding-top: 38px;
	border-top: 1px solid rgba(255,255,255,.1);
}

.cc-stat-n {
	font-family: var(--serif);
	font-size: 38px;
	color: var(--gold);
	display: block;
	line-height: 1;
}

.cc-stat-l {
	font-size: 11px;
	color: rgba(255,255,255,.38);
	letter-spacing: .05em;
	margin-top: 5px;
	display: block;
}

.cc-hero-card {
	background: var(--white);
	border-radius: 2px;
	padding: 34px 30px;
	position: relative;
}

.cc-hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold);
}

.cc-card-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
	background: var(--gold-l);
	color: var(--gold-d);
	padding: 5px 12px;
	border-radius: 2px;
	margin-bottom: 14px;
}

.cc-hero-card h3 {
	font-family: var(--serif);
	font-size: 20px;
	color: var(--deep);
	line-height: 1.3;
	margin-bottom: 6px;
}

.cc-hero-card > p {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 22px;
	line-height: 1.6;
}

.cc-check-list {
	margin-bottom: 20px;
}

.cc-check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--text);
	margin-bottom: 9px;
}

.cc-check-icon {
	color: var(--gold);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.cc-input {
	width: 100%;
	padding: 12px 15px;
	font-size: 14px;
	font-family: var(--sans);
	border: 1px solid #DDD;
	border-radius: var(--r);
	margin-bottom: 9px;
	color: var(--text);
	background: var(--warm);
	outline: none;
}

.cc-submit {
	width: 100%;
	padding: 14px;
	background: var(--deep);
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	font-family: var(--sans);
	border: none;
	border-radius: var(--r);
	cursor: pointer;
	letter-spacing: .03em;
}

.cc-privacy {
	font-size: 11px;
	color: var(--muted);
	text-align: center;
	margin-top: 9px;
}

.cc-logos {
	background: var(--warm);
	padding: 22px 0;
	border-top: 1px solid var(--warm2);
	border-bottom: 1px solid var(--warm2);
}

.cc-logos-label {
	font-size: 11px;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 14px;
	text-align: center;
}

.cc-logos-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.cc-logo-img {
	height: 36px;
	width: auto;
	opacity: .45;
	filter: grayscale(100%);
	object-fit: contain;
}

.cc-eye {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 13px;
	display: block;
}

.cc-title {
	font-family: var(--serif);
	font-size: clamp(26px,3vw,44px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--deep);
}

.cc-title em {
	font-style: italic;
	color: var(--gold);
}

.cc-title-white {
	color: var(--white);
}

.cc-lead {
	font-size: 18px;
	color: var(--muted);
	font-weight: 300;
	line-height: 1.75;
	max-width: 620px;
}

.cc-lead-white {
	color: rgba(255,255,255,.52);
}

.cc-rule {
	width: 48px;
	height: 2px;
	background: var(--gold);
	margin: 20px 0;
}

.cc-rule-c {
	margin-left: auto;
	margin-right: auto;
}

.cc-btn-p {
	background: var(--gold);
	color: var(--deep);
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 500;
	padding: 14px 32px;
	border-radius: var(--r);
	text-decoration: none;
	display: inline-block;
	letter-spacing: .03em;
}

.cc-btn-outline {
	color: var(--deep);
	font-size: 15px;
	padding: 14px 28px;
	border: 1px solid var(--gold-d);
	border-radius: var(--r);
	text-decoration: none;
	display: inline-block;
}

.cc-problema {
	background: var(--white);
	padding: 88px 0;
}

.cc-prob-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.cc-prob-cards {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 34px;
}

.cc-pc {
	display: flex;
	gap: 16px;
	padding: 22px 20px;
	border: 1px solid var(--warm2);
	border-radius: 2px;
	background: var(--warm);
	align-items: flex-start;
}

.cc-pc-icon {
	font-size: 22px;
	flex-shrink: 0;
	width: 36px;
	text-align: center;
}

.cc-pc-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--deep);
	margin-bottom: 5px;
}

.cc-pc-text {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

.cc-diag-box {
	background: var(--deep);
	border-radius: 2px;
	padding: 42px 38px;
	position: sticky;
	top: 90px;
}

.cc-diag-box h3 {
	font-family: var(--serif);
	font-size: 23px;
	color: var(--white);
	margin-bottom: 8px;
	line-height: 1.3;
}

.cc-diag-box > p {
	font-size: 14px;
	color: rgba(255,255,255,.44);
	margin-bottom: 26px;
	line-height: 1.65;
}

.cc-diag-box .cc-input {
	background: rgba(255,255,255,.07);
	border-color: rgba(255,255,255,.18);
	color: var(--white);
}

.cc-diag-box .cc-submit {
	background: var(--gold);
	color: var(--deep);
}

.cc-diag-box .cc-privacy {
	color: rgba(255,255,255,.28);
}

.cc-parallax-ana {
	background-image: url('https://hannacanon-coach.com/wp-content/uploads/2025/02/amor-propio-3.png');
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 100px 0;
}

.cc-parallax-overlay-warm {
	position: absolute;
	background: linear-gradient(to right,rgba(26,23,20,.85) 0%,rgba(26,23,20,.7) 55%,rgba(26,23,20,.5) 100%);
}

.cc-parallax-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.cc-parallax-quote {
	font-family: var(--serif);
	font-size: clamp(20px,2.5vw,30px);
	font-style: italic;
	color: var(--white);
	line-height: 1.55;
	margin-bottom: 20px;
}

.cc-parallax-quote em {
	color: var(--gold);
}

.cc-parallax-source {
	font-size: 13px;
	color: rgba(201,169,110,.7);
	letter-spacing: .08em;
}

.cc-metodo {
	background: var(--deep);
	padding: 88px 0;
}

.cc-metodo-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 60px;
}

.cc-cohar-track {
	max-width: 780px;
	margin: 0 auto;
}

.cc-cohar-step {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 26px;
	align-items: start;
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.cc-cohar-step:last-child {
	border-bottom: none;
}

.cc-cohar-letter {
	font-family: var(--serif);
	font-size: 50px;
	font-weight: 700;
	color: var(--gold);
	opacity: .8;
	line-height: 1;
	padding-top: 2px;
}

.cc-cohar-label {
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(201,169,110,.6);
	margin-bottom: 5px;
	font-weight: 500;
}

.cc-cohar-title {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--white);
	margin-bottom: 9px;
	line-height: 1.3;
}

.cc-cohar-desc {
	font-size: 15px;
	color: rgba(255,255,255,.48);
	line-height: 1.75;
}

.cc-cohar-desc strong {
	color: rgba(255,255,255,.78);
	font-weight: 400;
}

.cc-metodo-cta {
	text-align: center;
	margin-top: 54px;
}

.cc-metodo-cta p {
	color: rgba(255,255,255,.32);
	font-size: 14px;
	margin-bottom: 14px;
}

.cc-autoridad {
	background: var(--warm);
	padding: 88px 0;
}

.cc-stats-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 2px;
	margin: 52px 0;
	background: var(--warm2);
}

.cc-stat-box {
	background: var(--white);
	padding: 38px 26px;
	text-align: center;
}

.cc-stat-big {
	font-family: var(--serif);
	font-size: 50px;
	font-weight: 700;
	color: var(--deep);
	line-height: 1;
	display: block;
}

.cc-stat-suf {
	font-size: 22px;
	color: var(--gold);
}

.cc-stat-desc {
	font-size: 13px;
	color: var(--muted);
	margin-top: 7px;
	display: block;
	line-height: 1.4;
}

.cc-aut-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 44px;
}

.cc-aut-block {
	background: var(--white);
	border: 1px solid var(--warm2);
	border-radius: 2px;
	padding: 34px 30px;
}

.cc-aut-block-title {
	font-size: 11px;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 18px;
}

.cc-cred-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 13px;
}

.cc-cred-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	margin-top: 10px;
	flex-shrink: 0;
}

.cc-cred-text {
	font-size: 15px;
	color: var(--text);
}

.cc-cred-text strong {
	font-weight: 500;
	color: var(--deep);
}

.cc-client-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 12px;
	margin-top: 8px;
}

.cc-client-box {
	border: 1px solid var(--warm2);
	border-radius: 2px;
	padding: 10px 8px;
	text-align: center;
}

.cc-client-logo {
	max-height: 40px;
	width: auto;
	max-width: 100%;
	opacity: .55;
	filter: grayscale(100%);
}

.cc-tl-row {
	display: flex;
	gap: 15px;
	padding-bottom: 18px;
	position: relative;
}

.cc-tl-row:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 22px;
	bottom: 0;
	width: .5px;
	background: var(--warm2);
}

.cc-tl-dot {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--gold-l);
	border: 1.5px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 500;
	color: var(--gold-d);
	flex-shrink: 0;
}

.cc-tl-text {
	font-size: 14px;
	color: var(--muted);
	padding-top: 2px;
}

.cc-tl-text strong {
	color: var(--deep);
	font-weight: 500;
}

.cc-oferta {
	background: var(--white);
	padding: 88px 0;
}

.cc-oferta-head {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.cc-prog-main {
	background: var(--deep);
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 22px;
}

.cc-prog-ribbon {
	background: var(--gold);
	padding: 10px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cc-prog-ribbon-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--deep);
}

.cc-prog-ribbon-spots {
	font-size: 12px;
	color: var(--deep);
	opacity: .7;
}

.cc-prog-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.cc-prog-left {
	padding: 52px 44px 44px;
}

.cc-prog-right {
	padding: 52px 44px 44px;
	border-left: 1px solid rgba(255,255,255,.08);
}

.cc-prog-eye {
	font-size: 10px;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(201,169,110,.6);
	margin-bottom: 11px;
}

.cc-prog-title {
	font-family: var(--serif);
	font-size: 28px;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 14px;
}

.cc-prog-desc {
	font-size: 15px;
	color: rgba(255,255,255,.5);
	line-height: 1.75;
	margin-bottom: 30px;
}

.cc-prog-price-label {
	font-size: 12px;
	color: rgba(255,255,255,.34);
	margin-bottom: 5px;
}

.cc-prog-price {
	font-family: var(--serif);
	font-size: 46px;
	color: var(--gold);
	line-height: 1;
}

.cc-prog-price-sub {
	font-size: 13px;
	color: rgba(255,255,255,.34);
	margin-top: 5px;
}

.cc-prog-cta {
	display: inline-block;
	background: var(--gold);
	color: var(--deep);
	font-size: 15px;
	font-weight: 500;
	padding: 15px 34px;
	border-radius: var(--r);
	text-decoration: none;
	margin-top: 26px;
}

.cc-prog-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.cc-prog-features li {
	display: flex;
	gap: 11px;
	font-size: 15px;
	color: rgba(255,255,255,.64);
	align-items: flex-start;
	line-height: 1.5;
}

.cc-prog-features li::before {
	content: '-';
	color: var(--gold);
	font-weight: 700;
	flex-shrink: 0;
}

.cc-prog-guarantee {
	margin-top: 30px;
	padding: 15px 18px;
	border: 1px solid rgba(201,169,110,.2);
	border-radius: var(--r);
}

.cc-prog-guarantee p {
	font-size: 13px;
	color: rgba(255,255,255,.44);
	line-height: 1.6;
}

.cc-prog-guarantee p strong {
	color: var(--gold);
	font-weight: 500;
}

.cc-other-progs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.cc-op-card {
	border: 1px solid var(--warm2);
	border-radius: 2px;
	overflow: hidden;
}

.cc-op-head {
	padding: 22px 22px 18px;
	background: var(--warm);
}

.cc-op-type {
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 7px;
}

.cc-op-name {
	font-family: var(--serif);
	font-size: 20px;
	color: var(--deep);
	margin-bottom: 7px;
}

.cc-op-price {
	font-size: 22px;
	font-weight: 300;
	color: var(--deep);
}

.cc-op-body {
	padding: 18px 22px 22px;
}

.cc-op-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-bottom: 18px;
}

.cc-op-list li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
	align-items: flex-start;
}

.cc-op-list li::before {
	content: '-';
	color: var(--gold);
	flex-shrink: 0;
}

.cc-op-btn {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	padding: 11px;
	border: 1px solid var(--gold-d);
	color: var(--gold-d);
	border-radius: var(--r);
	text-decoration: none;
}

.cc-testimonios {
	background: var(--warm);
	padding: 88px 0;
}

.cc-test-head {
	text-align: center;
	max-width: 580px;
	margin: 0 auto 52px;
}

.cc-test-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 18px;
	margin-bottom: 28px;
}

.cc-tc {
	background: var(--white);
	border: 1px solid var(--warm2);
	padding: 30px 22px;
	border-radius: 2px;
}

.cc-tc-stars {
	color: var(--gold);
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}

.cc-tc-quote {
	font-family: var(--serif);
	font-style: italic;
	font-size: 16px;
	color: var(--deep);
	line-height: 1.65;
	margin-bottom: 22px;
}

.cc-tc-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cc-tc-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--gold-l);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--gold-d);
	flex-shrink: 0;
}

.cc-tc-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--deep);
}

.cc-tc-result {
	font-size: 11px;
	color: var(--gold-d);
	font-weight: 500;
	margin-top: 3px;
	letter-spacing: .03em;
}

.cc-test-feat {
	background: var(--deep);
	border-radius: 2px;
	padding: 50px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 44px;
	align-items: center;
}

.cc-tf-quote {
	font-family: var(--serif);
	font-size: 22px;
	font-style: italic;
	color: var(--white);
	line-height: 1.55;
}

.cc-tf-by {
	text-align: right;
	min-width: 160px;
}

.cc-tf-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--gold);
	display: block;
	margin-bottom: 3px;
}

.cc-tf-role {
	font-size: 12px;
	color: rgba(255,255,255,.35);
	display: block;
	margin-bottom: 14px;
}

.cc-tf-pill {
	background: rgba(201,169,110,.1);
	border: 1px solid rgba(201,169,110,.2);
	padding: 7px 15px;
	border-radius: var(--r);
	font-size: 12px;
	color: var(--gold);
	font-weight: 500;
	display: inline-block;
}

.cc-blog {
	background: var(--white);
	padding: 88px 0;
}

.cc-blog-head {
	max-width: 620px;
	margin: 0 auto 52px;
	text-align: center;
}

.cc-blog-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 22px;
}

.cc-blog-card {
	border: 1px solid var(--warm2);
	border-radius: 2px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.cc-blog-img {
	height: 156px;
	background: var(--warm);
	position: relative;
	overflow: hidden;
}

.cc-blog-cat {
	position: absolute;
	top: 13px;
	left: 13px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: var(--gold);
	color: var(--deep);
	padding: 4px 10px;
	border-radius: 2px;
}

.cc-blog-body {
	padding: 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cc-blog-date {
	font-size: 11px;
	color: var(--muted);
	margin-bottom: 9px;
}

.cc-blog-title {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--deep);
	line-height: 1.35;
	margin-bottom: 11px;
}

.cc-blog-excerpt {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 18px;
}

.cc-blog-cta-wrap {
	border-top: 1px solid var(--warm2);
	padding-top: 14px;
	margin-top: auto;
}

.cc-blog-cta-btn {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	padding: 9px;
	background: var(--gold-l);
	color: var(--gold-d);
	border-radius: var(--r);
	text-decoration: none;
}

.cc-blog-banner {
	background: var(--deep);
	border-radius: 2px;
	padding: 38px 44px;
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cc-blog-banner h3 {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--white);
	margin-bottom: 5px;
}

.cc-blog-banner p {
	font-size: 14px;
	color: rgba(255,255,255,.44);
}

.cc-lm {
	background-image: url('https://hannacanon-coach.com/wp-content/uploads/2021/05/tree-838667_1280.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 88px 0;
}

.cc-lm-overlay {
	position: absolute;
	background: rgba(26,23,20,.88);
}

.cc-lm-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 76px;
	align-items: center;
}

.cc-lm-bullets {
	list-style: none;
	margin: 30px 0 40px;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.cc-lm-bullets li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: rgba(255,255,255,.64);
	font-size: 16px;
}

.cc-lm-check {
	color: var(--gold);
	flex-shrink: 0;
	margin-top: 3px;
}

.cc-lm-card {
	background: var(--white);
	border-radius: 2px;
	padding: 40px 36px;
	border: 1px solid rgba(201,169,110,.18);
}

.cc-lm-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .13em;
	text-transform: uppercase;
	background: var(--gold-l);
	color: var(--gold-d);
	padding: 5px 12px;
	border-radius: 2px;
	margin-bottom: 14px;
}

.cc-lm-title {
	font-family: var(--serif);
	font-size: 20px;
	color: var(--deep);
	margin-bottom: 6px;
	line-height: 1.3;
}

.cc-lm-sub {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 26px;
	line-height: 1.55;
}

.cc-lm-sp {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--warm2);
}

.cc-lm-avatars {
	display: flex;
}

.cc-lm-avatar {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid var(--white);
	margin-right: -7px;
	background: var(--gold-l);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 700;
	color: var(--gold-d);
}

.cc-lm-sp-text {
	font-size: 12px;
	color: var(--muted);
	padding-left: 4px;
}

.cc-faq {
	background: var(--warm);
	padding: 88px 0;
}

.cc-faq-head {
	max-width: 560px;
	margin: 0 auto 50px;
	text-align: center;
}

.cc-faq-list {
	max-width: 740px;
	margin: 0 auto;
}

.cc-faq-item {
	border-bottom: 1px solid var(--warm2);
}

.cc-faq-cb {
	display: none;
}

.cc-faq-label {
	padding: 21px 0;
	font-size: 17px;
	font-weight: 500;
	color: var(--deep);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.cc-faq-label:hover {
	color: var(--gold);
}

.cc-faq-icon {
	font-size: 20px;
	color: var(--gold);
	transition: transform .2s;
	flex-shrink: 0;
	font-style: normal;
}

.cc-faq-answer {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.75;
	padding-bottom: 21px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}

.cc-faq-cb:checked ~ .cc-faq-label .cc-faq-icon {
	transform: rotate(45deg);
}

.cc-faq-cb:checked ~ .cc-faq-answer {
	max-height: 400px;
}

.cc-cta-final {
	background-image: url('https://hannacanon-coach.com/wp-content/uploads/2021/05/tree-838667_1280.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	position: relative;
	padding: 110px 0;
	text-align: center;
}

.cc-cta-overlay {
	position: absolute;
	background: rgba(26,23,20,.86);
}

.cc-cta-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
}

.cc-cta-pre {
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(201,169,110,.65);
	margin-bottom: 18px;
	display: block;
}

.cc-cta-final h2 {
	font-family: var(--serif);
	font-size: clamp(30px,4vw,52px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.18;
	margin-bottom: 18px;
}

.cc-cta-final h2 em {
	font-style: italic;
	color: var(--gold);
}

.cc-cta-final > div > p {
	font-size: 18px;
	color: rgba(255,255,255,.48);
	line-height: 1.75;
	margin-bottom: 40px;
}

.cc-cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.cc-cta-sub {
	margin-top: 20px;
	font-size: 12px;
	color: rgba(255,255,255,.24);
}

.cc-trust-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 44px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.08);
	flex-wrap: wrap;
}

.cc-trust-item {
	font-size: 13px;
	color: rgba(255,255,255,.3);
	display: flex;
	align-items: center;
	gap: 8px;
}

.cc-trust-icon {
	font-size: 16px;
	color: rgba(201,169,110,.55);
}

.cc-footer {
	background: #0F0D0B;
	padding: 52px 0 26px;
}

.cc-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 52px;
	margin-bottom: 40px;
}

.cc-f-brand {
	font-family: var(--serif);
	font-size: 22px;
	color: var(--gold);
	margin-bottom: 13px;
}

.cc-f-desc {
	font-size: 14px;
	color: rgba(255,255,255,.28);
	line-height: 1.7;
	max-width: 280px;
}

.cc-f-col-title {
	font-size: 10px;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: rgba(255,255,255,.28);
	margin-bottom: 16px;
}

.cc-f-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.cc-f-links a {
	font-size: 14px;
	color: rgba(255,255,255,.38);
	text-decoration: none;
}

.cc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.06);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cc-f-copy {
	font-size: 12px;
	color: rgba(255,255,255,.2);
}

.cc-f-legal {
	display: flex;
	gap: 18px;
}

.cc-f-legal a {
	font-size: 12px;
	color: rgba(255,255,255,.2);
	text-decoration: none;
}

@media(max-width:960px) {
	.cc-hero-inner,.cc-prob-grid,.cc-lm-inner,.cc-prog-body {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.cc-hero,.cc-parallax-ana,.cc-lm,.cc-cta-final {
		background-attachment: scroll;
	}
	
	.cc-stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.cc-aut-cols,.cc-test-feat,.cc-tf-by {
		grid-template-columns: 1fr;
	}
	
	.cc-tf-by {
		text-align: left;
	}
	
	.cc-test-grid,.cc-other-progs,.cc-blog-grid {
		grid-template-columns: 1fr;
	}
	
	.cc-footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.cc-blog-banner,.cc-cta-btns,.cc-trust-row,.cc-hero-stats {
		flex-direction: column;
	}
	
	.cc-prog-left,.cc-prog-right {
		padding: 32px 26px;
	}
}

@media(max-width:600px) {
	.cc-wrap {
		padding: 0 20px;
	}
	
	.cc-stats-grid,.cc-cta-btns {
		grid-template-columns: 1fr;
	}
}

/* ── OCULTAR TÍTULO DE PÁGINA Y AJUSTES DEL TEMA ── */
.page-id-2443 .entry-header,
.page-id-2443 .entry-title,
.page-id-2443 h1.entry-title,
.page-id-2443 .page-header {
	display: none !important;
}

.page-id-2443 .entry-content {
	padding: 0 !important;
	margin: 0 !important;
}

.page-id-2443 .site-content, 
.page-id-2443 article,
.page-id-2443 .entry {
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}

.page-id-2443 .cc-urgency {
	display: block !important;
}

.page-id-2443 .site-main {
	padding: 0 !important;
}
.hero-flex{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:flex-start;
  justify-content:space-between;
}

.hero-flex > div:nth-child(1){
  order:2;
}

.hero-flex > div:nth-child(2){
  order:1;
}

@media (max-width:768px){
  .hero-flex{
    flex-direction:column;
  }

  .hero-flex > div{
    order:unset !important;
  }
}

/* MENU PRINCIPAL - Mostrar todos los ítems */
.main-navigation .main-menu {
  flex-wrap: nowrap !important;
  overflow: visible !important;
}
.main-navigation .main-menu > li > a {
  font-size: 11.5px !important;
  letter-spacing: 0.06em !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.site-header.has-menu {
  max-width: 100% !important;
}
.main-navigation {
  flex: 1 !important;
  max-width: none !important;
}
/* Ocultar Liderazgo del menú */
#menu-liderazgo-1 .menu-item a[href*="/liderazgo/"],
#menu-liderazgo-1 .menu-item:has(a[href*="/liderazgo/"]) {
  display: none !important;
}
/* Ocultar Sesión personalizada */
#menu-liderazgo-1 .menu-item a[href*="/sesiones/"],
#menu-liderazgo-1 .menu-item:has(a[href*="/sesiones/"]) {
  display: none !important;
}
/* MENU - mostrar todos los ítems */
.main-navigation .main-menu{flex-wrap:nowrap!important}
.main-navigation .main-menu>li>a{font-size:11.5px!important;padding:0 9px!important;letter-spacing:.05em!important}
.site-header.responsive-max-width{max-width:100%!important;width:100%!important}
#menu-liderazgo-1 .menu-item:has(a[href*="/liderazgo/"]){display:none!important}
#menu-liderazgo-1 .menu-item:has(a[href*="/sesiones/"]){display:none!important}
/* ===== FIXES CONECTAA ===== */

/* FIX 1: Ocultar menú beige viejo del tema (LIDERAZGO · SOBRE ANA · AGENDA) */
.site-header.has-menu {
  display: none !important;
}

/* FIX 2: Ocultar Facebook/LinkedIn duplicados del menú beige */
.main-navigation,
#masthead {
  display: none !important;
}

/* FIX 3: Hero foto móvil — apilar verticalmente */
@media (max-width: 768px) {
  .hero-section,
  [class*="hero-grid"],
  [class*="hero-inner"] {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .hero-photo,
  [class*="hero-photo"] {
    width: 100% !important;
    max-width: 260px !important;
    margin: 20px auto 0 !important;
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
  }
  [class*="hero-text"],
  [class*="hero-content"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 20px !important;
  }
}
/* OCULTAR MENÚ BEIGE VIEJO - SELECTOR ESPECÍFICO */
header#masthead,
header#masthead.site-header,
.site-header.responsive-max-width.has-menu,
#masthead.site-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
/* MENU 6 ITEMS - FORZAR QUE TODOS QUEPAN */
.main-navigation .main-menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
  width: 100% !important;
}
.main-navigation .main-menu > li {
  display: flex !important;
  flex-shrink: 1 !important;
}
.main-navigation .main-menu > li > a {
  font-size: 10px !important;
  letter-spacing: 0.04em !important;
  padding: 0 6px !important;
  white-space: nowrap !important;
}
.site-header.responsive-max-width {
  max-width: 100% !important;
  width: 100% !important;
}
.main-navigation {
  flex: 1 1 auto !important;
  max-width: none !important;
  overflow: visible !important;
}
.main-menu-container {
  overflow: visible !important;
  width: 100% !important;
}