/*
Theme Name: Nayarit Crece
Theme URI: https://nayaritcrece.com/
Description: Portada comercial minimalista para Nayarit Crece.
Author: Nayarit Crece
Version: 1.0.0
Template: twentytwentyfive
Text Domain: nayarit-crece
*/

:root {
	--nc-ink: #0b2545;
	--nc-blue: #17658d;
	--nc-gold: #d6a63b;
	--nc-paper: #f7f8f6;
	--nc-mist: #e8efef;
	--nc-line: #d6dfdf;
	--nc-white: #ffffff;
	--nc-shell: 1180px;
}

html {
	scroll-behavior: smooth;
}

body.nc-site {
	margin: 0;
	background: var(--nc-paper);
	color: var(--nc-ink);
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 1.6;
}

.nc-site *,
.nc-site *::before,
.nc-site *::after {
	box-sizing: border-box;
}

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

.nc-site a {
	color: inherit;
}

.nc-site h1,
.nc-site h2,
.nc-site h3,
.nc-site p,
.nc-site figure,
.nc-site dl {
	margin: 0;
}

.nc-shell {
	width: min(calc(100% - 48px), var(--nc-shell));
	margin-inline: auto;
}

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

.nc-loader {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	background: var(--nc-paper);
	opacity: 1;
	visibility: visible;
	transition: opacity .35s ease, visibility .35s ease;
}

.nc-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.nc-loader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

.nc-loader__logo {
	width: 160px;
	height: 160px;
	object-fit: contain;
}

.nc-loader__line {
	position: relative;
	display: block;
	width: 64px;
	height: 3px;
	overflow: hidden;
	background: rgba(11, 37, 69, .15);
}

.nc-loader__line::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 34%;
	height: 100%;
	content: "";
	background: var(--nc-gold);
	animation: nc-loader-progress 1.1s ease-in-out infinite;
}

@keyframes nc-loader-progress {
	0% {
		transform: translateX(-100%);
	}

	50%,
	100% {
		transform: translateX(300%);
	}
}

.nc-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid var(--nc-line);
	backdrop-filter: blur(12px);
}

.nc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}

.nc-brand {
	display: inline-flex;
	align-items: center;
	width: 148px;
	height: 58px;
	overflow: hidden;
	text-decoration: none;
}

.nc-brand__logo {
	width: 148px;
	height: 58px;
	object-fit: cover;
	object-position: 50% 45%;
}

.nc-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: .86rem;
	font-weight: 700;
}

.nc-nav__link {
	text-decoration: none;
}

.nc-nav__link:hover,
.nc-nav__link:focus-visible {
	color: var(--nc-blue);
}

.nc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-size: .82rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.nc-button:hover,
.nc-button:focus-visible {
	transform: translateY(-2px);
}

.nc-button--primary {
	background: var(--nc-ink);
	color: var(--nc-white) !important;
}

.nc-button--primary:hover,
.nc-button--primary:focus-visible {
	background: var(--nc-blue);
	color: var(--nc-white) !important;
}

.nc-button--outline {
	border-color: var(--nc-ink);
	color: var(--nc-ink);
}

.nc-button--outline:hover,
.nc-button--outline:focus-visible {
	background: var(--nc-ink);
	color: var(--nc-white);
}

.nc-button--light {
	background: var(--nc-white);
	color: var(--nc-ink) !important;
}

.nc-button--light:hover,
.nc-button--light:focus-visible {
	background: var(--nc-gold);
	color: var(--nc-ink) !important;
}

.nc-hero {
	padding: 74px 0 84px;
	background: linear-gradient(132deg, #f7f8f6 0%, #f4f7f8 52%, #e6efee 100%);
}

.nc-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 70px;
}

.nc-kicker {
	color: var(--nc-blue);
	font-size: .76rem;
	font-weight: 800;
	line-height: 1.3;
}

.nc-hero h1 {
	max-width: 650px;
	margin-top: 18px;
	font-size: 4.7rem;
	font-weight: 500;
	line-height: 1.03;
}

.nc-lead {
	max-width: 520px;
	margin-top: 26px !important;
	color: #365168;
	font-size: 1.2rem;
	line-height: 1.55;
}

.nc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.nc-microcopy {
	margin-top: 18px !important;
	color: #5d7180;
	font-size: .82rem;
}

