@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding: 78px;
	--negro: #141414;
	--blanco: #ffffff;
	--rojo: #ce3a2b;

	--cafe: #c4875c;
	--gris: #ba9d9a;
	--grisFuerte: #3a3a3a;
	
	--width: calc(100% - 42px);
	--maxWidth: 1200px;
	background: var(--negro);
}

body {
	font-family: 'Montserrat';
	font-weight: normal;
	color: var(--blanco);
	background: var(--negro);
	line-height:1.4;
	letter-spacing: 0.12em;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Montserrat Extra';
	font-weight: normal;
	font-size: 3.9em;
	text-wrap: balance;
}
h2 {
	line-height:1;
	font-family: 'Montserrat Extra';
	font-weight: normal;
	font-size: 2.4em;
	text-wrap: balance;
}
h3 {
	line-height:1;
	font-family: 'Montserrat Bold';
	font-weight: normal;
	font-size: 1.3em;
	text-wrap: balance;
}

a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Montserrat Bold';
	font-size:1em;
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p {
	text-wrap: pretty;
}
p, ul {
	font-size:1em;
}
p b,
p em {
	font-family: 'Montserrat Extra';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--rojo);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--rojo);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	-ms-touch-action: none; 
}
.section {
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

.section,
.section .slide,
.section .tableCell{
    height: auto !important;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}

/* --------------------------- css --------------------------- */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	transition: all ease-in-out 0.6s;
	background: rgba(255,255,255,0.3);
	background: linear-gradient(0deg,rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.3) 12%, rgba(255, 255, 255, 0.3) 88%, rgba(255, 255, 255, 0.48) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	z-index: 99;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

header .inter div:nth-child(2),
header .inter ul {
	padding: 9px 0;
}
header .inter div img {
	height: 54px;
	margin: 15px 0;
	transition: all 0.6s ease-in-out;
}
header .inter .menu {
	position: relative;
	display: flex;
	gap: 42px;
	justify-content: flex-end;
	align-items: center;
}
header .inter .menu a {
	color: var(--blanco);
	font-size: 0.9em;
	position: relative;
	text-transform: capitalize;
	opacity: 0.8;
	text-shadow: 3px 3px 3px rgba(20,20,20,0.6);
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:2px;
	background: var(--rojo);
	border-radius: 2px;
	position: absolute;
	left: 50%;
	bottom:-6px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}
header .inter .menu a:hover,
header .inter .menu a.active {
	opacity: 1;
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}
/* active */
header.active .inter div img {
	height: 51px;
	margin: 13px 0;
}

.btn-menu {
	width: 42px;
	height:42px;
	background: var(--blanco) !important;
	position: relative;
	display: none;
	border-radius: 50% !important;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--negro);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: var(--negro);
	padding: 141px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.3em; /* ? */
	display: block;
	margin: 0 0 42px;
	color: var(--blanco);
	position: relative;
	opacity: 0.6;
}
#openmenu a.active {
	color: var(--rojo);
	opacity: 1;
}
#openmenu a::after {
	content: '';
	width: 12px;
	height:12px;
	background: var(--blanco);
	position: absolute;
	top: 50%;
	left:12px;
	transform: translate(0,-50%);
	border-radius: 50px;
	transition: all 0.6s ease-in-out;
	opacity: 0;
}
#openmenu a.active::after {
	opacity: 1;
}
#openmenu div:last-child {
	direction: flex;
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	font-size: 0.9em;
	margin: 0 9px;
	display: inline-block !important;
	color: var(--rojo);
	opacity: 1;
}
#openmenu div:first-child a {
	font-family: 'Montserrat Extra';
	text-transform: uppercase;
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	opacity: 0;
	left:0;
	background: var(--negro);
	animation: gone 1.2s;
	pointer-events: none !important;
	z-index: 66;
}
@-webkit-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes gone {
	0% {
		opacity: 1;
	}
	42% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.section {
	position: relative;
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}

.bg-negro {
	background: var(--negro);
	z-index: 3;
}
.bg-gradient {
	background: linear-gradient(0deg, var(--rojo) 0%, var(--negro) 100%) fixed;
	z-index: 3;
}
.bg-gradient2 {
	background: linear-gradient(0deg, var(--negro) 0%, var(--negro) 66.6%, var(--rojo) 100%);
	z-index: 3;
}
.bg-imagen {
	background: url("../imgs/science_vitamins_vida.webp") center center no-repeat fixed;
	background-size: cover;
	z-index: 3;
}

.btn {
	width: auto;
	font-size: 0.9em;
	color: var(--blanco);
	background: transparent;
	padding:18px 15px;
	position: relative;
	display: inline-block;
	border: solid 2px var(--rojo);
	overflow: hidden;
	border-radius: 36px !important;
}
.btn.btnBlco,
.btn:hover,
.btn.active {
	color: var(--blanco);
}
.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	z-index: -3;
}
.btn::before {
	content: '';
	width: 0;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background: var(--rojo);
	transition: all 0.3s ease-in-out;
	z-index: -1;
}
.btn:hover::before,
.btn.active::before {
	width: 100%;
}
.btn span {
	font-size: 1.2em;
	margin: 0 0 0 9px;
	padding:0 0 3px;
	vertical-align: middle;
}

