@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	--negro: #57595a;
	--blanco: #ffffff;
	--verde: #62a744;
	--verdeClaro: #e6efce;
	--grisClaro: #f7f7f7;
	--marino: #232a57;
	--width: calc(100% - 24px);
	--maxWidth: 1200px;
}

body {
	font-family: 'Poppins';
	font-weight: normal;
	color: var(--negro);
	background: var(--blanco);
	line-height:1.2;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Uniwars';
	font-weight: normal;
	font-size: 1.8em;
}
h2 {
	line-height:1;
	font-family: 'Poppins Bold';
	font-weight: normal;
	font-size: 1.3em;
}
h3 {
	font-family: 'Microgramma';
	font-size: 1.2em;
	font-weight: normal;
	margin: 0 0 18px;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Poppins';
	font-size: 1.2em;
	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, ul {
	font-size:1em;
}
p b {
	font-family: 'Poppins Bold';
	font-weight: normal;
}
em {
	font-style: normal;
	color: var(--verde);
}

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

/* --------------------------- 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 --------------------------- */

.btn {
	font-size: 1em;
	padding: 6px 24px;
	color: var(--verde);
	background: var(--verdeClaro);
	border: solid 1px var(--verde);
	border-radius: 18px !important;
}
.btn:hover {
	color: var(--blanco);
	background: var(--verde);
}
.btn.btnClaro {
	color: var(--blanco);
	background: var(--verde);
	border-color: var(--blanco);
}
.btn.btnClaro:hover {
	color: var(--verde);
	background: var(--verdeClaro);
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	border-bottom: solid 1px var(--grisClaro);
	z-index: 99;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .inter .box .barra {
	position: relative;
	display: flex;
	gap: 0 18px;
	align-items: center;
	justify-content: flex-end;
	transition: all 0.3s ease-in-out;
}
header .inter .box .barra:first-child {
	gap: 42px;
	padding:30px 0;
}
header .inter .box .barra:first-child a {
	color: var(--verde);
	display: flex;
	align-items: center;
}
header .inter .box .barra:first-child a:hover {
	color: var(--marino);
}
header .inter .box .barra:first-child a div {
	width: 24px;
	height:24px;
	border-radius: 50%;
	background: var(--verde);
	position: relative;
}
header .inter .box .barra:first-child a:hover div {
	background: var(--marino);
}
header .inter .box .barra:first-child a div span {
	color: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
header .inter .box .barra a {
	font-size: 0.8em;
}
header .inter .box .barra:first-child a {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
}

header .inter div img {
	width: auto;
	height: 60px;
	transition: all 0.6s ease-in-out;
}
header .inter .menu a:hover,
header .inter .menu a.active {
	color: var(--verde);
}

header .inter ul {
	list-style-type: none;
	list-style: none;
	overflow: hidden;
	background: var(--grisClaro);
	border-top-left-radius: 18px;
	border-top-right-radius:18px;
}
header .inter ul li {
	float: left;
	padding: 18px 30px;
	background: var(--grisClaro);
}
header .inter ul:last-child li {
	background: var(--verdeClaro);
}
header .inter ul li {
	display: inline-block;
	text-align: center;
	text-decoration: none;
}
header .inter ul li:hover > a,
header .inter ul li > a.active {
	color: var(--verde);
}
header .inter ul li.dropdown {
	display: inline-block;
	cursor: pointer;
}
header .inter ul li.dropdown span {
	margin: 0 0 0 6px;
}
/* active */
header.active .inter .box .barra:first-child {
	padding:24px 0;
}
header.active .inter div img {
	height: 54px;
}

.dropdown > a {
	font-size: 1.1em;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	padding:0;
	min-width: 150px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	transform: translate(-9px,6px);
	z-index: 99;
}
.dropdown-content a {
	font-size: 0.9em;
	color: var(--negro);
	padding:9px 12px;
	text-decoration: none;
	display: block;
	text-align: left;
	position: relative;
}
.dropdown-content a::after {
	content: '';
	width: 100%;
	height:1px;
	position: absolute;
	background: linear-gradient(90deg, rgba(239,239,239,1) 0%, rgba(239,239,239,0) 75%);
	left: 0;
	bottom:0;
	z-index: 1;
}
.dropdown-content a.active,
.dropdown-content a:hover {
	color: var(--dorado);
	background: var(--grisClaro);
}
.dropdown:hover .dropdown-content {
	display: block;
}

.btn-menu {
	width: 42px;
	height:42px;
	background: var(--grisClaro);
	position: relative;
	display: none;
}
.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: 150px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.5em;
	display: block;
	margin: 0 0 30px;
	color: var(--aqua);
	position: relative;
	opacity: 0.6;
}
#openmenu a.active {
	opacity: 1;
}
#openmenu a::after {
	content: '';
	width: 12px;
	height:12px;
	background: var(--rosa);
	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:first-child a:last-child {
	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;
	opacity: 1;
}
#openmenu div:last-child a span {
	color: var(--dorado);
}
#openmenu .btn {
	font-size: 0.8em !important;
	color: var(--blanco);
	background: var(--verde);
	margin: 0 0 18px;
}

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

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}
.bg-grisClaro {
	background: var(--grisClaro);
}
.bg-verde {
	color: var(--blanco);
	background: var(--verde);
}
.add {
	padding:120px 0 0;
}