.nc-hero__media {
	position: relative;
	min-height: 530px;
	overflow: hidden;
	border-radius: 4px;
	background: var(--nc-ink);
	box-shadow: 0 24px 56px rgba(11, 37, 69, .17);
}

.nc-hero__image {
	width: 100%;
	height: 530px;
	object-fit: cover;
	object-position: 100% center;
	transform: scale(1.14);
	transform-origin: right center;
}

.nc-hero__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 58%, rgba(11, 37, 69, .72) 100%);
	pointer-events: none;
}

.nc-media-label {
	position: absolute;
	right: 24px;
	bottom: 22px;
	left: 24px;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	color: var(--nc-white);
	font-size: .85rem;
	font-weight: 800;
}

.nc-section {
	padding: 104px 0;
}

.nc-section--white {
	background: var(--nc-white);
}

.nc-section--mist {
	background: var(--nc-mist);
}

.nc-section-heading {
	max-width: 680px;
}

.nc-section h2 {
	margin-top: 14px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.08;
}

.nc-section-heading > p:last-child {
	max-width: 610px;
	margin-top: 18px;
	color: #4b6171;
	font-size: 1.05rem;
}

.nc-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 58px;
	border-top: 1px solid var(--nc-line);
	border-bottom: 1px solid var(--nc-line);
}

.nc-metric {
	padding: 30px 28px 32px 0;
	border-right: 1px solid var(--nc-line);
}

.nc-metric + .nc-metric {
	padding-left: 28px;
}

.nc-metric:last-child {
	border-right: 0;
}

.nc-metric strong {
	display: block;
	font-size: 2.7rem;
	font-weight: 600;
	line-height: 1.1;
}

.nc-metric span {
	display: block;
	margin-top: 8px;
	color: #5d7180;
	font-size: .92rem;
}

.nc-offer-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	align-items: center;
	gap: 90px;
}

.nc-offer-copy p:not(.nc-kicker) {
	max-width: 530px;
	margin-top: 22px;
	color: #4b6171;
	font-size: 1.05rem;
}

.nc-offer-copy .nc-button {
	margin-top: 32px;
}

.nc-offer-box {
	padding: 36px;
	border-radius: 4px;
	background: var(--nc-ink);
	color: var(--nc-white);
	box-shadow: 0 20px 48px rgba(11, 37, 69, .17);
}

.nc-offer-box__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	font-size: .78rem;
	font-weight: 800;
}

.nc-offer-box__top span:last-child {
	color: #eac767;
}

.nc-monthly {
	display: flex;
	flex-direction: column;
	padding: 28px 0 24px;
}

.nc-monthly span,
.nc-monthly small {
	color: #c4d2dc;
	font-size: .86rem;
}

.nc-monthly strong {
	margin: 4px 0;
	font-size: 3.4rem;
	font-weight: 600;
	line-height: 1.1;
}

.nc-offer-data {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 24px;
	margin-bottom: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.nc-offer-data dt {
	color: #c4d2dc;
	font-size: .75rem;
}

.nc-offer-data dd {
	margin-top: 2px;
	font-size: 1.02rem;
	font-weight: 800;
}

.nc-offer-box .nc-button {
	width: 100%;
}

.nc-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin-top: 58px;
}

.nc-step {
	padding-top: 20px;
	border-top: 2px solid var(--nc-gold);
}

.nc-step__number {
	display: block;
	color: var(--nc-blue);
	font-size: .85rem;
	font-weight: 800;
}

.nc-step h3 {
	margin-top: 18px;
	font-size: 1.35rem;
	font-weight: 700;
}

.nc-step p {
	margin-top: 10px;
	color: #4b6171;
	font-size: .96rem;
}

.nc-faq-layout {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 90px;
}

.nc-faq-list {
	border-top: 1px solid var(--nc-line);
}

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

.nc-faq-item summary {
	position: relative;
	padding: 22px 42px 22px 0;
	color: var(--nc-ink);
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 700;
	list-style: none;
}

.nc-faq-item summary::-webkit-details-marker {
	display: none;
}

.nc-faq-item summary::after {
	position: absolute;
	right: 2px;
	top: 20px;
	content: "+";
	color: var(--nc-blue);
	font-size: 1.4rem;
	font-weight: 400;
}

