@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

:root
{
	--verdeLS: #00904A;
	--verdeLSclaro: #00B478;
	--verdeLSoscuro: #177449;
	--verdeLSbackdrop: #002c17;
	--gris: #a7a7a7;
	--grisClaro: #F4F4F4;
	--grisClaroOscuro: #CDCECD;
	--grisOscuro: #808080;
	--redFalse: #BC0C23;
	--greeenTrue: #00904A;
	--radius: 15px;
	--gap: 25px;
	--paddingSmall: 25px;
	--maxWidth: 1440px;
}

@font-face
{
	font-family: "Gotham-Light";
	src: url("../fonts/Gotham-Light.otf") format("opentype");
}

@font-face
{
	font-family: "Gotham-Medium";
	src: url("../fonts/Gotham-Medium.otf") format("opentype");
}

@font-face
{
	font-family: "Gotham-Book";
	src: url("../fonts/Gotham-Book.otf") format("opentype");
}

@font-face
{
	font-family: "Gotham-BookItalic";
	src: url("../fonts/Gotham-BookItalic.otf") format("opentype");
}

@font-face
{
	font-family: "Gotham-Bold";
	src: url("../fonts/Gotham-Bold.otf") format("opentype");
}

@font-face
{
	font-family: "Gotham-Ultra";
	src: url("../fonts/Gotham-Ultra.otf") format("opentype");
}

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

