/* C MAINOPTS {{{ */
#options-back {
	background-color: var(--purple-1);
}

#main-options > nav {
	text-align: center;
	color: white;
	position: relative;
	padding: 5px;
	z-index: 3;
}

#options {
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	padding: 0px;
}

#options > li > a {
	white-space: nowrap;
	display: flex;
	justify-content: center;
	font-weight: 500;
}

#options > li > a > icon > svg {
	fill: white;
	margin: 0px;
	margin-top: 2px;
}

#burger {
	display: none;
	cursor: pointer;
}

#burger > span {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 6px;
}

#burger > icon {
	height: 30px;
}

#burger > icon > svg {
	fill: white;
	width: 25px;
	height: 30px;
}

#burger {
	padding: 8px;
	margin: 4px;
}

#burger-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 0%;
	height: 100%;
	transition: width 0.1s ease;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4), 0 2px 5px 0px rgba(0, 0, 0, 0.4);
	z-index: 6;
	background-color: white;
}

#burger-menu > div.content {
	padding: var(--inside-space);
}

#burger-menu > div.content > div {
	display: flex;
	justify-content: space-between;
}

#burger-menu > div.content div > icon svg {
	height: 24px;
	width: 24px;
	cursor: pointer;
}

#bur-items {
	/*list-style: none;*/
	padding: 0px;
}

.opt {
	border: 6px solid var(--purple-1);
	border-radius: 10px;
	margin-top: 3px;
	margin-bottom: 3px;
	padding: 8px;
	width: 90%;
}

.opt > a {
	color: white;
}

.info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background-color: white;
	padding: var(--inside-space);
	width: 100%;
	flex-direction: column;
	color: black;
	z-index: 0;
	text-align: left;
	gap: 8px;
}

.info > a, .info > div {
	display: flex;
	width: 1fr;
	min-height: 60px;
	padding: 5px;
}

.info > a > img {
	height: 50px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 8px;
}

.info > a > span {
	margin-top: auto;
	margin-bottom: auto;
}

.bitem {
	gap: 2px;
	width: 100%;
	height: 100px;
	text-align: center;
	justify-content: center;
}

.bitem > svg {
	margin: auto;
	width: 100px;
	height: 50px;
}

#opt-content {
	display: none;
	left: 0;
	top: 80%;
	height: 400px;
	position: absolute;
	flex-direction: row;
	width: 100%;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4), 0 2px 5px 0px rgba(0, 0, 0, 0.4);
}

#promos {
	background-color: var(--color-2-a);
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 960px) {
	#others {
		display: none;
	}
}

@media screen and (min-width: 891px) {
	#burger-menu {
		display: none !important;
	}

	html {
		overflow: auto !important;
	}
}

@media screen and (max-width: 890px) {
	#options {
		display: none;
	}

	#burger {
		display: flex;
		margin: 3px;
	}
}

@media screen and (min-width: 596px) {
	#burger-menu {
		max-width: 354px !important;
	}
}

@media screen and (max-width: 595px) {
	#burger {
		position: absolute;
		top: -159px;
		left: 13px;
	}

	#main-options > nav {
		height: 25px;
	}

	#burger-menu {
		max-width: 100vw !important;
	}
}
/* MAINOPTS }}} */

/* C CAROUSEL {{{ */
#carousel {
	/*position: relative;*/
	border-radius: var(--soft);
	overflow: hidden;
}

#slides {
	display: flex;
	margin: 20px var(--inside-space) 0px var(--inside-space);
	border-radius: var(--soft);
	/*position: relative;*/
	overflow: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	height: 100%;
}

/* Alineación de slides a la izquierda */
/*
.slide {
	min-width: 100%;
	position: relative;
	scroll-snap-align: start;
	border-radius: var(--soft);
	height: 400px;
	overflow: hidden;
}
*/

/* Alineacion de slides al centro */
.slide {
	scroll-snap-align: start;
	display: inline-flex;
	justify-content: center;
	min-width: 100%;
	position: relative;
	border-radius: var(--soft);
	height: 400px;
	overflow: hidden;
}

.slideimg {
	border-radius: var(--soft);
	overflow: hidden;
	height: 400px;
	position: absolute;
	min-width: 100%;
	/*left: 0px;*/ /*  Alinear Izquierda  */ 
	height: 100%;
	aspect-ratio: 16 / 4;
}


.slide > img, .slideimg > img {
	height: 100%;
	width: 100%;
	aspect-ratio: 16 / 4;
	border-radius: var(--soft);
}