header .inter .menu .btn {
	font-family: 'Montserrat Bold';
	padding:12px 9px;
	border: solid 1px var(--blanco);
	border-radius: 50% !important;
}
header .inter .menu .btn::before {
	background: var(--negro);
}

#btns {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left: 50%;
	bottom:21px;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 99;
}
#btns a {
	width: 51px;
	height:51px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: visible;
	background: var(--cafe);
	border-radius: 50% !important;
	box-shadow: 3px 3px 3px rgba(26, 26, 26, 0.3);
}
#btns a span {
	font-size: 1.5em;
	color: var(--blanco);
}

.texto,
.imagen {
	animation-duration: 1.2s;
	animation-delay: 0.9s;
}

#portada {
	width: 100%;
	position: relative;
	z-index: 3;
}
#portada::after {
	content: '';
	width: 100%;
	height:240px;
	background: linear-gradient(0deg,rgba(20,20,20,0) 0%, rgba(20,20,20,0.6) 100%);
	position: absolute;
	top: 0;
	left:0;
	z-index: 6;
}
#portada main {
	position: absolute;
	top: 30%;
	left:50%;
	transform: translateX(-50%);
	animation-duration: 1.3s;
	animation-delay: 2.1s;
	z-index: 9;
}
#portada main h1 {
	width: 66.6%;
	margin: 0 0 42px;
}
#portada main p {
	width: 50%;
	margin: 0 0 42px;
}
#portada .fondo {
	width: 100%;
	height: calc(100vh + 3px);
	overflow: hidden;
	position: relative;
	z-index: 1;
}
#portada .fondo > div {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	overflow: hidden;
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
#portada .fondo > div:nth-child(3) {
	animation-delay: 0.9s;
}
#portada .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
}

.garantia {
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	animation-duration: 1.3s;
	animation-delay: 3s;
	z-index: 6;
}
.garantia svg {
	width: 84px;
}
.cls-1 {
	fill: #fffefe;
}
.cls-2 {
	fill: url(#Degradado_sin_nombre_16);
}
.garantia p {
	width: 100%;
	font-size: 0.7em;
	text-align: right;
	color: var(--rojo);
}
.garantia img {
	width: 180px;
	display: block;
	-webkit-filter: drop-shadow(3px 3px 3px rgba(20,20,20,0.6));
	filter: drop-shadow(3px 3px 3px rgba(20,20,20,0.6));
}

.scroll {
	position: absolute;
	left: 50%;
	bottom:48px;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	animation-duration: 1.3s;
	animation-delay: 4.8s;
	z-index: 6;
}
.scroll button {
	width: 42px;
	height:60px;
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.6) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	border-radius: 24px !important;
}
.scroll button:hover {
	background: rgba(255,255,255,0.6);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 66%, rgba(255, 255, 255, 0.8) 100%);
}
.scroll button span {
	font-size: 1.8em;
	color: var(--blanco);
}

.nosotros {
	padding:150px 0;
	display: flex;
	align-items: center;
	z-index: 3;
}
.nosotros > div {
	position: relative;
}
.nosotros .texto {
	width: 66.6%;
	z-index: 6;
}
.nosotros .imagen {
	width: 33.3%;
}
.nosotros h2 {
	margin:0 0 60px;
}
.nosotros p {
	margin: 0 0 42px;
	padding:0 25% 0 30px;
	position: relative;
}
.nosotros p::after {
	content: '';
	width: 6px;
	height:6px;
	background: var(--blanco);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index: 3;
}
.nosotros h3 {
	font-family: 'Montserrat Extra';
	text-transform: uppercase;
}
.nosotros .imagen > div {
	position: relative;
	z-index: 3;
}
.nosotros .imagen img.fondo {
	width: 150%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1;
}