html
{
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body
{
	font-family: "Gotham-Medium";
	line-height: 1.5;
	color: var(--grisOscuro);
}

html:has(body#empleos)
{
	scroll-padding-top: 135px;
}

a
{
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

strong
{
	font-weight: bold;
	font-family: "Gotham-Bold";
}

::backdrop
{
	background-color: var(--verdeLSbackdrop);
	opacity: 0.75;
}

dialog
{
	border: none;
	background-color: #FFFFFF;
	border-radius: var(--radius);
	margin: auto;
	padding: 35px;
	width: 75%;
	max-width: 1000px;
	text-align: left;
	color: var(--grisOscuro);

	overflow: hidden;
}

.close
{
	z-index: 10;
	position: absolute;
	right: 17px;
	top: 17px;
	width: 17px;
	height: 17px;
	background-image: url("../img/icons/close.png");
	background-repeat: no-repeat;
}

.close.white
{
	background-image: url("../img/icons/close_white.png");
}

.button
{
	border: 2px solid transparent;
	border-radius: 20px;
	padding: 10px 25px;
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
	margin: 5px;
	display: inline-block;
	font-size: 14px !important;
	text-align: center;
	font-family: "Gotham-Book";
}

.button:focus
{
	border: 2px solid var(--verdeLSoscuro);
}

.button:hover
{
	background-color: var(--verdeLSoscuro);
}

.button_large
{
	min-width: 225px;
}

.button i
{
	margin-right: 10px;
}

a.button_outline
{
	border: 1px solid var(--verdeLSclaro);
	background-color: #FFFFFF;
	color: var(--verdeLSclaro);
	font-size: 16px;
}

.active a.button_outline
{
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
}

a.button_outline_black
{
	border: 1px solid var(--grisOscuro);
	color: var(--grisOscuro);
	border-radius: 20px;
	padding: 7px 35px;
	margin-top: 15px;
	display: inline-block;
	font-size: 16px;
	text-align: center;
}

a.button_outline_black:focus
{
	border: 1px solid var(--verdeLSclaro);
	background-color: var(--grisClaro);
}

a.button_outline_black:hover
{
	border: 1px solid var(--verdeLSclaro);
	color: var(--verdeLSclaro);
}

a.plus
{
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
}

a.plus i
{
	margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
summary
{
	color: var(--verdeLSclaro);
	line-height: 1.1;
	font-family: "Gotham-Bold";
}

h1
{
	font-size: 42px;
}

h2
{
	font-size: 36px;
}

h3
{
	font-size: 32px;
}

h4
{
	font-size: 24px;
}

h5
{
	font-size: 20px;
}

h6
{
	font-size: 16px;
}

p
{
	margin: 15px auto;
	font-family: "Gotham-Book";
	font-weight: 900;
	font-size: 16px;
}

.wrapper
{
	width: 100%;
	max-width: var(--maxWidth);
	overflow: hidden;
	margin: 0 auto;
	padding-top: 90px;
}

header
{
	background-color: #FFFFFF;
	color: var(--verdeLS);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	font-size: 14px;
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
	max-width: var(--maxWidth);
}

section
{
	padding: 50px;
	text-align: center;
	position: relative;
}

section.hero
{
	padding: 50px;
}

section.hero .info
{
	background-color: rgba(0, 144, 74, 0.7);
	width: 50%;
	text-align: left;
	color: #FFFFFF;
	border-radius: var(--radius);
	padding: 35px;

	align-self: center;
	margin-left: auto;

	max-height: 95%;
}

section.hero .info h1
{
	color: inherit;
}

.mosaic
{
	display: flex;
	flex-direction: column;
}

.mosaic > div
{
	display: flex;
	align-items: center;
	flex: 1;
}

.mosaic > div > div
{
	width: 50%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.mosaic .image
{
	line-height: 0;
}

.mosaic .image img
{
	height: 100%;
}

.mosaic .text
{
	padding: 25px 50px;
	display: flex;
	text-align: left;
}

.mosaic .text div
{
	margin: auto;
}

.mosaic .text h2
{
	color: var(--verdeLSclaro);
	margin-bottom: 15px;
}

.mosaic .text p
{
	margin: 10px 0;
	width: 85%;
}

.mosaic .text a
{
	width: 175px;
}

#index .message
{
	padding: 18px 60px;
	background-color: var(--grisClaro);
	font-size: 15px;
	font-family: "Gotham-Book";
	position: relative;
	color: #000000;
}

#index .message .close
{
	right: 25px;
	top: 25px;
}

#index .message strong
{
	color: var(--verdeLSclaro);
	font-family: "Gotham-Bold";
}

#index .hero
{
	padding: 0;
}

#index .hero .swiper
{
	max-height: calc(100vh - 165px);
}

#index .products .showcase_nav
{
	position: absolute;
	width: 120px;
	height: 50px;
	right: 0;
	top: 85px;
}

#index .products .showcase_nav .swiper-button-prev::after,
#index .products .showcase_nav .swiper-button-next::after
{
	content: "";
}

#index .products .showcase_nav .swiper-button-prev i,
#index .products .showcase_nav .swiper-button-next i
{
	color: var(--verdeLS);
	font-size: 22px;
}

#index .products .showcase_nav .swiper-button-disabled i
{
	color: var(--gris);
}

#index .products .showcase
{
	position: relative;
	text-align: center;
	margin-top: var(--gap);
}

#index .products .showcase .swiper-slide
{
	display: flex;
	height: unset;
}

#index .products .showcase div.normal
{
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 390px;
}

#index .products .showcase h3,
#index .products .showcase h4
{
	color: var(--grisOscuro);
	z-index: 10;
}

#index .products .showcase h3
{
	font-size: 19px;
	margin-bottom: 5px;
}

#index .products .showcase h4
{
	font-size: 13px;
	font-family: "Gotham-Book";
	margin-bottom: auto;
}


#index .products .showcase img
{
	margin: 0 auto;
	width: unset;
	height: unset;
}

#index .products .showcase a.plus
{
	position: absolute;
	bottom: 20px;
	right: 65px;
}

#index .products .showcase div.over
{
	display: none;
}

#index .products .showcase div.over h2
{
	margin: auto;
	color: #FFFFFF;
	font-size: 29px;
	width: 100%;
}

#index .products .showcase .swiper-slide.active div.over
{
	background-color: rgba(0, 180, 128, 0.9);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--radius);
	display: flex;
	color: #FFFFFF;
	padding: 30px;
}

#index .products .showcase .swiper-slide.active h3,
#index .products .showcase .swiper-slide.active h4
{
	color: #FFFFFF;
}

#index .products .showcase .swiper-slide.active a.plus
{
	color: var(--verdeLS);
	background-color: #FFFFFF;
	z-index: 10;
}

#index .content
{
	padding: 0;
}

#index .content h2
{
	font-size: 42px;
}

#index .content p
{
	color: var(--grisOscuro);
}

#index .connect ul
{
	display: flex;
	margin-top: 40px;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	justify-content: center;
}

#index .connect ul li
{
	border-left: 1px solid var(--grisClaro);
	padding: var(--gap);
	display: flex;
}

#index .connect ul li:last-child
{
	border-right: 1px solid var(--grisClaro);
}

#index .connect ul li div
{
	margin: 0 auto;
	width: 190px;
	max-width: 190px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

#index .connect ul li img
{
	height: 70px;
	margin: auto;
	margin-bottom: auto;
	margin-top: 0;
}

#index .connect ul li h5
{
	font-family: "Gotham-Medium";
	font-size: 20px;
}

#index .connect ul li h6
{
	color: black;
	margin: 15px auto;
	font-family: "Gotham-Medium";
	font-size: 14px;
}

#index .connect ul li p
{
	font-size: 12px;
	margin: 15px auto;
}

#index .connect ul li a
{
	margin: 0 auto;
	margin-top: auto;
	font-size: 14px !important;
	width: 100%;
	padding: 5px;
}

#index .news
{
	text-align: left;
}

#index .news > div .button_outline_black
{
	margin-top: 10px;
}

#index .news .news_nav
{
	position: absolute;
	width: 120px;
	height: 50px;
	right: 0;
	top: 85px;
}

#index .news .news_nav .swiper-button-prev::after,
#index .news .news_nav .swiper-button-next::after
{
	content: "";
}

#index .news .news_nav .swiper-button-prev i,
#index .news .news_nav .swiper-button-next i
{
	color: var(--verdeLS);
	font-size: 22px;
}

#index .news .news_nav .swiper-button-disabled i
{
	color: var(--gris);
}

#index .news .swiper
{
	margin-top: var(--gap);
}

#index .news .swiper .swiper-slide
{
	text-align: left;
	display: flex;
	flex-direction: column;
	height: unset;
}

#index .news .swiper .swiper-slide div.thumbnail
{
	width: 100%;
	aspect-ratio: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

#index .news .swiper .swiper-slide h5
{
	margin: 10px 0;
	font-family: "Gotham-Medium";
	font-weight: normal;
	font-size: 16px;
}

#index .news .swiper .swiper-slide a
{
	margin-left: 0;
	margin-top: auto;
	width: 70%;
	text-align: center;
}

.tienda
{
	background-color: var(--grisClaro);
	display: flex;
	align-items: center;
	padding: 25px 75px;
}

.tienda img
{
	border-right: 1px solid var(--grisOscuro);
	padding-right: 35px;
}

.tienda h3
{
	margin-right: auto;
	margin-left: 35px;
	text-align: left;
	width: 35%;
	font-size: 29px;
}

.contact
{
	display: none;
	padding: 70px;
}

.contact h1
{
	text-align: left;
	padding-left: 25px;
}

.contact form
{
	display: flex;
	position: relative;
	font-family: "Lato";
	font-size: 14px;
	flex-wrap: wrap;
}

.contact form > div
{
	flex: 1;
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.contact form > div > div
{
	display: flex;
	gap: 15px;
}

.contact form > div:first-of-type > div:not(.common)
{
	display: none;
}

.contact select,
.contact input,
.contact textarea
{
	border: none;
	background-color: var(--grisClaro);
	width: 100%;
	padding: 8px;
	border-radius: 7px;
	font-family: inherit;
	font-size: inherit;
}

.contact textarea
{
	resize: none;
	height: 100%;
}

.contact form > div:last-of-type
{
	padding: 0 25px;
	justify-content: right;
	flex-direction: row;
	flex-basis: 100%;
	width: 100%;
}

.contact form > div:last-of-type p
{
	text-align: right;
	margin-right: 0;
}

.contact form .response
{
	display: none;
}

.contact form button
{
	width: 165px;
}

footer .social
{
	background-color: var(--grisClaro);
	color: var(--verdeLSclaro);
	padding: 50px 40px;
}

footer .social ul
{
	display: flex;
	gap: 50px;
	margin: 35px auto;
	justify-content: center;
	font-size: 42px;
}

footer .social ul li a:focus,
footer .social ul li a:hover
{
	color: var(--verdeLSoscuro);
}

footer .social p
{
	color: var(--grisOscuro)
}

footer .social p:first-of-type
{
	font-size: 18px;
}

footer .social p:last-of-type
{
	font-size: 15px;
}

footer .social p strong
{
	font-size: 24px;
}

footer .legal
{
	font-size: 13px;
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
	text-align: left;
}

footer .legal p
{
	margin: 0 auto;
}

footer .legal hr
{
	border: none;
	border-top: 1px solid #FFFFFF;
	opacity: 0.5;
	margin: 35px 0;
}

footer .legal div:last-child
{
	text-align: right;
}

footer .legal div:last-child span
{
	margin-top: 30px;
	display: block;
}

.outline
{
	border: 1px solid var(--verdeLSclaro);
	padding: 35px;
	margin: 50px;
	border-radius: var(--radius);
}

.outline h1
{
	margin-bottom: 15px;
}

.outline p
{
	width: 75%;
}

.outline .button
{
	font-size: 16px !important;
}

dialog#downloads_form
{
	width: 50%;
}

dialog#downloads_form form
{
	text-align: right;
}

dialog#downloads_form input
{
	border: 1px solid white;
	background-color: var(--grisClaro);
	width: 100%;
	padding: 8px;
	border-radius: 7px;
	font-family: inherit;
	font-size: inherit;
	margin: 8px auto;
}

dialog#downloads_form input:user-invalid
{
	border: 1px solid red;
}

dialog#downloads_list
{
	width: 75%;
	padding: 15px;
}

dialog#downloads_list > div
{
	max-height: 440px;
	overflow-y: auto;
	padding: 15px;
}

dialog#downloads_list ul
{
	color: var(--verdeLSclaro);
}

dialog#downloads_list ul li
{
	border: 1px solid var(--verdeLSclaro);
	margin: 10px auto;
	border-radius: 12px;
	padding: 7px 30px 7px 15px;
	position: relative;
	text-transform: uppercase;
}

dialog#downloads_list ul li a
{
	display: block;
}

dialog#downloads_list ul li a i
{
	position: absolute;
	right: 7px;
	top: 10px;
}

dialog#downloads_list ul:first-of-type li
{
	color: white;
	background-color: var(--verdeLSclaro);
}

/* QUIENES SOMOS */
#quienes-somos .hero
{
	background-image: url("../img/quienes-somos.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;

	justify-content: flex-end;
}

#quienes-somos .circuit
{
	background-color: var(--grisClaro);
	background-image: url("../img/bg_circuit.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-blend-mode: overlay;
}

#quienes-somos .circuit .circle
{
	--deg: 45deg;
	width: 80%;
	display: flex;
	margin: 200px auto 250px auto;
	overflow: inherit !important;
}

#quienes-somos .circuit .circle .swiper-button-prev,
#quienes-somos .circuit .circle .swiper-button-next
{
	display: none;
}

#quienes-somos .circuit .circle_aux
{
	display: none;
}

#quienes-somos .circuit .main
{
	position: relative;
	margin: auto;
	width: 60%;
	aspect-ratio: 1;
	border: 1px solid var(--verdeLSclaro);
	border-radius: 50%;
	background-image: url("../img/logo.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
}

#quienes-somos .circuit .secondary
{
	display: flex;
	position: absolute;
	text-align: left;
	gap: var(--gap);
}

#quienes-somos .circuit .secondary .icon
{
	background-color: var(--grisClaroOscuro);
	border-radius: 50%;
	padding: 15px;
	width: 100px;
	aspect-ratio: 1;
	display: flex;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 70%;
}

#quienes-somos .circuit .secondary .icon img
{
	margin: auto;
}

#quienes-somos .circuit .secondary > div:last-child
{
	width: 300px;
}

#quienes-somos .circuit .secondary:nth-child(1)
{
	left: 65%;
	top: -5%;
}

#quienes-somos .circuit .secondary:nth-child(1) > div:last-child
{
	margin-top: -50px;
	margin-left: 25px;
}

#quienes-somos .circuit .secondary:nth-child(2)
{
	left: 90%;
	top: 40%;
}

#quienes-somos .circuit .secondary:nth-child(3)
{
	left: 65%;
	top: 85%;
}

#quienes-somos .circuit .secondary:nth-child(4)
{
	left: -85%;
	top: 65%;
	flex-direction: row-reverse;
	text-align: right;
}

#quienes-somos .circuit .secondary:nth-child(5)
{
	left: -80%;
	top: 10%;
	flex-direction: row-reverse;
	text-align: right;
}

#quienes-somos .circuit p
{
	color: var(--grisOscuro);
	max-width: 700px;
}

#quienes-somos .circuit .circle h4
{
	font-size: 29px;
}

#quienes-somos .circuit .circle p
{
	font-size: 16px;
}

#quienes-somos .numbers > div
{
	display: flex;
	margin-top: 50px;
}

#quienes-somos .numbers > div div
{
	flex: 1;
	text-align: left;
	align-self: self-start;
}

#quienes-somos .map
{
	width: 100%;
	display: flex;
}

#quienes-somos svg
{
	width: 585px;
	height: 100%;
	margin: 0 auto;
}

#quienes-somos svg .province
{
	fill: #FFFFFF;
	stroke: var(--grisOscuro);
	stroke-width: 1;
}

#quienes-somos svg circle:hover
{
	fill: var(--verdeLSclaro);
	outline: 1px solid var(--verdeLSclaro);
	border-radius: 50%;
}

#quienes-somos .numbers > div > div:last-of-type
{
	padding-left: 50px;
}

#quienes-somos .numbers > div h1
{
	font-family: "Gotham-Ultra";
	font-size: 32px;
	color: var(--grisOscuro);
}

#quienes-somos .numbers > div h2
{
	font-family: "Gotham-Ultra";
	font-size: 32px;
}

#quienes-somos .numbers > div h3
{
	font-size: 22px;
}

#quienes-somos .numbers > p
{
	font-size: 22px;
	font-family: "Gotham-BookItalic";
}

#quienes-somos .numbers p
{
	margin: 0;
	font-size: 18px;
}

#quienes-somos .work
{
	display: flex;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

#quienes-somos .work div
{
	width: 50%;
	padding: 75px 40px;
}

#quienes-somos .work div p
{
	width: 100%;
}

#quienes-somos .work div .button
{
	font-size: 16px;
}

#quienes-somos .work div:first-child
{
	background-image: url("../img/work_with_us.png");
	background-repeat: no-repeat;
	background-size: cover;
}

#quienes-somos dialog.map_info
{
	background-color: var(--verdeLSclaro);
	max-width: 85%;
	width: fit-content;
}

#quienes-somos dialog.map_info::backdrop
{
	background-color: #FFFFFF;
	opacity: 0.75;
}

#quienes-somos dialog.map_info *
{
	color: #FFFFFF !important;
}

#quienes-somos dialog.map_info ul.locations
{
	column-count: 2;
	column-fill: balance;
}

#quienes-somos dialog.map_info ul.locations li
{
	margin-bottom: 10px;
	break-inside: avoid-column;
	display: inline-block;
}

#quienes-somos dialog.map_info ul.locations li h3
{
	font-size: 29px;
}

#quienes-somos dialog.map_info ul.locations li p:not(:first-child)
{
	margin: 0;
	font-size: 12px;
	list-style: disc outside none;
	display: list-item;
	margin-left: 10px;
	margin-right: 15px;
}

#quienes-somos dialog.map_info ul.locations li p:first-child
{
	font-size: 14px;
	text-transform: uppercase;
	font-family: "Gotham-Medium";
	margin: 5px 0;
}

/* PRODUCTOS */
#productos dialog
{
	max-height: 575px;
}

#productos .goback
{
	padding: 15px;
	text-align: left;
	background-color: var(--grisClaro);
}

#productos .goback a
{
	margin: 0;
	margin-left: 100px;
}

#productos .goback a i
{
	margin-right: 15px;
}

#productos .products ul
{
	margin-top: var(--gap);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: var(--gap);
}

#productos .products ul li
{
	width: 100%;
	min-width: 290px;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 1;
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
}

#productos .products ul li a
{
	z-index: 2;
	position: absolute;
	inset: 0;
	padding: 75px 20px 30px 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#productos .products ul li:last-of-type
{
	margin-right: auto;
}

#productos .products ul li h2
{
	color: #FFFFFF;
	font-size: 42px;
}

#productos .products ul li .counter
{
	position: absolute;
	background-color: var(--verdeLSoscuro);
	color: #FFFFFF;
	text-transform: uppercase;
	border-radius: 10px;
	padding: 3px 10px;
	top: 40px;
	left: 20px;
	font-size: 12px;
}

#productos .products ul li .button
{
	position: relative;
	font-size: 16px !important;
	min-width: 190px;
}

#productos .products ul li .overlay
{
	position: absolute;
	inset: 0;
	background: linear-gradient(133deg, rgba(88, 54, 3, 1) 0%, rgba(88, 54, 3, 0) 100%);
	z-index: 1;
	opacity: 0.4;
}

#productos .hero
{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
}

#productos details
{
	border: 1px solid var(--gris);
	padding: var(--gap);
	margin: 0 50px 30px 50px;
	border-radius: var(--radius);
	text-align: left;
	overflow: hidden;
	cursor: pointer;
}

#productos details summary
{
	font-size: 24px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#productos details[open] summary~*
{
	animation: open 0.3s ease-in-out;
}

#productos details summary span
{
	font-size: 42px;
	text-transform: uppercase;
}

#productos details p
{
	cursor: default;
}

@keyframes open
{
	0%
	{
		opacity: 0;
	}

	100%
	{
		opacity: 1;
	}
}

#productos details summary::marker
{
	content: "";
}

#productos details > summary
{
	list-style: none;
}

#productos details > summary::-webkit-details-marker
{
	display: none;
}

#productos details hr
{
	border: none;
	border-bottom: 1px solid var(--gris);
	margin: 25px 0;
}

#productos details ul
{
	display: grid;
	grid-template-columns: repeat(auto-fit, 200px);
	text-align: center;
	overflow-x: auto;
	padding-bottom: var(--gap);
	gap: var(--gap);
	justify-content: center;
}

#productos .detail details ul li
{
	min-width: 180px;
	max-width: 270px;
	display: flex;
}

#productos .detail details ul li a
{
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

#productos .detail details ul li p
{
	text-transform: uppercase;
	font-family: "Gotham-Bold";
	min-height: 50px;
}

#productos .detail details ul li img
{
	width: 100%;
}

#productos .detail details ul li .button
{
	margin-top: auto;
	width: 115px;
}

#productos .detail ul i,
#productos .detail ul span.selection
{
	display: none;
}

#productos .detail details[open] summary .button
{
	display: none;
}

#productos .detail details[open] summary:after
{
	position: absolute;
	right: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f00d";
	cursor: pointer;
	background-color: transparent;
	color: var(--verdeLS);
}

#productos ul.menu_product_detail
{
	display: flex;
	gap: inherit;
	justify-content: left;
}

#productos dialog h1
{
	text-transform: uppercase;
}

#productos ul.menu_product_detail li.active a
{
	font-family: "Gotham-Bold";
}

#productos ul.menu_product_detail a
{
	font-size: 12px !important;
	padding: 5px 10px;
	width: auto !important;
}

#productos div.product_detail
{
	min-height: 350px;
}

#productos div.product_detail div
{
	height: 100%;
}

#productos div.product_detail .product_detail_info
{
	display: flex;
	gap: var(--gap);
	color: var(--grisOscuro);
}

#productos div.product_detail .product_detail_info > div:first-child
{
	width: 40%;
	margin: auto;
}

#productos div.product_detail .product_detail_info > div:last-child
{
	max-width: 550px;
	max-height: 400px;
	overflow-y: auto;
}

#productos div.product_detail_info img
{
	height: 100%;
	max-height: 400px;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
}

#productos div.product_detail .product_detail_images .swiper-button-next,
#productos div.product_detail .product_detail_images .swiper-button-prev
{
	top: 0;
	color: var(--grisOscuro);
}

#productos div.product_detail .product_detail_images .swiper-button-prev::after,
#productos div.product_detail .product_detail_images .swiper-button-next::after
{
	content: '';
}

#productos div.product_detail .product_detail_images .swiper-button-next i,
#productos div.product_detail .product_detail_images .swiper-button-prev i
{
	border: 1px solid var(--grisOscuro);
	border-radius: var(--radius);
	padding: 5px 10px;
}

#productos div.product_detail .swiper-slide:not(.product_detail_info)
{
	height: 400px
}

#productos div.product_detail .swiper-slide:not(.product_detail_info) img
{
	object-fit: contain;
}

#productos table td
{
	vertical-align: top;
	padding-top: 10px;
	font-size: 16px;
	font-family: "Gotham-Book";
}

#productos ul.seals
{
	margin-top: 15px;
	gap: 5px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: start;
}

#productos ul.seals li
{
	min-width: auto !important;
}

#productos ul.seals li img
{
	height: auto !important;
	width: auto !important;
}

#productos ul.subcategories_list
{
	display: flex;
	gap: var(--gap);
	border-top: 3px solid var(--verdeLSclaro);
	margin-top: -25px;
	font-family: "Gotham-Bold";
	padding-bottom: 0;
	overflow: auto;
	padding: 0 10px;
}

#productos ul.subcategories_list li
{
	min-width: unset !important;
	max-width: unset !important;
	text-transform: uppercase;
	white-space: nowrap;
}

#productos ul.subcategories_list li.active
{
	color: var(--verdeLSclaro);
	text-decoration: underline;
}

#productos .swiper.subcategories
{
	height: 0;
}

/* NUTRICION */
#nutricion .hero
{
	background-image: url("../img/nutricion/main.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100vh;
	display: flex;

	justify-content: flex-end;
}

#nutricion .nutritional_info
{
	padding: 25px 0 25px 0;
}

#nutricion .nutritional_info h1
{
	margin: 25px auto;
}

#nutricion .mosaic > div > div
{
	aspect-ratio: 1.3;
}

#nutricion .mosaic > div:first-child .text,
#nutricion .mosaic > div:last-child .text
{
	background-color: var(--grisClaro);
}

#nutricion .myths ul
{
	margin-top: 25px;
	display: flex;
	gap: var(--gap);
	justify-content: center;
	flex-wrap: wrap;
}

#nutricion .myths ul li
{
	background-color: var(--grisClaro);
	border-radius: var(--radius);
	padding: 25px;
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: relative;
	overflow: hidden;
	max-width: 390px;
}

#nutricion .myths ul li h3
{
	color: var(--grisOscuro);
}

#nutricion .myths ul li .button
{
	width: 50%;
	margin: 0 auto;
}

#nutricion .myths ul li div
{
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 40px;
	visibility: hidden;
	transition: all 0.5s ease;
}

#nutricion .myths ul li div *
{
	color: #FFFFFF;
}

#nutricion .myths ul li div.true
{
	background-color: var(--greeenTrue);
}

#nutricion .myths ul li div.false
{
	background-color: var(--redFalse);
}

#nutricion .myths ul li div h3
{
	font-size: 26px;
}

#nutricion .myths ul li div h4
{
	font-size: 20px;
}

#nutricion .myths ul li div p
{
	font-size: 14px;
	line-height: 1.3;
}

/* COMUNIDAD */
#comunidad .hero
{
	background-image: url("../img/comunidad/main.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
}

#comunidad .hero .info
{
	margin-left: 0;
	margin-right: auto;
}

#comunidad .educational
{
	background-color: var(--grisClaro);
	text-align: left;
}

#comunidad .educational ul
{
	margin-top: var(--gap);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: var(--gap);
}

#comunidad .educational ul li
{
	display: flex;
	border: 1px solid var(--grisOscuro);
	border-radius: var(--radius);
	overflow: hidden;
}

#comunidad .educational ul li > div
{
	max-width: 50%;
	overflow: hidden;
}

#comunidad .educational ul li > div:last-of-type
{
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
}

#comunidad .educational ul li > div img
{
	height: 100%;
}

#comunidad .initiatives
{
	text-align: left;
}

#comunidad .initiatives h1
{
	max-width: 700px;
}

#comunidad .initiatives ul
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: var(--gap);
	margin-top: var(--gap);
}

#comunidad .initiatives ul li
{
	display: flex;
	flex-direction: column;
	border: 1px solid var(--grisOscuro);
	border-radius: var(--radius);
	overflow: hidden;
}

#comunidad .initiatives ul li > div
{
	overflow: hidden;
}

#comunidad .initiatives ul li > div:last-of-type
{
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	text-align: left;
}

#comunidad .initiatives ul li > div img
{
	width: 100%;
}

#comunidad .initiatives ul li .button
{
	width: 50%;
}

/* SUSTENTABILIDAD */
#sustentabilidad .hero
{
	background-image: url("../img/sustentabilidad/main.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	height: 100vh;
	display: flex;

	justify-content: flex-end;
}

#sustentabilidad .hero .info
{
	margin-left: 0;
	margin-right: auto;
}

#sustentabilidad .un
{
	background-color: var(--grisClaro);
}

#sustentabilidad .un > h1
{
	max-width: 730px;
	margin: 0 auto;
}

#sustentabilidad .un > p
{
	max-width: 810px;
	font-size: 22px;
}

#sustentabilidad .un p.color
{
	color: var(--verdeLSclaro);
}

#sustentabilidad .reports > p
{
	max-width: 870px;
	font-size: 16px;
}

#sustentabilidad .reports .button
{
	padding-left: 88px;
	padding-right: 88px;
	border-radius: 25px;
}

#sustentabilidad .alliances > h1
{
	max-width: 580px;
	margin: 0 auto;
}

#sustentabilidad .alliances > p
{
	max-width: 915px;
	margin: var(--gap) auto;
}

#sustentabilidad .alliances ul
{
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

#sustentabilidad dialog h3
{
	font-size: 29px;
}

#sustentabilidad dialog p
{
	color: var(--grisOscuro);
}

/* PRENSA */
#prensa .news
{
	text-align: left;
}

#prensa .news nav
{
	display: flex;
	margin-bottom: 25px;
	justify-content: space-between;
	align-items: center;
}

#prensa .news nav.categories
{
	border-bottom: 1px solid var(--grisOscuro);
}

#prensa .news nav.categories > a
{
	margin: 0;
	margin-right: var(--gap);
}

#prensa .news nav.categories ul
{
	display: flex;
	gap: var(--gap);
	color: var(--verdeLSclaro);
	font-size: 26px;
}

#prensa .news nav.categories ul li a
{
	padding-bottom: 5px;
}

#prensa .news nav.categories ul li a.active
{
	border-bottom: 4px solid var(--verdeLSclaro);
}

#prensa .news nav.categories button
{
	background-color: #FFFFFF;
	border: 1px solid var(--grisOscuro);
	color: var(--grisOscuro);
	cursor: pointer;
}

#prensa .news nav.categories button:first-child
{
	margin-right: var(--gap);
}

#prensa .news nav.categories button.filter
{
	margin-left: auto;
}

#prensa .news nav.categories button.active
{
	background-color: var(--grisOscuro);
	color: #FFFFFF;
}

#prensa .news nav.filter
{
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
	font-family: "Gotham-Light";
	align-items: center;
}

#prensa .news nav.filter.expanded
{
	max-height: 100px;
}

#prensa .news nav.filter ul
{
	display: flex;
	gap: var(--gap);
	max-width: 70%;
	overflow: hidden;
}

#prensa .news nav.filter ul li
{
	padding: 5px 15px;
}

#prensa .news nav.filter ul li.active
{
	border: 1px solid var(--grisOscuro);
	border-radius: var(--radius);
	font-family: "Gotham-Bold";
}

#prensa .news nav.filter > a
{
	padding: 5px 15px;
}

#prensa .news nav.filter .go
{
	border: 1px solid var(--grisOscuro);
	border-radius: var(--radius);
}

#prensa .news ul.list
{
	display: grid;
	grid-gap: var(--gap);
	grid-template-columns: repeat(auto-fill, 295px);
}

#prensa .news ul.list li,
#prensa aside ul.list li
{
	border: 1px solid var(--gris);
	border-radius: var(--radius);
	padding: var(--paddingSmall);
	display: flex;
	flex-direction: column;
}

#prensa .news ul.list li span.tag,
.news_single span.tag
{
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 12px;
	margin-bottom: 10px;
	display: inline-block;
	width: 90px;
	text-align: center;
	text-transform: uppercase;
}

#prensa .news ul.list li a.button
{
	width: 100%;
	margin-top: auto;
}

#prensa aside ul
{
	margin-top: var(--gap);
}

#prensa .pagination
{
	display: flex;
	justify-content: center;
	margin-top: 50px;
	align-items: center;
	gap: var(--gap);
}

#prensa .pagination .button i
{
	margin-right: 0;
}

#prensa .news_single
{
	padding: 50px 0;
	text-align: left;
}

#prensa .news_single > div
{
	padding: 0 200px;
}

#prensa .news_single > div:last-child
{
	margin: 0 auto;
	display: flex;
	gap: var(--gap);
}

#prensa .news_single .news_content
{
	flex: 1;
}

#prensa .news_single .image
{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 25px 0;
}

#prensa .news_single aside
{
	max-width: 285px;
}

#empleos .submenu
{
	padding: 18px 60px;
	background-color: var(--grisClaro);
	font-size: 15px;
	font-family: "Gotham-Book";
	position: fixed;
	z-index: 100;
	color: #000000;
	height: 60px;
	width: 100%;
	max-width: var(--maxWidth);
}

#empleos .submenu ul
{
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
	overflow: hidden;
}

#empleos .submenu ul li
{
	white-space: nowrap;
}

#empleos iframe
{
	aspect-ratio: 1.7;
	width: 100%;
}

#empleos .join
{
	display: flex;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

#empleos .join div
{
	width: 50%;
	padding: 75px 40px;
}

#empleos .join div:last-child
{
	text-align: center;
}

#empleos .join div p
{
	margin: 50px 0;
}

#empleos .why_work
{
	display: flex;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

#empleos .why_work div
{
	width: 65%;
	padding: 75px 40px;
}

#empleos .why_work div:first-child {
	background-image: url("../img/empleos/jorge_roldan.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: -80px center;
	width: 35%;
}

#empleos .why_work p
{
	width: unset;
}

#empleos .vacancy
{
	background-color: var(--grisClaro);
	text-align: left;
}

#empleos .vacancy > div
{
	display: flex;
	justify-content: space-between;
}

#empleos .vacancy .hiringroom
{
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

#empleos .vacancy .microsite_vacancy
{
	background-color: white;
	margin: 10px auto;
	padding: 15px;
	border-radius: 10px;
	list-style: none;
	text-align: left;
}

#empleos .vacancy .microsite_vacancy h3
{
	height: auto;
}

#empleos .vacancy .microsite_vacancy .data_link,
#empleos .vacancy .microsite_vacancy .data_form_link
{
	display: inline;
}

#empleos .vacancy .microsite_vacancy .data_link a,
#empleos .vacancy .microsite_vacancy .data_form_link a
{
	border: 2px solid transparent;
	border-radius: 20px;
	padding: 10px 25px;
	background-color: var(--verdeLSclaro);
	color: #FFFFFF;
	margin: 5px;
	display: inline-block;
	font-size: 14px !important;
	text-align: center;
	font-family: "Gotham-Book";
}

#empleos .vacancy .microsite_vacancy .data_link a:focus,
#empleos .vacancy .microsite_vacancy .data_form_link a:focus
{
	border: 2px solid var(--verdeLSoscuro);
}

#empleos .vacancy .microsite_vacancy .data_link a:hover,
#empleos .vacancy .microsite_vacancy .data_form_link a:hover
{
	background-color: var(--verdeLSoscuro);
}

#empleos .adn
{
	background-color: var(--grisClaro);
	text-align: left;
}

#empleos .adn ul
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: var(--gap);
}

#empleos .adn ul li
{
	position: relative;
	border-radius: var(--radius);
	color: #FFFFFF;
	text-align: center;
	max-height: 185px;
	max-width: 390px;
	aspect-ratio: 2.1;
}

#empleos .adn ul li h5
{
	color: #FFFFFF;
	margin: auto;
	text-align: center;
}

#empleos .adn ul li div.normal
{
	display: flex;
	background-color: unset;
	border: none;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

#empleos .adn ul li div.normal .plus
{
	position: absolute;
	right: 5px;
	top: 5px;
	background-color: #FFFFFF;
	color: var(--verdeLSclaro);
}

#empleos .adn ul li:nth-child(1)
{
	background-color: #F59E1B;
}

#empleos .adn ul li:nth-child(2)
{
	background-color: #EA571D;
}

#empleos .adn ul li:nth-child(3)
{
	background-color: #E63033;
}

#empleos .adn ul li:nth-child(4)
{
	background-color: #E72967;
}

#empleos .adn ul li:nth-child(5)
{
	background-color: #5E3A8F;
}

#empleos .adn ul li:nth-child(6)
{
	background-color: #48A3DB;
}

#empleos .adn ul li:nth-child(7)
{
	background-color: #1D3E85;
}

#empleos .adn ul li:nth-child(8)
{
	background-color: #20AD81;
}

#empleos .adn ul li:nth-child(9)
{
	background-color: #63B22F;
}

#empleos .adn ul li.active h5
{
	font-family: Gotham-Book;
	font-size: 16px;
	text-align: left;
}

#empleos .benefits
{
	text-align: left;
}

#empleos .areas
{
	background-image: url("../img/empleos/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;
}

#empleos .areas dialog
{
	width: 450px;
	text-align: center;
}

#empleos .areas dialog p
{
	font-family: Gotham-Light;
}

#empleos .testimonials
{
	text-align: left;
	background-color: var(--grisClaro);
}

#empleos .testimonials .swiper-slide
{
	display: flex;
	justify-content: space-between;
	height: 450px;
	min-height: 450px;
	max-height: 450px;
}

#empleos .testimonials .swiper-slide
{
	padding: var(--gap);
	position: relative;
}

#empleos .testimonials .person
{
	--size: 120px;
	height: calc(var(--size) * 2);
	width: calc(var(--size) * 2);
	border-radius: var(--radius);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: calc(50% - var(--size));
}

#empleos .testimonials .quote
{
	border: 1px solid var(--verdeLSclaro);
	border-radius: var(--radius);
	width: 80%;
	margin-left: 80px;
	display: flex;
	flex-direction: column;
	padding: 50px 20px 50px 200px;
}

#empleos .testimonials .quote p
{
	margin: 10px 0;
}

#empleos .testimonials .testimonials_nav
{
	position: absolute;
	width: 120px;
	height: 50px;
	right: 80px;
	top: 140px;
}

#empleos .testimonials .testimonials_nav .swiper-button-prev::after,
#empleos .testimonials .testimonials_nav .swiper-button-next::after
{
	content: "";
}

#empleos .testimonials .testimonials_nav .swiper-button-prev i,
#empleos .testimonials .testimonials_nav .swiper-button-next i
{
	color: var(--verdeLS);
	font-size: 22px;
}

#empleos .internships
{
	display: flex;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

#empleos .internships div
{
	width: 50%;
	padding: 75px 40px;
}

#empleos .internships div:first-child
{
	text-align: center;
}

#empleos .internships div:first-child h1
{
	display: none;
}

#empleos .internships div p
{
	margin: 50px 0;
}

.text_footer
{
	max-height: 500px;
	padding-right: 50px;
	overflow: hidden;
}

.text_footer > div
{
	max-height: 440px;
	overflow-y: auto;
}


/* FIX HIRINGROOM */
.infoContainer
{
	min-height: 200px !important;
}