#portaBtns {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left:  50%;
	bottom:15px;
	transform: translateX(-50%);
	pointer-events: none;
	display: flex;
	justify-content: flex-end;
	z-index: 69;
}
.btn-whats {
	width: 51px;
	height:51px;
	border-radius: 50% !important;
	color: var(--blanco);
	background: var(--verde);
	pointer-events: visible;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
	position: relative;
}
.btn-tel {
	width: 51px;
	height:51px;
	border-radius: 50% !important;
	color: var(--verde);
	background: var(--blanco);
	pointer-events: visible;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
	position: relative;
}
#portaBtns a span {
	font-size: 1.3em;
	position: absolute;
	top: 48%;
	left:50%;
	transform: translate(-50%,-50%);
}

main.esp {
	padding:90px 0;
}

.bicolor::after {
	content: '';
	width: 60vw;
	height:100%;
	background: var(--verde);
	position: absolute;
	top:  0;
	right:0;
	z-index: -1;
}

#portada {
	width: 100vw;
	height:calc(100vh - 120px);
	margin: 120px 0 0;
	position: relative;
	overflow: hidden;
}
#portada video {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.6s ease-in-out;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 1;
}
#portada:hover video {
	opacity: 0.7;
}
#portada main {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 3;
}
#portada main div {
	width: 50%;
	position: relative;
	color: var(--blanco);
	padding:30px 30px 30px 0;
	z-index: 3;
}
#portada main div::after {
	content: '';
	width: 50vw;
	height:100%;
	background: var(--verde);
	position: absolute;
	top:  0;
	right:0;
	opacity: 0.6;
	z-index: -1;
}