#fondo1 {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	overflow: hidden;
	z-index: 0;
}
#fondo1 img {
	width: 120vw;
	fill: var(--rojo);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%) rotate(-21deg);
	opacity: 0.7;
}
#fondo2 {
	width: 100%;
	height:100%;
	position: absolute;
	right: 0;
	bottom:-50%;
	z-index: 0;
}
#fondo2 img {
	width: 50vw;
	fill: var(--rojo);
	position: absolute;
	top: 75%;
	left:50%;
	transform: rotate(-21deg);
	opacity: 0.5;
}

.productos {
	position: relative;
	display: flex;
	z-index: 1;
}
.productos .liston {
	position: absolute;
	top: 0;
	right:0;
	animation-duration: 1.3s;
	animation-delay: 1.5s;
	z-index: 9;
}
.productos .liston h3 {
	font-family: 'Montserrat';
	padding:12px 15px;
	transform: translate(15px,60px)rotate(15deg);
	color: var(--blanco);
	background: transparent;
	position: relative;
	text-shadow: 3px 3px 3px rgba(20,20,20,0.6);
	z-index: 6;
}
.productos .liston h3::after {
	content: '';
	width: 100vw;
	height:100%;
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.6) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	position: absolute;
	top: 0;
	left:0;
	transform: translateX(-33.3%);
	z-index: -1;
}
.productos nav {
	width: 33.3%;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.productos nav h4 {
	width: 100%;
	font-family: 'Montserrat';
	padding:18px 0;
}
.productos nav button {
	width: 100%;
	padding:21px 30px 21px 0;
	position: relative;
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	color: var(--blanco);
	background: none;
	opacity: 0.7;
}
.productos nav button:hover {
	opacity: 1;
}
.productos nav button.active {
	color: var(--rojo);
	opacity: 1;
}
.productos nav button h2 {
	font-size: 2.1em;
	text-align: left;
}
.productos nav button span {
	font-size: 2.4em;
}
.productos #contenido {
	width: 66.6%;
	position: relative;
	display: flex;
	gap: 24px;
	align-items: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	transition: opacity 0.3s ease;
	z-index: 6;
}
.productos #contenido figure {
	width: 100vw;
	height:100%;
	background: #d3d7db;
	position: absolute;
	top: 0;
	left:0;
	transition: background-color 0.6s ease;
	z-index: -1;
}
.productos #contenido > div {
	width: 50%;
	position: relative;
}
.productos #contenido .texto {
	color: var(--negro);
	padding:60px 0 48px 60px;
}
.productos #contenido .texto h2 {
	margin: 0 0 42px;
}
.productos #contenido .texto > p {
	margin: 0 0 30px;
}
.productos #contenido .texto h4 {
	margin: 0 0 15px;
}
.productos #contenido .texto ul {
	list-style: none;
}
.productos #contenido .texto ul li {
	position: relative;
	margin: 0 0 30px;
	padding:0 0 0 30px;
}
.productos #contenido .texto ul li:last-child {
	margin: 0;
}
.productos #contenido .texto ul li span {
	font-family: 'Montserrat Bold';
	position: relative;
}
.productos #contenido .texto ul li span::after {
	content: '';
	width: 6px;
	height:6px;
	background: var(--negro);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:-15px;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.productos #contenido .texto ul li p {
	font-size: 0.8em;
}
.productos #contenido .imagen img {
	width: calc(100% - 60px);
	margin: 0 30px;
	transition: opacity 0.3s ease;
}

