/* ==================================================
   PÁGINA ARTÍCULO 01: INICIO
================================================== */

body{
	width:100%;
	margin:0;
	background:#272727;
	color:var(--white);
	overflow-x:hidden;
}

.article-page{
	width:100%;
}


/* ==================================================
   HERO ARTÍCULO: INICIO
================================================== */

.article-hero{
	width:100%;
	height:620px;
	padding:0 100px;
	box-sizing:border-box;
	overflow:hidden;
	background-image:url("../imgs/Hero-articulo-01.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-hero-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding-bottom:55px;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-end;
	text-align:center;
}


/* ==================================================
   TÍTULO: ENTRADA DESDE LA IZQUIERDA
================================================== */

.article-hero-title{
	margin:0;
	font-family:var(--font-title);
	font-weight:var(--extra-bold);
	color:var(--white);

	opacity:0;
	transform:translate3d(-70px,0,0);

	animation:
		article-hero-title-enter
		1.15s
		cubic-bezier(.22,1,.36,1)
		.15s
		forwards;

	will-change:opacity,transform;
}

.article-hero-title-top{
	display:block;
	font-size:38px;
	line-height:40px;
}

.article-hero-title-main{
	margin-top:3px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:24px;
	font-size:66px;
	line-height:68px;
}

.article-hero-title-main::before,
.article-hero-title-main::after{
	content:"";
	width:90px;
	height:3px;
	background:var(--white);
}


/* ==================================================
   SUBTÍTULO: ENTRADA DESDE ABAJO
================================================== */

.article-hero-subtitle{
	margin:35px 0 25px;
	font-family:var(--font-text);
	font-size:13px;
	line-height:18px;
	font-weight:var(--medium);
	letter-spacing:6px;
	color:var(--white);

	opacity:0;
	transform:translate3d(0,28px,0);

	animation:
		article-hero-subtitle-enter
		.9s
		cubic-bezier(.22,1,.36,1)
		.75s
		forwards;

	will-change:opacity,transform;
}


/* ==================================================
   ICONOS: SIN ANIMACIÓN
================================================== */

.article-socials{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:15px;
}

.article-social-link{
	width:34px;
	height:34px;
	flex:0 0 34px;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	border:0;
	border-radius:50%;
	cursor:pointer;
	text-decoration:none;
	background:var(--white);
	transition:transform .3s ease;
}

.article-social-link img{
	width:15px;
	height:15px;
	display:block;
	object-fit:contain;
}

.article-social-share img{
	width:19px;
	height:19px;
}

.article-social-link:hover{
	transform:translateY(-3px);
}


/* ==================================================
   FOTOGRAMAS DE LAS ANIMACIONES
================================================== */

@keyframes article-hero-title-enter{

	from{
		opacity:0;
		transform:translate3d(-70px,0,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}

@keyframes article-hero-subtitle-enter{

	from{
		opacity:0;
		transform:translate3d(0,28px,0);
	}

	to{
		opacity:1;
		transform:translate3d(0,0,0);
	}

}


/* ==================================================
   ACCESIBILIDAD
================================================== */

@media(prefers-reduced-motion:reduce){

	.article-hero-title,
	.article-hero-subtitle{
		opacity:1;
		transform:none;
		animation:none;
	}

}

/* ==================================================
   HERO ARTÍCULO: FIN
================================================== */


/* ==================================================
   SECCIÓN 01: RESUMEN Y DATOS: INICIO
================================================== */

.article-overview{
	width:100%;
	height:600px;
	padding:40px 100px 55px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.article-overview-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
}

.article-meta{
	width:100%;
	padding:0 180px;
	box-sizing:border-box;
	display:flex;
	justify-content:space-between;
}

.article-meta-item{
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	font-family:var(--font-text);
	font-size:13px;
	line-height:20px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-meta-item-right{
	align-items:flex-end;
	text-align:right;
}

.article-meta-item strong{
	font-weight:var(--medium);
}

.article-overview-line{
	width:100%;
	height:2px;
	margin-top:25px;
	background:var(--white);
}

.article-overview-copy{
	width:100%;
	max-width:650px;
	margin:50px auto 0;
	text-align:center;
}

.article-overview-copy p{
	margin:0 0 18px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:30px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-overview-copy p:last-child{
	margin-bottom:0;
}

.article-statistics{
	width:100%;
	max-width:820px;
	margin:80px auto 0;
	display:grid;
	grid-template-columns:repeat(3,1fr);
	column-gap:150px;
	align-items:start;
	text-align:center;
}

.article-statistic strong{
	display:block;
	margin:0 0 8px;
	font-family:var(--font-title);
	font-size:62px;
	line-height:62px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-statistic p{
	max-width:210px;
	margin:0 auto;
	font-family:var(--font-text);
	font-size:13px;
	line-height:18px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 01: RESUMEN Y DATOS: FIN
================================================== */


/* ==================================================
   SECCIÓN 02: INTRODUCCIÓN: INICIO
================================================== */

.article-introduction{
	width:100%;
	height:255px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/Intro-Articulo-01.png");
	background-size:100% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-introduction-container{
	width:100%;
	max-width:620px;
	height:100%;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
}

.article-introduction p{
	margin:0;
	font-family:var(--font-text);
	font-size:15px;
	line-height:30px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 02: INTRODUCCIÓN: FIN
================================================== */


/* ==================================================
   FRANJA ROJA: INICIO
================================================== */

.article-separator{
	width:100%;
	height:40px;
	background:var(--red);
}

/* ==================================================
   FRANJA ROJA: FIN
================================================== */


/* ==================================================
   SECCIÓN 03: DEMANDA AJUSTADA: INICIO
================================================== */

.article-priorities{
	width:100%;
	height:610px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-01-01.png");
	background-size:100% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-priorities-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:center;
}

.article-priorities-title{
	grid-column:1 / 6;
	margin:-250px 0 0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:49px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-priorities-copy{
	grid-column:7 / 13;
	width:100%;
	max-width:510px;
	margin-top:150px;
	justify-self:end;
}

.article-priorities-copy p{
	margin:0 0 22px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-priorities-copy p:last-child{
	margin-bottom:0;
}

/* ==================================================
   SECCIÓN 03: DEMANDA AJUSTADA: FIN
================================================== */


/* ==================================================
   SECCIÓN 04: B2B: INICIO
================================================== */

.article-b2b{
	width:100%;
	height:850px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-01-02.png");
	background-size:100% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-b2b-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
}

.article-b2b-heading{
	margin-top:100px;
}

.article-b2b-heading h2{
	margin:0;
	font-family:var(--font-title);
	font-size:90px;
	line-height:86px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-b2b-heading h3{
	margin:0;
	font-family:var(--font-title);
	font-size:31px;
	line-height:34px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-b2b-copy{
	width:100%;
	max-width:650px;
	margin-top:40px;
}

.article-b2b-copy p{
	margin:0 0 20px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-b2b-copy p:last-child{
	margin-bottom:0;
}

.article-b2b-conclusion{
	width:100%;
	max-width:610px;
	margin-top:65px;
	margin-bottom:10px;
}

.article-b2b-line{
	width:100%;
	height:3px;
	background:var(--white);
}

.article-b2b-conclusion p{
	margin:25px 0 8px;
	font-family:var(--font-text);
	font-size:19px;
	line-height:27px;
	font-weight:var(--medium);
	color:var(--white);
}

.article-b2b-conclusion strong{
	display:block;
	margin:0 0 25px;
	font-family:var(--font-title);
	font-size:48px;
	line-height:50px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 04: B2B: FIN
================================================== */


/* ==================================================
   SECCIÓN 05: COSTOS Y PRODUCCIÓN: INICIO
================================================== */

.article-costs{
	width:100%;
	height:700px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.article-costs-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	padding-top:80px;
	box-sizing:border-box;
}

.article-costs-heading{
	width:100%;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:start;
}

.article-costs-heading h2{
	grid-column:1 / 6;
	margin:0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:49px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-costs-intro{
	grid-column:7 / 13;
	padding-top:10px;
}

.article-costs-intro p{
	margin:0 0 18px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-costs-line{
	width:100%;
	height:2px;
	background:var(--white);
}

.article-costs-grid{
	width:100%;
	max-width:1000px;
	margin:75px auto 0;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:30px 50px;
}

.article-cost-card{
	width:100%;
	height:auto;
	min-height:0;
	padding:22px 26px;
	box-sizing:border-box;
	display:grid;
	grid-template-columns:48px 1fr;
	align-items:center;
	column-gap:18px;
	border-radius:20px;
	background:var(--blue);
}

.article-cost-card-icon{
	width:52px;
	height:52px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:50%;
	background:var(--white);
}

.article-cost-card-icon img{
	width:32px;
	height:32px;
	display:block;
	object-fit:contain;
}

.article-cost-card p{
	margin:0;
	font-family:var(--font-text);
	font-size:14px;
	line-height:22px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 05: COSTOS Y PRODUCCIÓN: FIN
================================================== */


/* ==================================================
   SECCIÓN 06: DECISIONES GERENCIALES: INICIO
================================================== */

.article-decisions{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-01-03.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-decisions-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	grid-template-rows:auto 1fr;
	column-gap:20px;
}

.article-decisions-title{
	grid-column:1 / 7;
	margin:75px 0 0;
	font-family:var(--font-title);
	font-size:48px;
	line-height:49px;
	font-weight:var(--extra-bold);
	color:var(--white);
}

.article-decisions-copy{
	align-self:start;
	margin-top:55px;
}

.article-decisions-copy-left{
	grid-column:1 / 6;
}

.article-decisions-copy-right{
	grid-column:7 / 12;
}

.article-decisions-copy p{
	margin:0 0 20px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

/* ==================================================
   SECCIÓN 06: DECISIONES GERENCIALES: FIN
================================================== */


/* ==================================================
   SECCIÓN 07: REVISIÓN INTERNA: INICIO
================================================== */

.article-review{
	width:100%;
	height:560px;
	padding:0 100px;
	box-sizing:border-box;
	background-image:url("../imgs/articulo-01-04.png");
	background-size:110% auto;
	background-position:center;
	background-repeat:no-repeat;
	color:var(--white);
}

.article-review-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:grid;
	grid-template-columns:repeat(12,minmax(0,1fr));
	column-gap:20px;
	align-items:center;
}

.article-review-copy{
	grid-column:1 / 6;
	width:100%;
}

.article-review-copy p{
	margin:0 0 22px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:24px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-review-copy p:last-child{
	margin-bottom:0;
}

.article-review-title{
	grid-column:7 / 13;
	margin:-180px 0 0;
	font-family:var(--font-title);
	font-size:47px;
	line-height:49px;
	font-weight:var(--extra-bold);
	text-align:right;
	color:var(--white);
}

/* ==================================================
   SECCIÓN 07: REVISIÓN INTERNA: FIN
================================================== */


/* ==================================================
   CIERRE DEL ARTÍCULO: INICIO
================================================== */

.article-closing{
	width:100%;
	height:900px;
	padding:0 100px;
	box-sizing:border-box;
	background:var(--red);
	color:var(--white);
}

.article-closing-container{
	width:100%;
	max-width:1240px;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.article-closing-copy{
	width:100%;
	max-width:600px;
	margin-top:100px;
	text-align:center;
}

.article-closing-copy p{
	margin:0 0 24px;
	font-family:var(--font-text);
	font-size:15px;
	line-height:40px;
	font-weight:var(--regular);
	color:var(--white);
}

.article-closing-copy p:last-child{
	margin-bottom:0;
}

.article-closing-line{
	width:100%;
	height:3px;
	margin-top:50px;
	background:var(--white);
}

.article-closing-share{
	width:100%;
	max-width:650px;
	margin-top:45px;
	text-align:center;
}

.article-closing-share p{
	margin:0 0 50px;
	font-family:var(--font-text);
	font-size:16px;
	line-height:26px;
	font-weight:var(--medium);
	color:var(--white);
}

.article-socials-closing{
	margin-top:0;
}

.article-related{
	width:100%;
	max-width:760px;
	margin-top:80px;
}

.article-related-heading{
	width:100%;
	height:32px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:var(--font-text);
	font-size:12px;
	line-height:14px;
	font-weight:var(--medium);
	letter-spacing:6px;
	color:var(--white);
	background:var(--blue);
}

.article-related-grid{
	width:100%;
	margin-top:20px;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:35px;
}

.article-related-card{
	width:100%;
	max-width:300px;
	height:90px;
	justify-self:center;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:14px;
	font-family:var(--font-title);
	font-size:18px;
	line-height:20px;
	font-weight:var(--extra-bold);
	text-align:center;
	text-decoration:none;
	color:var(--white);
	background:#272727;
	transition:transform .3s ease;
}

.article-related-card{
	position:relative;
	overflow:hidden;
	display:flex;
	align-items:center;
	justify-content:center;
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	text-decoration:none;
}

.article-related-card span{
	position:relative;
	z-index:1;
	font-family:var(--font-title);
	text-align:center;
	color:var(--white);
}

.article-related-negocio{
	background-image:
		url("../imgs/Servicios-02-Negocios.png");
	background-size:cover;
}

.article-related-comercial{
	background-image:
		url("../imgs/Servicios-04-Estrategia-Comercial.png");
	background-size:cover;
}






}

.article-related-card:hover{
	transform:translateY(-4px);
}

/* ==================================================
   CIERRE DEL ARTÍCULO: FIN
================================================== */


/* ==================================================
   ARTÍCULO RESPONSIVE: TABLET
================================================== */

@media(max-width:900px){
	.article-hero,
	.article-overview,
	.article-introduction,
	.article-priorities,
	.article-b2b,
	.article-costs,
	.article-decisions,
	.article-review,
	.article-closing{
		padding-left:40px;
		padding-right:40px;
	}

	.article-meta{
		padding:0 80px;
	}

	.article-priorities-title{
		grid-column:1 / 6;
		font-size:42px;
		line-height:44px;
	}

	.article-priorities-copy{
		grid-column:6 / 13;
	}

	.article-costs-grid{
		gap:25px;
	}

	.article-cost-card{
		padding:22px;
		column-gap:15px;
	}

	.article-decisions-title{
		font-size:42px;
		line-height:44px;
	}

	.article-review-title{
		font-size:41px;
		line-height:43px;
	}
}


/* ==================================================
   ARTÍCULO RESPONSIVE: MÓVIL
================================================== */

@media(max-width:650px){
	.article-hero,
	.article-overview,
	.article-introduction,
	.article-priorities,
	.article-b2b,
	.article-costs,
	.article-decisions,
	.article-review,
	.article-closing{
		height:auto;
		padding-left:20px;
		padding-right:20px;
	}

	.article-hero{
		min-height:600px;
	}

	.article-hero-title-top{
		font-size:27px;
		line-height:31px;
	}

	.article-hero-title-main{
		gap:12px;
		font-size:47px;
		line-height:50px;
	}

	.article-hero-title-main::before,
	.article-hero-title-main::after{
		width:45px;
		height:2px;
	}

	.article-hero-subtitle{
		font-size:11px;
		line-height:18px;
		letter-spacing:3px;
	}

	.article-overview{
		min-height:600px;
		padding-top:55px;
		padding-bottom:55px;
	}

	.article-meta{
		padding:0;
	}

	.article-overview-copy{
		margin-top:45px;
	}

	.article-statistics{
		margin-top:60px;
		grid-template-columns:1fr;
		gap:35px;
	}

	.article-introduction{
		min-height:255px;
		padding-top:60px;
		padding-bottom:60px;
	}

	.article-priorities{
		min-height:610px;
		padding-top:80px;
		padding-bottom:80px;
	}

	.article-priorities-container{
		display:flex;
		flex-direction:column;
		align-items:flex-start;
		gap:55px;
	}

	.article-priorities-title{
		font-size:38px;
		line-height:40px;
	}

	.article-priorities-copy{
		max-width:none;
	}

	.article-b2b{
		min-height:940px;
		padding-top:85px;
		padding-bottom:80px;
	}

	.article-b2b-heading{
		margin-top:0;
	}

	.article-b2b-heading h2{
		font-size:72px;
		line-height:70px;
	}

	.article-b2b-heading h3{
		font-size:23px;
		line-height:27px;
	}

	.article-b2b-conclusion{
		margin-top:90px;
		margin-bottom:0;
	}

	.article-b2b-conclusion strong{
		font-size:36px;
		line-height:39px;
	}

	.article-costs{
		min-height:780px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.article-costs-container{
		padding-top:0;
	}

	.article-costs-heading{
		display:flex;
		flex-direction:column;
		gap:40px;
	}

	.article-costs-heading h2{
		font-size:39px;
		line-height:41px;
	}

	.article-costs-grid{
		margin-top:55px;
		grid-template-columns:1fr;
	}

	.article-cost-card{
		min-height:140px;
	}

	.article-decisions{
		min-height:560px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.article-decisions-container{
		display:flex;
		flex-direction:column;
	}

	.article-decisions-title{
		margin:0 0 55px;
		font-size:38px;
		line-height:40px;
	}

	.article-decisions-copy{
		margin-top:0;
	}

	.article-review{
		min-height:560px;
		padding-top:75px;
		padding-bottom:75px;
	}

	.article-review-container{
		display:flex;
		flex-direction:column-reverse;
		align-items:flex-start;
		gap:55px;
	}

	.article-review-title{
		font-size:36px;
		line-height:39px;
		text-align:left;
	}

	.article-closing{
		min-height:1030px;
		padding-top:90px;
		padding-bottom:90px;
	}

	.article-closing-copy{
		margin-top:0;
	}

	.article-closing-line{
		margin-top:80px;
	}

	.article-related{
		margin-top:75px;
	}

	.article-related-grid{
		grid-template-columns:1fr;
		gap:20px;
	}

	.article-related-card{
		height:110px;
	}
}

/* ==================================================
   PÁGINA ARTÍCULO 01: FIN
================================================== */