.contenedor {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contenedor .top {
	width: 100%;
	padding:0 0 30px 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.contenedor .top h2 {
	color: var(--blanco);
}
.contenedor .filtro {
	width: calc(25% - 15px);
}
.contenedor .filtro > * {
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.contenedor .productos {
	width: calc(75% - 15px);
	height: auto;
	position: relative;
	display: flex;
	gap: 30px 18px;
	flex-wrap: wrap;
}
.box {
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.box:nth-last-child(2n) {
	animation-delay: 0.9s;
}
.contenedor .productos .box {
	width: calc(33.3% - 12px);
	position: relative;
	background: var(--blanco);
}
.contenedor .productos .box:nth-child(4) {
	display: none;
}
.contenedor .productos .box > div {
	width: 100%;
}
.contenedor .productos .box .imagen {
	height:0;
	padding:0 0 100%;
	position: relative;
	overflow: hidden;
}
.contenedor .productos .box .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.6s ease-in-out;
}
.contenedor .productos .box:hover .imagen img {
	transform: translate(-50%,-50%) scale(1.2);
}
.contenedor .productos .box .texto {
	padding:24px 42px 42px 24px;
}
.contenedor .productos .box .texto h2 {
	margin: 0 0 12px;
}
.contenedor .productos .box .texto p {
	color: var(--verde);
}
button.flecha {
	width: 42px;
	height:42px;
	background: var(--marino);
}
button.flecha span {
	width: 24px;
	height:24px;
	border: solid var(--blanco);
	border-width: 1px 1px 0 0;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	display: block;
	transition: all 0.3s ease-in-out;
}
button.flecha:hover span {
	transform: translate(-50%,-50%) rotate(45deg);
}
button.flecha span::after {
	content: '';
	width: 1px;
	height:33px;
	background: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%) rotate(45deg);
	z-index: 1;
}
.contenedor .productos .box .texto button {
	position: absolute;
	right: 0;
	bottom:0;
	z-index: 1;
}

.contenedor .productos.completo {
	width: 100%;
	position: relative;
	display: flex;
	gap: 30px 18px;
	flex-wrap: wrap;
}
.contenedor .productos.completo .box {
	width: calc(25% - 15px);
	position: relative;
	background: var(--blanco);
	border: solid 1px var(--negro);
}
.contenedor .productos.completo .box:nth-child(4) {
	display: block;
}

nav {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	gap: 18px;
	justify-content: flex-end;
}
nav button {
	width: 30px;
	height:30px;
	border-radius: 50% !important;
	background: var(--grisClaro);
}
nav a.active button,
nav a:hover button {
	color: var(--blanco);
	background: var(--verde);
}

.portaBtn {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 auto 60px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.portaImg {
	position: relative;
	z-index: 3;
}
.portaImg .imagen {
	width: 60vw;
	height:100%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 1;
}
.portaImg main {
	margin: 90px auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	z-index: 3;
}
.portaImg main > div {
	width: 50%;
	margin: 120px 0;
	padding:24px 42px 42px 24px;
	background: var(--blanco);
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.portaImg main > div h3 {
	color: var(--verde);
	margin: 0 0 30px;
}
.portaImg main > div button {
	position: absolute;
	right: 0;
	bottom:0;
	z-index: 1;
}

.titulo {
	padding:60px 0 48px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.titulo > div {
	max-width: calc(50% - 15px);
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.titulo > div h3 {
	color: var(--verde);
}
.titulo > div.mini {
	width: calc(25% - 15px);
}

.titulo ul {
	width: calc(75% - 30px);
	list-style: none;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.titulo ul li {
	margin: 0 0 9px;
}
.titulo ul li:last-child {
	margin: 0;
}

.titulo .sub {
	position: relative;
	display: flex;
	gap: 24px;
	align-items: flex-end;
}
.titulo .sub h2 {
	font-size: 2.4em;
	color: var(--verde);
	margin: 0 0 24px;
}
.titulo .sub select {
	color: var(--verde);
	background: var(--verdeClaro);
	padding:12px 18px;
	border-radius: 9px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
.titulo .sub select:focus,
.titulo .sub select:hover {
	color: var(--blanco);
	background: var(--verde);
}
.titulo .sub p {
	font-size: 0.9em;
	opacity: 0.6;
}

.titulo2 {
	text-align: center;
}
.titulo2 > div {
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.titulo2 h2 {
	font-size: 1.8em;
	color: var(--verde);
}

.owl-carousel {
	width: calc(75% + 15px);
	max-width: 100vw !important;
	position:relative;
	display: block;
	overflow: hidden;
	cursor: grab;
	z-index: 3;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float: left;
}
.owl-carousel .item {
	width: 100%;
	position: relative;
	align-items: center;
	padding:0 0 0 30px;
}
.owl-carousel .item img {
	width: 100%;
}

.boxes {
	position: relative;
	display: flex;
	gap: 24px;
	margin: 0 auto 60px;
	flex-wrap: wrap;
}
.boxes .box {
	width: calc(25% - 18px);
	padding:90px 42px 42px 30px;
	border: solid 1px var(--negro);
	position: relative;
	transition: all 0.6s ease-in-out;
}
.boxes .box:hover {
	background: var(--verdeClaro);
	border-color: var(--verde);
}
.boxes .box > span {
	font-size: 3.9em;
	position: relative;
	z-index: 3;
}
.boxes .box:hover > span {
	color: var(--verde);
}
.boxes .box > span:after {
	color: var(--verdeClaro);
	z-index: -1;
}
.boxes .box:hover > span:after {
	color: var(--blanco);
}
.boxes .box h2 {
	margin: 24px 0 0;
}
.boxes .box:hover h2 {
	color: var(--verde);
}
.boxes .box .flecha {
	position: absolute;
	right: 0;
	bottom:0;
}

.portaContacto {
	position: relative;
	display: flex;
	justify-content: space-between;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.portaContacto > div {
	width: calc(40% - 120px);
}
.portaContacto > div p {
	margin: 0 0 45px;
}
.portaContacto a.link {
	color: var(--verde);
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0 0 15px;
}
.portaContacto a.link:last-of-type {
	margin: 0 0 45px;
}
.portaContacto a.link:hover {
	color: var(--marino);
}
.portaContacto a.link div {
	width: 24px;
	height:24px;
	border-radius: 50%;
	background: var(--verde);
	position: relative;
}
.portaContacto a.link:hover div {
	background: var(--marino);
}
.portaContacto a.link div span {
	color: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.portaContacto .redes {
	margin: 12px 0 0;
	display: flex;
	gap: 15px;
}
.portaContacto .redes a:hover {
	color: var(--verde);
}
.portaContacto .redes a span {
	font-size: 1.2em;
}

.portaContacto form {
	width: 60%;
	position: relative;
}
.portaContacto form div {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 0 0 15px;
}
.portaContacto form div input,
.portaContacto form div textarea {
	width: calc(50% - 9px);
	font-family: 'Poppins';
	font-size: 0.9em;
	padding:0 12px 6px;
	border: none;
	border-bottom: solid 1px var(--negro);
}
.portaContacto form div textarea {
	width: 100%;
	min-height: 120px;
	margin: 6px 0 0;
	padding:12px;
	border: solid 1px var(--negro);
	resize: none;
}
.portaContacto form div input:focus,
.portaContacto form div textarea:focus {
	border-color: var(--verde);
}
.portaContacto form h3 {
	margin: 30px 0 12px;
	color: var(--verde);
}
.portaContacto form label {
	padding:9px 12px;
}
.portaContacto form .send {
	margin: 30px 0 0;
	display: flex;
	justify-content: flex-end;
}

.mapa {
	position: relative;
	margin: 90px auto 60px;
}
.mapa iframe {
	width: 100%;
	height:60vh;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
	z-index: 1;
}
.mapa div {
	position: absolute;
	top: 0;
	left:0;
	padding:0 42px 42px 0;
	background: var(--blanco);
	z-index: 3;
}
.mapa div h2 {
	color: var(--verde);
	margin: 0 0 15px;
}
.mapa div .flecha {
	position: absolute;
	right: 0;
	bottom:0;
}

.doble {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.doble > div:first-child {
	width: calc(25% - 30px);
}
.doble > div h1 {
	color: var(--verde);
}
.doble > div {
	width: calc(75% - 30px);
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.doble > div p {
	margin: 0 0 30px;
}
.doble > div p:last-child {
	margin: 0;
}
.doble > div p b {
	color: var(--verde);
}

.doble .box {
	width: 100%;
	margin: 0 0 60px;
}
.doble .box:last-child {
	margin: 0;
}
.doble .box h2 {
	margin: 0 0 30px;
	color: var(--verde);
}
.doble .box ul {
	list-style: none;
}
.doble .box ul li {
	margin: 0 0 12px;
	padding:0 0 0 30px;
	position: relative;
}
.doble .box ul li::before {
	content: '';
	width: 6px;
	height:6px;
	background: var(--negro);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index: 1;
}
.doble .box ul li:last-child {
	margin: 0;
}

.completo {
	width: 100%;
	height:60vh;
	position: relative;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
.completo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

#producto {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding:60px 0;
}
#producto > div {
	width: calc(50% - 30px);
	position: relative;
}
#producto .imagen {
	display: flex;
	justify-content: space-between;
}
#producto .imagen > div {
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
#producto .imagen .minis {
	width: 75px;
}
#producto .imagen .minis button {
	width: 100%;
	position: relative;
	opacity: 0.6;
}
#producto .imagen .minis button.active,
#producto .imagen .minis button:hover {
	opacity: 1;
	border: solid 1px var(--negro);
}
#producto .imagen .minis button img {
	width: 100%;
	margin: 0 0 -8px;
}
#producto .imagen #foto {
	width: calc(100% - 90px);
}
#producto .imagen #foto img {
	width: 100%;
}
#producto .texto {
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
#producto .texto h1 {
	color: var(--verde);
	margin: 0 0 30px;
}
#producto .texto p {
	width: 66.6%;
}
#producto .texto button {
	margin: 60px 0 0;
}
#producto .texto .tipo {
	margin: 24px 0;
}
#producto .texto .tipo h3 {
	font-size: 1em;
	color: var(--verde);
	margin: 0;
}
#producto .texto .tipo p {
	width: 100%;
	margin: 0;
	font-size: 0.8em;
}
#producto .texto .extra {
	width: 66.6%;
	margin: 24px 0;
}
#producto .texto ul {
	list-style: none;
}
#producto .texto ul li {
	padding:0 0 0 30px;
	margin: 0 0 12px;
	position: relative;
}
#producto .texto ul li::before {
	font-family: 'icomoon';
	content: "\e917";
	color: var(--verde);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#producto .texto ul li:last-child {
	margin: 0;
}