.cap {
	padding:120px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.cap h3 {
	font-family: 'Montserrat Extra';
}
.cap .capsula {
	width: 240px;
	position: relative;
}
.cap .capsula img {
	width: 100%;
}

.capsula-container {
	width: 130px;
	aspect-ratio: 1/2;
	position: relative;
	margin: 0 auto;
	perspective: 1000px;
}
.capsula-container img {
	position: absolute;
	left: 0;
	width: 100%;
	will-change: transform, filter;
	transition: transform 0.4s ease-out, filter 0.4s ease-out;
}
.tapa-superior {
	top: -180px;
	transform-origin: center bottom;
	z-index: 3;
}
.burbujas {
	top: 18%;
	z-index: 1;
}
.tapa-inferior {
	bottom:-90px;
	transform-origin: center top;
	z-index: 3;
}

.titulo {
	text-align: center;
	padding:30px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.beneficios {
	display: flex;
	gap: 18px;
	margin: 0 auto 60px;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
.beneficios .boxes {
	width: 33.3%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.beneficios .boxes figure {
	width: 100%;
	order: 1;
	aspect-ratio: 1 / 0.2;
	display: block;
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.6) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	border-radius: 18px 18px 48px 48px;
}
.beneficios .boxes .box {
	width: 100%;
	order: 2;
	aspect-ratio: 1 / 0.6;
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.6) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	position: relative;
	padding:30px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	text-align: center;
	align-content: center;
	justify-content: center;
	border-radius: 18px;
	text-shadow: 3px 3px 3px rgba(20,20,20,0.3);
}
.beneficios .boxes:nth-child(1) .box:last-child,
.beneficios .boxes:nth-child(2n - 1) .box:last-child {
	border-radius: 48px 48px 18px 18px;
}
.beneficios .boxes:nth-child(2n) figure {
	order: 2;
	border-radius: 48px 48px 18px 18px;
}
.beneficios .boxes:nth-child(2n) .box {
	order: 1;
}
.beneficios .boxes:nth-child(2) .box:first-of-type {
	border-radius: 48px 48px 18px 18px;
}

.int {
	padding:90px 0;
	text-shadow: 3px 3px 3px rgba(20,20,20,0.3);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.int h2 {
	font-family: 'Montserrat Extra';
	margin: 0 0 24px;
	text-transform: uppercase;
}

.puntos {
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	margin: 30px auto 90px;
}
.puntos .box {
	width: calc(33.3% - 10px);
	color: var(--blanco);
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 66%, rgba(255, 255, 255, 0.6) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	padding:30px;
	border-radius: 18px;
	text-shadow: 3px 3px 3px rgba(20,20,20,0.3);
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
.puntos .box .icono {
	width: 60px;
	height:60px;
	color: var(--blanco);
	background: rgba(255,255,255,0.3);
	background: radial-gradient(circle,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 66%, rgba(255, 255, 255, 0.3) 100%);
	box-shadow: 0 6px 30px rgba(20,20,20,0.3);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 15px;
}
.puntos .box .icono span {
	font-size: 1.8em;
}

.tit {
	padding:90px 0 60px;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 6;
}
.tit h3 {
	width: 66.6%;
	font-family: 'Montserrat Extra';
	font-size: 2.4em;
	line-height: 1;
	text-align: center;
	margin: 0 auto;
	text-transform: uppercase;
}

.transforma {
	margin: 0 auto 150px;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
	z-index: 6;
}
.transforma p {
	width: 50%;
	margin: 0 auto 60px;
	text-align: center;
}
.transforma p b {
	font-family: 'Montserrat';
	color: var(--rojo);
}
.transforma span {
	font-size: 0.8em;
	display: block;
	margin: 0 0 15px;
	text-align: center;
}
.transforma span b {
	font-family: 'Montserrat';
	color: var(--rojo);
}
.transforma span em {
	font-family: 'Montserrat Bold';
	font-style: normal;
}
.transforma span a {
	font-family: 'Montserrat Bold';
	color: var(--rojo);
	text-decoration: underline;
}

footer {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 90px auto 48px;
	position: relative;
	display: flex;
	gap: 42px;
	z-index: 6;
}
footer div {
	width: 16.66%;
}
footer div img {
	width: 60px;
}
footer div p {
	font-size: 0.7em;
	margin: 0 0 9px;
}
footer div .link {
	font-size: 0.7em;
	color: var(--blanco);
	text-decoration: underline;
}
footer div .link:hover {
	color: var(--rojo);
}
footer .redes {
	position: relative;
	display: flex;
	gap: 30px;
}
footer .redes a {
	font-size: 1.5em;
	color: var(--rojo);
}
footer .redes a:hover {
	color: var(--blanco);
}
footer .ult {
	min-height: 75px;
	position: relative;
	display: flex;
	align-items: flex-end;
}
footer .ult .link {
	white-space: nowrap;
}

.parallax {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
		scroll-padding: 60px;
	}
	
	p, ul {
		font-size: 0.8em;
	}
	
	h1 {
		font-size: 2.1em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1.5em;
	}
	
	header .inter div img,
	header.active .inter div img {
		height: 48px;
		margin: 18px 0;
	}
	header .inter .menu {
		gap: 24px;
	}
	header .menu a:not(.btn) {
		display: none;
	}
	.btn-menu {
		display: inline-block;
	}
	
	.btn {
		min-width: auto;
		font-size: 0.8em;
		padding:15px 12px;
	}
	
	#btns a {
		width: 48px;
		height:48px;
	}
	#btns a span {
		font-size: 1.3em;
	}

	#portada::after {
		height:210px;
	}
	#portada main {
		top: 180px;
	}
	#portada main h1 {
		width: 100%;
		margin: 0 0 39px;
	}
	#portada main p {
		margin: 0 0 39px;
	}

	.garantia {
		top: 108px;
	}
	.garantia svg {
		width: 69px;
	}
	.garantia p {
		font-size: 0.5em;
	}
	.garantia img {
		width: 150px;
	}
	
	.scroll button span {
		font-size: 1.5em;
	}

	.nosotros {
		padding:90px 0;
		flex-wrap: wrap;
	}
	.nosotros .texto,
	.nosotros .imagen {
		width: 100%;
	}
	.nosotros .texto {
		order: 2;
	}
	.nosotros .imagen {
		order: 1;
	}
	.nosotros p {
		margin: 0 0 39px;
		padding:0 30px;
	}
	.nosotros .imagen img.fondo {
		transform: translateY(3%);
	}

	#fondo1 img {
		top: 69%;
	}
	#fondo2 img {
		width: 69vw;
	}

	.productos {
		flex-wrap: wrap;
	}
	.productos .liston {
		display: none;
	}
	.productos nav {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.productos nav h4 {
		text-align: center;
		padding:15px 0;
	}
	.productos nav button {
		width: calc(50% - 9px);
		padding:15px 0;
		gap: 18px;
	}
	.productos nav button h2 {
		font-size: 1.2em;
	}
	.productos nav button span {
		font-size: 1.3em;
	}
	.productos #contenido {
		width: 100%;
		gap: 15px;
		flex-wrap: wrap;
	}
	.productos #contenido figure {
		width: calc(100vw + 30px);
		left:-15px;
	}
	.productos #contenido > div {
		width: 100%;
	}
	.productos #contenido .texto {
		padding:48px 0 48px;
	}
	.productos #contenido .texto h2 {
		margin: 0 0 30px;
	}
	.productos #contenido .imagen {
		padding:0 0 30px;
	}
	.productos #contenido .imagen img {
		width: calc(100% - 120px);
		margin: 0 60px;
	}

	.cap {
		padding:75px 0;
	}
	.cap .capsula {
		width: 210px;
	}
	.cap h3 {
		font-size: 1em;
	}
	.cap h3:last-child {
		text-align: right;
	}

	.capsula-container {
		transform: scale(0.6);
	}

	.beneficios {
		flex-wrap: wrap;
	}
	.beneficios .boxes {
		width: 100%;
	}
	.beneficios .boxes figure {
		aspect-ratio: 1 / 0.1;
		border-radius: 12px 12px 39px 39px;
	}
	.beneficios .boxes .box {
		width: calc(50% - 9px);
		aspect-ratio: 1 / 1.4;
		padding:24px;
		border-radius: 18px;
	}
	.beneficios .boxes .box h3 {
		font-size: 1.2em;
	}
	.beneficios .boxes:nth-child(1) .box:last-child,
	.beneficios .boxes:nth-child(2n - 1) .box:last-child {
		border-radius: 39px 39px 12px 12px;
	}
	.beneficios .boxes:nth-child(1) {
		margin: 0 0 18px;
	}
	.beneficios .boxes:nth-child(1) .box {
		order: 1;
	}
	.beneficios .boxes:nth-child(1) figure {
		order: 3;
	}
	.beneficios .boxes:nth-child(2n) figure {
		display: none;
	}
	.beneficios .boxes:nth-child(2) .box:first-of-type {
		border-radius: 39px 39px 12px 12px;
	}

	.int {
		padding:75px 0;
	}
	.int p {
		width: calc(50% - 9px);
	}

	.puntos {
		gap: 0;
		justify-content: space-between;
		margin: 30px auto 75px;
	}
	.puntos .box {
		width: calc(50% - 9px);
		padding:24px;
	}

	.tit {
		padding:75px 0 48px;
	}
	.tit h3 {
		width: 75%;
		font-size: 1.8em;
	}

	.transforma {
		margin: 0 auto 120px;
	}
	.transforma p {
		width: 66.6%;
		margin: 0 auto 48px;
	}

	footer {
		margin: 81px auto 42px;
		gap: 24px 0;
		flex-wrap: wrap;
	}
	footer div {
		width: calc(33.3% - 8px);
		margin: 0 12px 0 0;
	}
	footer div:nth-child(3n) {
		margin: 0;
	}
	footer div p {
		font-size: 0.6em;
	}
	footer div .link {
		font-size: 0.6em;
	}
	footer .ult {
		min-height: 60px;
		align-items: flex-start;
	}
	footer .ult .link {
		white-space: normal;
	}
	
}