.slidetext {
	position: absolute;
	top: 20%;
	right: 5%;
	width: 370px;
	padding: 25px;
	border-radius: var(--soft);
	backdrop-filter: brightness(50%) blur(1px);
}

.slidetext > span {
	display: inline-block;
	color: var(--green-1);
	text-align: right;
	font-weight: 500;
	width: 100%;
}

.slidetext > h2 { 
	margin: 0px;
	text-align: right;
	color: white;
}

.slidetext > button {
	display: block;
	margin-top: 8px;
	margin-left: auto;
	background-color: white;
	border-radius: var(--semicircle);
	padding: 5px 10px;
	color: var(--purple-1);
	font-weight: bold;
	border: none;
}

#bullets {
	display: flex;
	justify-content: space-evenly;
	position: absolute;
	margin: auto;
	padding: 8px;
	opacity: 0.8;
	border-radius: 100px;
	text-align: center;
	left: 0;
	right: 0;
	top: 570px;
	width: 128px;
}

.bullet {
	display: inline-flex;
	margin: 0.16px;
	background-color: var(--color-2-c);
	border: 1px solid var(--color-1-b);
	border-radius: 50%;
	cursor: pointer;
	height: 16px;
	width: 16px;
}

.act {
	background-color: var(--purple-1);
	border: 1px solid white;
	transition: 0.5s;
}

@media screen and (max-width: 795px) {
	#slides > a > img {
		width: 1600px;
	}

	.slide {
		display: inline-flex;
		justify-content: center;
		overflow: hidden;
		height: 400px;
	}

	.slidetext > h2 {
		font-size: 20px;
	}
}
/* CAROUSEL }}} */

/* C SPECIFICS {{{ */
#specifics {
	display: flex;
	justify-content: space-between;
	margin: var(--inside-space);
	gap: 8px;
}

#specifics > a > img {
	min-width: 400px;
	min-height: 300px;
	overflow: hidden;
}

#specifics > a > span {
	position: absolute;
	padding: 5px;
	opacity: 0.7;
	width: 100%;
	background-color: white;
	color: black;
}

#specifics > a > span.up {
	top: 0;
}

#specifics > a > span.down {
	bottom: 0;
}

.spec {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	align-items: center;
	vertical-align: middle;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	/*box-shadow: 2px 8px 9px 2px var(--color-2-c);*/
	/*box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4), 0 2px 5px 0px rgba(0, 0, 0, 0.4);*/
	border-radius: var(--soft);
}

.spectext {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	color: white;
	background-image: linear-gradient(to bottom, transparent, black);
	text-align: left;
	padding: 10px;
}

.spectext > h3 {
	margin: 0px;
}

.spectext > button {
	background-color: transparent;
	border: 2px solid var(--purple-1);
	border-radius: var(--soft);
	color: white;
}

@media screen and (max-width: 595px) {
	#specifics {
		flex-direction: column;
		gap: 24px;
	}

	#specifics > a > img {
		min-width: 600px;
		min-height: 450px;
		overflow: hidden;
	}
}

@media screen and (max-width: 595px) {
	#specifics {
		flex-direction: column;
		gap: 24px;
	}

	#specifics > a > img {
		min-width: 600px;
		min-height: 450px;
		overflow: hidden;
	}
}
/* SPECIFICS }}} */

/* FEATURES {{{ */
#features {
	width: 100%;
}

#features2 {
	margin: 0px var(--inside-space);
	margin-top: 24px !important;
	gap: 10px;
}

#features > div {
	margin: 0px var(--inside-space);
	justify-content: center;
}

.feature2 {
	background-color: var(--grey-1);
	border-radius: var(--soft);
	margin: 4px;
	padding: var(--inside-space);
	width: 50%;
	overflow: hidden;
}

.feat-info2 {
	min-width: 60%;
}

.feat-info2 > span {
	background-color: white;
	border-radius: var(--semicircle);
	padding: 3px 8px;
	font-weight: 500;
	white-space: nowrap;
}

.feature {
	margin: 5px;
	padding: 5px;
	border-radius: var(--soft);
	transition: 0.1s;
}

.feature > img {
	margin: auto 10px;
	margin-right: 20px;
}

.feat-info {
	margin: auto;
	padding: 5px;
}

.feat-info > h3 {
	margin: 0px;
	margin-top: 10px;
	color: var(--purple-1);
}

.feat-info > p {
	color: var(--black-1);
}

@media screen and (max-width: 595px) {
	.feature2 {
		width: auto;
		max-width: 100%;
	}
}
/* FEATURES }}} */