footer {
	background: var(--grisClaro);
	padding:60px 0;
	position: relative;
}
footer::before {
	content: '';
	width: 40%;
	height:100%;
	background: var(--negro);
	position: absolute;
	top: 0;
	left:0;
	z-index: 1;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	z-index: 3;
}
footer .inter > div {
	width: calc(60% - 30px);
}
footer .inter > div a,
footer .inter > div p {
	font-size: 0.7em;
}
footer .inter > div:first-child {
	width: calc(40% - 30px);
	color: var(--blanco);
}
footer .inter > div:first-child img {
	width: auto;
	height: 60px;
}
footer .inter > div:first-child p {
	margin: 12px 0 0;
}
footer .inter > div:first-child p a {
	font-size: 1.5em;
	color: var(--verde);
	margin: 0 0 0 6px;
}
footer .inter > div:last-child {
	position: relative;
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	flex-wrap: wrap;
}
footer .inter > div:last-child .redes {
	width: 100%;
	position: relative;
	display: flex;
	gap: 15px;
	justify-content: flex-end;
	align-content: space-between;
}
footer .inter > div:last-child .redes a {
	font-size: 1.2em;
}
footer .inter > div:last-child a:hover {
	color: var(--verde);
}

@media screen and (max-width:666px) {
	
	h1 {
		font-size: 1.5em;
	}
	h2 {
		font-size: 1.3em;
	}
	h3 {
		font-size: 1em;
	}
	p {
		font-size: 0.9em;
	}
	
	.btn {
		font-size: 0.9em;
	}

	header .inter div img,
	header.active .inter div img {
		height: 39px;
	}

	header .inter ul.menu li,
	header .inter ul.menu:first-child {
		display: none;
	}
	header .inter ul * {
		vertical-align: middle;
	}
	header .inter .box .barra a {
		display: none !important;
	}
	
	.btn-menu {
		display: block;
	}
	
	.add {
		padding:60px 0;
	}
	
	.btn-whats,
	.btn-tel {
		width: 45px;
		height:45px;
	}
	#portaBtns a span {
		font-size: 1.2em;
	}
	
	main.esp {
		padding:75px 0;
	}

	#portada {
		height:calc(100vh - 99px);
		margin: 99px 0 0;
	}
	#portada main div {
		width: 100%;
	}
	#portada main div::after {
		width: calc(100vw + 15px);
		right:-15px;
	}

	.contenedor .top {
		flex-wrap: wrap;
		padding:0 0 30px;
		gap: 30px 0;
	}
	.contenedor .top h2 {
		color: var(--negro);
	}
	.contenedor .filtro {
		width: 100%;
		margin: 0 0 30px;
	}
	h1 em {
		text-shadow: 1px 0 var(--blanco), -1px 0 var(--blanco), 0 1px var(--blanco), 0 -1px var(--blanco),
		1px 1px var(--blanco), -1px -1px var(--blanco), 1px -1px var(--blanco), -1px 1px var(--blanco);
	}
	.contenedor .productos {
		width: 100%;
		gap: 30px 0;
		justify-content: space-between;
	}
	.contenedor .productos .box {
		width: calc(50% - 6px);
	}
	.contenedor .productos .box:nth-child(4) {
		display: block;
	}
	.contenedor .productos .box .texto {
		padding:18px 30px 30px 18px;
	}
	.contenedor .productos .box .texto h2 {
		font-size: 1em;
	}
	.contenedor .productos .box .texto p {
		font-size: 0.8em;
	}
	button.flecha {
		width: 30px;
		height:30px;
	}
	button.flecha span {
		width: 18px;
		height:18px;
	}
	button.flecha span::after {
		height:25.4px;
	}

	.contenedor .productos.completo {
		flex-wrap: wrap;
		gap: 30px 0;
	}
	.contenedor .productos.completo .box {
		width: calc(50% - 6px);
	}

	nav {
		margin: 0 auto 48px;
		justify-content: center;
	}
	nav button {
		width: 24px;
		height:24px;
		font-size: 0.9em;
	}
	.portaBtn {
		margin: 0 auto 30px;
	}
	
	.portaImg .imagen {
		width: 75vw;
	}
	.portaImg main {
		margin: 75px auto;
	}
	.portaImg main > div {
		width: 75%;
		margin: 75px 0;
		padding:18px 30px 30px 18px;
	}

	.titulo {
		padding:48px 0 30px;
		display: block;
		gap: 30px 0;
	}
	.titulo > div:first-child {
		margin: 0 0 30px;
	}
	.titulo > div,
	.titulo > div.mini,
	.titulo ul {
		width: 100% !important;
		display: block !important;
	}

	.titulo .sub {
		width: 100%;
		gap: 24px 0;
		flex-wrap: wrap;
	}
	.titulo .sub h2 {
		font-size: 2.1em;
	}

	.titulo2 {
		text-align: center;
	}
	.titulo2 h2 {
		font-size: 1.3em;
		margin: 0 0 -48px;
	}

	.owl-carousel {
		width: 100%;
	}
	.owl-carousel .item {
		padding:0 18px 0 0;
	}

	.boxes {
		gap: 24px 0;
		margin: 0 auto 48px;
		justify-content: space-between;
	}
	.boxes .box {
		width: 100%;
		padding:48px 30px 30px 24px;
	}
	.boxes .box > span {
		font-size: 3.3em;
	}

	.portaContacto {
		flex-wrap: wrap;
		gap: 48px 0;
	}
	.portaContacto > div,
	.portaContacto form {
		width: 100%;
		order: 1;
	}
	.portaContacto > div {
		order: 2;
	}
	.portaContacto > div p {
		margin: 0 0 30px;
	}
	.portaContacto a.link {
		margin: 0 0 12px;
	}
	.portaContacto a.link:last-of-type {
		margin: 0 0 30px;
	}

	.portaContacto form div {
		flex-wrap: wrap;
		gap: 15px 0;
	}
	.portaContacto form div input,
	.portaContacto form div textarea {
		width: 100%;
		font-size: 0.9em;
	}

	.mapa {
		margin: 75px auto 48px;
		display: flex;
		flex-wrap: wrap;
	}
	.mapa iframe {
		height:60vh;
		order: 2;
	}
	.mapa div {
		position: relative;
		padding:0 0 42px;
		order: 1;
	}

	.doble {
		flex-wrap: wrap;
		gap: 30px 0;
	}
	.doble > div:first-child,
	.doble > div {
		width: 100%;
	}

	.doble .box {
		margin: 0 0 48px;
	}

	.completo {
		height:48vh;
	}

	#producto {
		padding:60px 0 48px;
		flex-wrap: wrap;
		gap: 30px 0;
	}
	#producto > div {
		width: 100%;
	}
	#producto .imagen .minis {
		width: 60px;
	}
	#producto .imagen #foto {
		width: calc(100% - 75px);
	}
	#producto .texto p {
		width: calc(100% - 30px);
	}
	#producto .texto button {
		margin: 48px 0 0;
	}
	#producto .texto .extra {
		width: calc(100% - 30px);
	}

	footer {
		padding:12px 0 48px;
	}
	footer::before {
		display: none;
	}
	footer .inter {
		flex-wrap: wrap;
		gap: 30px 0;
	}
	footer .inter > div,
	footer .inter > div:first-child {
		width: 100%;
		text-align: center;
	}
	footer .inter > div:first-child {
		padding:30px 0;
		background: var(--negro);
	}
	footer .inter > div:first-child img {
		height: 36px;
	}
	footer .inter > div:last-child {
		justify-content: center;
	}
	footer .inter > div:last-child .redes {
		justify-content: center;
	}
	
}