/*******GENERALES******/

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

body {
	background: url("../images/mundial-2026/back-mundial.jpg") #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-family: "Big Shoulders", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	font-size: 16px;
}

main {
	margin-top: 60px;
}

.wc26_container {
	max-width: 1140px;
	background-color: #00000066;
}

a {
	color: #F2FF1C;
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: #FF9619
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	line-height: initial;
	font-size: initial;
}

img {
	width: 100%;
	transition: all 0.5s;
}

a img:hover {
	filter: grayscale(80%);
}

section {
	padding: 35px 0;
}

.wc26_bannerPublicidad.wc26_bannerFloat {
	margin-top: 80px;
}

.wc26_bannerPublicidad {
	width: fit-content;
	height: auto;
	margin: 0 auto;
}

.wc26_headerSeccion {
	display: flex;
	justify-content: space-between;
}

.wc26_headerSeccion h2 {
	color: #B8D32E;
	font-size: 2.7rem;
	text-transform: uppercase;
}

.wc26_headerSeccion a {
	font-size: 1.4rem;
	margin-top: 14px;
}

.wc26_headerSeccion.wc26_headerSeccionBack h2 {
	color: #FFF;
	text-transform: uppercase;
}

/******FADE*******/

.fade-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*******HEADER********/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #004C75;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header.scrolled {
	height: 50px;
}

.wc26_logo {
	width: 12rem;
	transition: all 0.3s ease;
	z-index: 1100;
}

header.scrolled .wc26_logo {
	width: 10rem;
}

.wc26_navLinks {
	display: flex;
	list-style: none;
	margin: 0;
}

.wc26_navLinks li a {
	margin-left: 30px;
	font-size: 1.7rem;
	transition: all 0.3s ease;
	font-weight: 300;
}

header.scrolled .wc26_navLinks li a {
	font-size: 1.3rem;
}

.wc26_hamburger {
	display: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	z-index: 1100;
}

.wc26_hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/******SLIDER PRINCIPAL******/

.wc26_sliderContainerP {
	width: 100%;
	height: 550px;
	position: relative;
	background: #000;
	overflow: hidden;
	margin: 0 auto;
}

#wc26_mainLinkImg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: transform 7s linear;
	overflow: hidden;
}

#wc26_mainLinkImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#wc26_mainLinkImg:hover img {
	transform: scale(1.05);
	transition: transform 7s linear;
}

.wc26_interfaceLayerP {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 30px;
	gap: 20px;
}

.wc26_textContentLinkP {
	color: white;
	text-decoration: none;
	max-width: 50%;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	transition: opacity 0.3s ease;
}

.wc26_textContentLinkP:hover {
	opacity: 0.8;
}

.wc26_textContentP h2 {
	font-size: 2rem;
	margin-bottom: 8px;
	font-weight: 700;
}

.wc26_thumbnailsRow {
	display: flex;
	gap: 10px;
	max-width: 45%;
}