.nc-faq-item[open] summary::after {
	content: "-";
}

.nc-faq-item__answer {
	max-width: 600px;
	padding: 0 42px 22px 0;
	color: #4b6171;
	font-size: .96rem;
}

.nc-cta {
	padding: 94px 0;
	background: var(--nc-ink);
	color: var(--nc-white);
}

.nc-cta__inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
}

.nc-cta h2 {
	max-width: 620px;
	margin-top: 14px;
	font-size: 3.2rem;
}

.nc-cta p:not(.nc-kicker) {
	max-width: 560px;
	margin-top: 18px;
	color: #d3e0e8;
	font-size: 1.05rem;
}

.nc-cta .nc-kicker {
	color: #eac767;
}

.nc-cta__actions {
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	align-items: stretch;
	gap: 14px;
	min-width: 230px;
}

.nc-phone {
	color: #d3e0e8;
	font-size: .9rem;
	text-align: center;
	text-decoration: none;
}

.nc-footer {
	padding: 34px 0;
	background: var(--nc-white);
	border-top: 1px solid var(--nc-line);
}

.nc-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nc-footer__brand {
	display: inline-flex;
	align-items: center;
	width: 118px;
	height: 44px;
	overflow: hidden;
}

.nc-footer__brand img {
	width: 118px;
	height: 44px;
	object-fit: cover;
	object-position: 50% 45%;
}

.nc-footer__meta {
	display: flex;
	align-items: center;
	gap: 22px;
	color: #5d7180;
	font-size: .8rem;
}

.nc-footer__meta a {
	font-weight: 700;
	text-decoration: none;
}

.nc-footer__meta a:hover,
.nc-footer__meta a:focus-visible {
	color: var(--nc-blue);
}

@media (max-width: 1040px) {
	.nc-hero__grid {
		gap: 42px;
	}

	.nc-hero h1 {
		font-size: 3.8rem;
	}

	.nc-offer-layout,
	.nc-faq-layout {
		gap: 52px;
	}
}

@media (max-width: 820px) {
	.nc-nav__link {
		display: none;
	}

	.nc-hero__grid,
	.nc-offer-layout,
	.nc-faq-layout {
		grid-template-columns: 1fr;
	}

	.nc-hero__media {
		min-height: 420px;
	}

	.nc-hero__image {
		height: 420px;
	}

	.nc-offer-layout,
	.nc-faq-layout {
		gap: 48px;
	}

	.nc-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.nc-cta__actions {
		width: min(100%, 280px);
	}
}

@media (max-width: 620px) {
	.nc-shell {
		width: min(calc(100% - 32px), var(--nc-shell));
	}

	.nc-header__inner {
		min-height: 68px;
	}

	.nc-brand,
	.nc-brand__logo {
		width: 126px;
		height: 50px;
	}

	.nc-nav {
		gap: 0;
	}

	.nc-nav .nc-button {
		min-height: 42px;
		padding: 10px 12px;
		font-size: .74rem;
	}

	.nc-hero {
		padding: 52px 0 60px;
	}

	.nc-hero h1 {
		font-size: 2.8rem;
	}

	.nc-lead {
		font-size: 1.06rem;
	}

	.nc-hero__media,
	.nc-hero__image {
		min-height: 330px;
		height: 330px;
	}

	.nc-hero__image {
		object-position: 100% center;
	}

	.nc-section {
		padding: 72px 0;
	}

	.nc-section h2,
	.nc-cta h2 {
		font-size: 2.35rem;
	}

	.nc-metrics {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 42px;
	}

	.nc-metric,
	.nc-metric + .nc-metric {
		padding: 20px 10px 22px 0;
	}

	.nc-metric + .nc-metric {
		padding-left: 10px;
	}

	.nc-metric strong {
		font-size: 1.45rem;
	}

	.nc-metric span {
		font-size: .72rem;
	}

	.nc-offer-box {
		padding: 26px 22px;
	}

	.nc-monthly strong {
		font-size: 2.7rem;
	}

	.nc-offer-data {
		gap: 16px 12px;
	}

	.nc-steps {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 42px;
	}

	.nc-footer__inner,
	.nc-footer__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.nc-footer__meta {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nc-loader,
	.nc-button {
		transition: none;
	}

	.nc-loader__line::after {
		animation: none;
		transform: translateX(0);
	}
}