.wc26_thumbP {
	width: 80px;
	height: 60px;
	object-fit: cover;
	cursor: pointer;
	border-radius: 4px;
	opacity: 0.5;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.wc26_thumbP:hover {
	opacity: 1;
	transform: translateY(-5px);
}

.wc26_thumbP.active {
	opacity: 1;
	border-color: #fff;
	transform: scale(1.1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* --- ANIMACIONES --- */

@keyframes fadeInEffect {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.wc26_fadeP {
	animation: fadeInEffect 0.8s ease-in-out;
}

/******COUNTDOWN*******/

.wc26_containerCountDown {
	width: 800px;
	background: #7855FF;
	border-radius: 25px;
	padding: 30px;
	margin: 0 auto;
	position: relative;
}

.wc26_publicidadLeader {
	max-width: 728px;
}

.wc26_countdown {
	display: flex;
	gap: 20px;
	padding: 10px;
	justify-content: center;
}

.wc26_countdown_textos {
	color: #FFF;
	font-size: 1.9rem;
	text-align: center;
	display: block;
	margin-top: 30px;
	font-weight: 100;
}

.wc26_countdown_textoDown {
	color: #FFF;
	font-size: 1.9rem;
	text-align: center;
	display: block;
	font-weight: 100;
}

.wc26_time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.wc26_time-unit span:first-child {
	font-size: 3em;
	font-weight: 900;
	color: #F2FF1C;
	line-height: 1;
}

.wc26_time-unit span:last-child {
	font-size: 1rem;
	text-transform: uppercase;
	color: #FFF;
	margin-top: 5px;
	font-weight: 100;
}

.wc26_countdown_ilustracionJugador {
	position: absolute;
	width: 70px;
	z-index: 10;
	bottom: 35px;
	right: 160px;
}

/*******SELECCION MEXICANA***+***/

.wc26_cardWrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	overflow-x: visible;
	scroll-snap-type: none;
}

.wc26_cardSeleccion {
	flex: initial;
	width: auto;
	margin: 0;
	background: transparent;
	position: relative;
}

.slider-navigation {
	display: none;
}

.wc26_cardImg {
	width: 100%;
}

.wc26_cardSeleccion img {
	width: 100%;
	height: 200px;
	max-height: 200px;
	object-fit: cover;
	border-radius: 15px;
}

.wc26_cardTxt {
	position: absolute;
	bottom: -70px;
	left: 5%;
	background: #FFF;
	width: 90%;
	border: 5px solid #B8D32E;
	padding: 10px;
	border-radius: 12px;
	height: 125px;
}

.wc26_cardTxt h3 {
	font-size: 1.3rem;
}

.wc26_cardTxt h3 a {
	color: #000;
}

.wc26_cardTxt h3 a:hover {
	color: #FF9619;
}

.wc26_jugadorMx {
	position: absolute;
	z-index: 5;
	top: -93px;
	right: -18px;
	width: 90px;
}

.wc26_jugadorMx img {
	width: 90px;
	object-fit: contain;
}

/*********DONDE IR MUNDIAL********/

.wc26_boxDondeIrMundial {
	position: relative;
	overflow: hidden;
	background: #F53370;
	padding: 35px;
	border-radius: 15px;
}

.wc26_plecaDi {
	position: absolute;
	top: 0;
	left: 0;
}

.wc26_plecaDi img {
	border-radius: 60px;
}

.wc26_plecaDiAbajo {
	position: absolute;
	bottom: 0;
	left: 0;
}

.wc26_plecaDiAbajo img {
	border-radius: 60px;
	transform: rotate(180deg);
}

.wc26_sliderContainerDi {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow-x: visible;
	gap: 16px;
	padding-bottom: 20px;
	margin-top: 20px;
}

.wc26_cardDi {
	min-width: auto;
	width: 100%;
}

.wc26_cardDi {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
}

.wc26_cardDi img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

.wc26_cardContent {
	padding: 12px;
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	background: #000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
	height: fit-content;
}

.wc26_cardContent h3 {
	font-size: 1.3rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	font-weight: 800;
}

.wc26_cardContent h3 a {
	color: #FFF;
}

.wc26_cardContent h3 a:hover {
	color: #FF9619;
}

/*********REVISTA**********/

.wc26_rowDescargable {
	margin-top: 40px;
}

.wc26_boxImgdescargable {
	display: flex;
	justify-content: flex-end;
}

.wc26_boxImgdescargable img {
	width: 50%;
}

.wc26_boxTxtDescargable {
	color: #FFF;
	width: 70%;
	font-size: 1.3rem;
	font-weight: 100;
}

.wc26_boxBtnDescargable {
	width: 70%;
	text-align: center;
	margin-top: 70px;
}

.wc26_btnDescargable {
	background: #F2FF1C;
	padding: 10px 20px;
	border-radius: 10px;
	color: #000;
	font-size: 1.5rem;
	font-weight: 600;
	transition: background 0.3s;
}

.wc26_btnDescargable:hover {
	background: #000;
}

/********RIVALES DE MÃ‰XICO********/

.wc26_boxRivalesMexico {
	background: #004C75;
	padding: 35px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
}

.wc26_plecaRivales {
	position: absolute;
	top: 0;
	left: 0;
}

.wc26_plecaRivales img {
	border-radius: 60px;
}

.wc26_plecaRivalesAbajo {
	position: absolute;
	bottom: 0;
	left: 0;
}

.wc26_plecaRivalesAbajo img {
	border-radius: 60px;
	transform: rotate(180deg);
}

.wc26_boxCardRivales {
	width: 100%;
}

.wc26_boxImgRivales {
	width: 100%;
	height: 160px;
}

.wc26_boxImgRivales img {
	width: 100%;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	object-fit: cover;
	height: 150px;
}

.wc26_boxTxtRivales {
	width: 100%;
	height: 190px;
	padding: 10px;
}

.wc26_boxTxtRivales h3 a {
	font-size: 1.4rem;
	color: #FFF;
	transition: all 0.3s;
}

.wc26_boxTxtRivales h3 a:hover {
	color: #FF9619;
}

/*********VIDEOS*********/

.wc26_videos {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.wc26_videos {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 20px;
}

.wc26_videosGridCarrusel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(2, 1fr);
	gap: 20px;
}

.wc26_videosHistoriaPrincipal {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	aspect-ratio: 3 / 4;
}

.wc26_videosHistoriaPrincipal img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wc26_videosItem {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	color: #ffffff;
}

.wc26_videosItem img {
	width: 100%;
	height: 225px;
	display: block;
	border-radius: 15px;
	object-fit: cover;
	object-position: top;
}

.wc26_videosItemLinkImagen {
	display: block;
	overflow: hidden;
}

.wc26_videosItemLinkTexto {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 10px;
}

.wc26_videosItemLinkTexto h3 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.3;
}

.wc26_iconVideo {
	position: absolute;
	z-index: 5;
	font-size: 3rem;
	top: 18%;
	left: 39%;
}

/*********SOMOS MUNDIAL**********/

.wc26_rowSomosMundial {
	margin-top: 40px;
}

.wc26_boxSomosMundial {
	width: 100%;
	display: block;
}

.wc26_boxImgSomos {
	width: 100%;
}

.wc26_boxImgSomos img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.wc26_boxTxtSomos {
	background: #E7E9EE;
	border: 5px solid #00CCCC;
	padding: 10px;
	height: 150px;
}

.wc26_boxTxtSomos h3 {
	font-size: 1.2rem;
	line-height: 1.7rem;
}

.wc26_boxTxtSomos h3 a {
	color: #000;
}

.wc26_boxTxtSomos h3 a:hover {
	color: #FF9619;
}

/*********FOOTER********/

footer {
	width: 100%;
	height: 300px;
	background: transparent;
	position: relative;
}

.wc26_boxFooter {
	width: 100%;
	height: 250px;
	background: #004C75;
	position: absolute;
	bottom: 0;
}

.wc26_boxFooterContent {
	width: 400px;
	margin: 0 auto;
}

.wc26_boxLogoFooter {
	width: 25%;
	margin: -56px auto;
}

.wc26_boxRSSFooter {
	width: 100%;
	margin-top: 70px;
	text-align: center;
	font-size: 1.4rem;
	color: #FFCE00;
}

.wc26_boxIconsRSSFooter {
	display: flex;
	justify-content: space-evenly;
	margin: 15px 0;
}

.wc26_boxLegalesFooter {
	width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 1.2rem;
}

/*****************MEDIA QUERIES*****************/

/*********************0 a 767.98*******************/

@media screen and (max-width: 767.98px) {
	.wc26_bannerPublicidad.wc26_bannerFloat {
		margin-top: 0px;
	}
	.wc26_headerSeccion h2 {
		font-size: 1.7rem;
	}
	.wc26_headerSeccion a {
		margin-top: 4px;
		font-size: 1.2rem;
	}
	.wc26_hamburger {
		display: flex;
	}
	.wc26_navLinks {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background-color: #004C75F2;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.4s ease-in-out;
	}
	.wc26_navLinks.active {
		right: 0;
		padding: 0;
	}
	.wc26_navLinks li {
		margin: 20px 0;
	}
	header.scrolled .wc26_navLinks li a {
		font-size: 1.8rem;
	}
	.wc26_navLinks li a {
		margin-left: 0px;
		font-weight: 700;
	}
	/**** ANIMACIÃ“N HAMBURGUESA A "X" ***/
	.wc26_hamburger.active span:nth-child(1) {
		transform: translateY(11px) rotate(45deg);
	}
	.wc26_hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.wc26_hamburger.active span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
	/*******SLIDER PRINCIPAL********/
	.wc26_sliderContainerP {
		height: 60vh;
	}
	.wc26_interfaceLayerP {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}
	.wc26_textContentLinkP {
		max-width: 100%;
		margin-bottom: 10px;
	}
	.wc26_thumbnailsRow {
		width: 100%;
		max-width: 100%;
		justify-content: flex-start;
		overflow-x: inherit;
	}
	.wc26_thumbP {
		width: 60px;
		height: 50px;
		flex-shrink: 0;
	}
	.wc26_textContentP h2 {
		font-size: 1.5rem;
		margin-bottom: 2px;
	}
	/*****COUNTDOWN*******/
	.wc26_containerCountDown {
		width: 100%;
	}
	.wc26_countdown_ilustracionJugador {
		width: 40px;
		right: 4px;
	}
	/******SELECCION MEXICANA******/
	.wc26_sliderContainerM {
		max-width: 100%;
		margin: 20px auto;
		position: relative;
	}
	.wc26_cardWrapper {
		display: flex;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.wc26_cardWrapper::-webkit-scrollbar {
		display: none;
	}
	.wc26_cardSeleccion {
		flex: 0 0 100%;
		width: 100%;
		box-sizing: border-box;
		scroll-snap-align: start;
		min-height: 350px;
		/*border: 1px solid #ccc;*/
		border-radius: 8px;
	}
	.wc26_cardSeleccion img {
		height: 300px;
		max-height: 300px;
		object-fit: cover;
		border-radius: 15px;
	}
	.wc26_cardTxt {
		bottom: 5px;
		left: 5%;
		width: 90%;
		height: 90px;
	}
	.wc26_cardSeleccion h3 {
		margin: 0px 0 5px;
	}
	.slider-navigation {
		display: flex;
		justify-content: end;
		margin-top: 15px;
	}
	.nav-button {
		background-color: transparent;
		color: #F2FF1C;
		padding: 7px 5px;
		margin: 0 10px;
		font-size: 1.8rem;
		line-height: 1;
		border: none;
	}
	.wc26_jugadorMx {
		position: absolute;
		z-index: 5;
		top: -20px;
		right: -18px;
		width: 90px;
	}
	.wc26_jugadorMx img {
		width: 90px;
		object-fit: contain;
		height: auto;
	}
	/********DONDE IR********/
	.wc26_sliderContainerDi {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		padding-bottom: 20px;
		scroll-behavior: smooth;
	}
	.wc26_sliderContainerDi::-webkit-scrollbar {
		display: none;
	}
	.wc26_cardDi {
		min-width: 80%;
		scroll-snap-align: start;
	}
	.wc26_plecaDi,
	.wc26_plecaDiAbajo {
		width: 200%;
	}
	.wc26_plecaDi {
		top: -5px;
	}
	/********DESCARGABLE********/
	.wc26_boxImgdescargable {
		display: flex;
		justify-content: center;
	}
	.wc26_boxTxtDescargable {
		width: 100%;
		font-size: 1.2rem;
		margin-top: 20px;
	}
	.wc26_boxBtnDescargable {
		width: 100%;
		margin-top: 40px;
	}
	/*******RIVALES MEXICO*******/
	.wc26_plecaRivales,
	.wc26_plecaRivalesAbajo {
		width: 200%;
	}
	.wc26_plecaRivales {
		top: -5px;
	}
	.wc26_boxImgRivales {
		height: 100px;
	}
	.wc26_boxImgRivales img {
		height: 100px;
	}
	.wc26_boxTxtRivales h3 a {
		font-size: .9rem;
	}
	.wc26_boxTxtRivales {
		height: auto;
		padding: 0px;
	}
	/*********VIDEOS**********/
	.wc26_videos {
		grid-template-columns: 1fr;
	}
	.wc26_videosGridCarrusel {
		display: flex;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		padding-bottom: 10px;
		gap: 15px;
	}
	.wc26_videosGridCarrusel::-webkit-scrollbar {
		display: none;
	}
	.wc26_videosGridCarrusel {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.wc26_videosItem {
		flex-shrink: 0;
		width: 85%;
		scroll-snap-align: start;
	}
	.wc26_videosHistoriaPrincipal {
		margin-bottom: 20px;
	}
	.wc26_iconVideo {
		position: absolute;
		z-index: 5;
		font-size: 3rem;
		top: 14%;
		left: 39%;
	}
	/********SOMOS MUNDIAL********/
	.wc26_rowSomosMundial {
		margin-top: 20px;
	}
	.wc26_boxSomosMundial {
		display: flex;
		margin: 10px 0;
	}
	.wc26_boxImgSomos img {
		border-top-left-radius: 15px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 15px;
	}
	/********FOOTER******/
	.wc26_boxFooterContent {
		width: 100%;
	}
	.wc26_boxLogoFooter {
		width: 15%;
		margin: -56px auto;
	}
}

/*********************576 a 767.98*******************/

@media (min-width: 576px) and (max-width: 767.98px) {
	.wc26_container {
		max-width: 540px;
	}
	.wc26_sliderContainerM {
		max-width: 95%;
	}
	.wc26_cardSeleccion {
		flex: 0 0 48%;
		width: 100%;
	}
	.wc26_countdown_ilustracionJugador {
		width: 60px;
		right: 70px;
	}
	.wc26_cardTxt {
		bottom: 5px;
		left: 5%;
		width: 90%;
		height: 125px;
	}
	.wc26_cardDi {
		min-width: 42%;
		scroll-snap-align: start;
	}
	.wc26_iconVideo {
		position: absolute;
		z-index: 5;
		font-size: 5rem;
		top: 19%;
		left: 39%;
	}
}

/*********************768 a 991.98*******************/

@media (min-width: 768px) and (max-width: 991.98px) {
	.wc26_container {
		max-width: 720px;
	}
	/******MENU********/
	header.scrolled .wc26_navLinks li a {
		font-size: 1.8rem;
	}
	.wc26_navLinks li a {
		margin-left: 0px;
		font-weight: 700;
	}
	.wc26_hamburger {
		display: flex;
	}
	.wc26_navLinks {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background-color: #004C75F2;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: right 0.4s ease-in-out;
	}
	.wc26_navLinks.active {
		right: 0;
		padding: 0;
	}
	.wc26_navLinks li {
		margin: 20px 0;
	}
	.wc26_navLinks li a {
		font-size: 1.8rem;
	}
	/**** ANIMACIÃ“N HAMBURGUESA A "X" ***/
	.wc26_hamburger.active span:nth-child(1) {
		transform: translateY(11px) rotate(45deg);
	}
	.wc26_hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.wc26_hamburger.active span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
	/*****COUNTDOWN*******/
	.wc26_containerCountDown {
		width: 700px;
	}
	/*********SELECCION MEXICANA********/
	.wc26_cardTxt {
		bottom: -80px;
		left: 5%;
		height: 140px;
	}
	.wc26_cardTxt h3 {
		font-size: 1.1rem;
	}
	/*********DONDE IR*********/
	.wc26_sliderContainerDi {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scrollbar-width: none;
		scroll-snap-type: x mandatory;
		padding-bottom: 20px;
		scroll-behavior: smooth;
	}
	.wc26_sliderContainerDi::-webkit-scrollbar {
		display: none;
	}
	.wc26_cardDi {
		min-width: 40%;
		scroll-snap-align: start;
	}
	.wc26_plecaDi,
	.wc26_plecaDiAbajo {
		width: 200%;
	}
	.wc26_plecaDi {
		top: -5px;
	}
	/********DESCARGABLE********/
	.wc26_boxImgdescargable {
		display: flex;
		justify-content: center;
	}
	.wc26_boxTxtDescargable {
		width: 100%;
		font-size: 1.2rem;
		margin-top: 20px;
	}
	.wc26_boxBtnDescargable {
		width: 100%;
		margin-top: 40px;
	}
	.wc26_boxImgdescargable img {
		width: 30%;
	}
	/********RIVALES DE MEXICO******/
	.wc26_plecaRivales,
	.wc26_plecaRivalesAbajo {
		width: 200%;
	}
	.wc26_plecaRivales {
		top: -5px;
	}
	/*********VIDEOS**********/
	.wc26_videos {
		grid-template-columns: 1fr;
	}
	.wc26_videosGridCarrusel {
		display: flex;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		padding-bottom: 10px;
		gap: 15px;
	}
	.wc26_videosGridCarrusel::-webkit-scrollbar {
		display: none;
	}
	.wc26_videosGridCarrusel {
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.wc26_videosItem {
		flex-shrink: 0;
		width: 45%;
		scroll-snap-align: start;
	}
	.wc26_videosHistoriaPrincipal {
		margin-bottom: 20px;
	}
	.wc26_iconVideo {
		position: absolute;
		z-index: 5;
		font-size: 3rem;
		top: 14%;
		left: 39%;
	}
	/********SOMOS MUNDIAL*******/
	.wc26_rowSomosMundial {
		margin-top: 20px;
	}
	.wc26_boxSomosMundial {
		margin: 10px 0;
	}
}

/*********************992 a 1199.98*******************/

@media (min-width: 992px) and (max-width: 1199.98px) {
	.wc26_container {
		max-width: 960px;
	}
	.wc26_navLinks li a {
		margin-left: 20px;
		font-size: 1.3rem;
		font-weight: 400;
	}
	.wc26_plecaDi,
	.wc26_plecaDiAbajo,
	.wc26_plecaRivales,
	.wc26_plecaRivalesAbajo {
		width: 140%;
	}
	.wc26_plecaDi,
	.wc26_plecaRivales {
		top: -5px;
	}
	.wc26_boxTxtRivales {
		width: 100%;
		height: 185px;
		padding: 10px;
	}
	.wc26_videosItem img {
		height: 145px;
	}
}

/*********************1200 a 1399.98*******************/

@media (min-width: 1200px) and (max-width: 1399.98px) {}
