@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: 0;
	--negro: #16232B;
	--blanco: #ffffff;
	--blanco2: #f2f6f8;
	--vino: #691a32;
	--vinoClaro: #824056;
	--cafe: #cda176;
	--grisClaro: #f2f6f8;
	--gris: #e5ecf1;
	
	--width: calc(100% - 48px);
	--maxWidth: 1200px;
	background: var(--negro);
}

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

h1 {
	line-height:1;
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 2.1em;
	letter-spacing: 0.09em;
}
h2 {
	line-height:1;
	font-family: 'DM Sans';
	font-weight: normal;
	font-size: 1.8em;
}
h3 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 1em;
}
h4 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 2.1vh;
}
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: 'Inter Bold';
	/*font-size:1.11em;*/
	font-size:2.25vh;
	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: 1.2em;
}
p b,
p em {
	font-family: 'Inter Bold';
	font-weight: normal;
}

::selection {
	color: var(--negro);
	background: var(--cafe);
}
::-moz-selection {
	color: var(--negro);
	background: var(--cafe);
}

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

#superContainer {
    height: 100vw;
    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;
	background: var(--blanco2);
	transition: all ease-in-out 0.6s;
	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: 60px;
	margin: 21px 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 {
	font-size: 0.9em;
	position: relative;
	text-transform: capitalize;
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--cafe);
	position: absolute;
	left: 50%;
	bottom:-6px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:last-child::after {
	display: none;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}
header .inter .menu a:hover,
header .inter .menu a.active {
	color: var(--cafe);
}

header .inter li.dropdown {
	display: inline-block;
	cursor: pointer;
	list-style: none;
	line-height: 1;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	padding:0;
	min-width: 180px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 99;
}
.dropdown-content a {
	font-size: 0.8em !important;
	padding:9px 12px 9px 21px;
	text-decoration: none;
	display: block;
	text-align: left;
	position: relative;
}
.dropdown-content a::after {
	display: none;
}
.dropdown-content a.active,
.dropdown-content a:hover {
	color: var(--blanco) !important;
	background: var(--cafe);
}
.dropdown:hover .dropdown-content {
	display: block;
}

header .inter ul {
	list-style-type: none;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.btn-menu {
	width: 30px;
	height:42px;
	background: var(--blanco) !important;
	position: relative;
	display: none;
	margin: 0 0 0 12px;
}
.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: 123px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.2em; /* ? */
	display: block;
	margin: 0 0 24px;
	color: var(--blanco);
	position: relative;
	opacity: 0.6;
}
#openmenu a.sub {
	font-family: 'DM Sans';
	font-size: 0.8em;
	font-weight: lighter;
}
#openmenu a.active {
	color: var(--cafe);
	opacity: 1;
}
#openmenu a.active.sub {
	color: var(--blanco);
}
#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 a.sub::after {
	display: none;
}
#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:first-child a {
	font-family: 'Inter Bold';
	text-transform: uppercase;
}

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

.section {
	position: relative;
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}
.add {
	padding:120px 0 0;
}

.bg-vino {
	color: var(--blanco);
	background: var(--vino);
	z-index: 3;
}
.bg-gris {
	background: var(--gris);
	z-index: 3;
}
.bg-grisClaro {
	background: var(--grisClaro);
	z-index: 3;
}


.btn {
	width: auto;
	font-family: 'DM Sans';
	font-size: 0.9em;
	padding:9px 24px;
	position: relative;
	display: inline-block;
	color: var(--blanco) !important;
	background: var(--vino);
	border: solid 1px var(--vino);
	border-radius: 6px !important;
}
.btn:hover {
	background: var(--vinoClaro);
}
header .btn {
	padding:9px 18px;
}
.btn.btnBlnco {
	background: none;
	border-color: var(--blanco); 
}
.btn.btnBlnco:hover {
	background: var(--cafe);
}
.btn.btnCfe {
	color: var(--cafe) !important;
	background: none;
	border-color: var(--cafe); 
}
.btn.btnCfe:hover {
	background: var(--blanco);
}

.btns {
	position: relative;
	display: flex;
	gap: 18px;
}

#portada {
	width: 100vw;
	height:calc(100vh - 90px);
	margin: 99px 0 0;
	position: relative;
	background: var(--negro);
}
#portada .fondo {
	width: 102%;
	height:102%;
	object-fit: cover;
	opacity: 0.6;
}
#portada main {
	max-width: 630px;
	color: var(--blanco);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
	z-index: 3;
}
#portada main h1,
#portada main p {
	margin: 0 auto 24px;
}
#portada .btns {
	width: 100%;
	justify-content: center;
}

.nos {
	padding:72px 48px;
	display: flex;
	justify-content: space-between;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.nos div:nth-child(1) {
	width: calc(66.6% - 12px);
}
.nos div:nth-child(2) {
	width: calc(33.3% - 12px);
}
.nos div h2 {
	font-family: 'Inter Bold';
	font-size: 7.5em;
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
}
.nos div h2 span:first-child {
	min-width: 36%;
}
.nos div h2 span:last-child {
	font-size: 0.39em;
}
.nos div p {
	margin: 0 0 24px;
}

.logos {
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
}
.logos img {
	width: calc(25% - 18px);
	padding:60px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.logos img:nth-child(2n) {
	animation-delay: 1.2s;
}

.boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding:60px 0;
}
.boxes .box {
	width: calc(33.3% - 8px);
	color: var(--negro);
	padding:24px;
	border: solid 1px var(--vino);
	border-radius: 12px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.boxes .box:nth-child(2n) {
	animation-delay: 1.2s;
}
.boxes .box img {
	width: auto;
	height:69px;
}
.boxes .box h3 {
	font-size: 1.5em;
	color: var(--vino);
	margin: 18px 0;
}
circle {
	width: 42px !important;
	height:42px !important;
	background: var(--blanco);
	border-radius: 50%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box circle {
	box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.2);
}
.box circle span {
	font-size: 1.3em;
	color: var(--vino);
}
.boxes2 .box {
	background: var(--blanco);
	border: solid 2px var(--gris);
}
.boxes2 .box h3 {
	color: var(--negro);
}
.boxes .box button {
	font-family: 'DM Sans';
	font-size: 15px;
	padding:33px 0 0;
	display: none;
	color: var(--cafe);
	background: none;
}
.boxes .box button span {
	margin: 0 0 0 9px;
}

.boxes a.box:hover {
	color: var(--blanco);
	background: var(--vino);
}
.box.zoomIn.wow:hover {
	background: #691a32;
  }
  .box.zoomIn.wow {
	transition: background 0.3s ease;
  }
  .box.zoomIn.wow h3,
  .box.zoomIn.wow p {
	transition: color 0.3s ease;
  }
  
  
  .box.zoomIn.wow:hover h3,
  .box.zoomIn.wow:hover p {
	color: white;
  }
  
.boxes a.box:hover img {
	height: 0;
}
.boxes a.box:hover h3 {
	color: var(--blanco);
}
.boxes a.box:hover button {
	display: inline-block;
}

.titulo {
	padding:60px 0 0;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
.titulo h2 {
    width: 100%;
    font-family: 'Inter Bold';
    color: var(--vino);
    margin: 0 0 18px;
    font-size: 3em;
}
.titulo h3 {
	font-family: 'DM Sans';
	font-size: 0.7em;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0 0 18px;
}
.titulo h1 {
	margin: 0 0 18px;
}
.bg-vino .titulo {
	padding:60px 0;
}
.bg-vino .titulo h2 {
	color: var(--blanco);
}

.formulario {
	display: flex;
	padding:60px;
	gap: 30px;
}
.formulario > div,
.formulario > form {
	width: 50%;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.formulario > div {
	padding:30px 30px 0 0;
}
.formulario > div .link {
	width: 100%;
	position: relative;
	display: flex;
	gap: 12px;
	margin: 0 0 18px;
}
.formulario > div .link square {
	width: 42px;
	height:42px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--negro);
	border-radius: 6px;
}
.formulario > div .link square span {
	color: var(--blanco);
}
.formulario > div .link a {
	width: calc(100% - 54px);
	padding:1px 0 0;
}
.formulario > div .link a span {
	font-size: 0.9em;
	color: var(--vino);
}
.formulario h2 {
	font-family: 'Inter Bold';
	color: var(--vino);
	margin: 0 0 15px;
}
.formulario > div > p,
.formulario > form > p {
	margin: 0 0 24px;
}
.formulario > form {
	background: var(--gris);
	padding:30px;
}
.formulario > form div {
	margin: 0 0 12px;
}
.formulario > form div label {
	font-size: 0.9em;
	display: block;
	padding:0 0 9px;
}
.formulario > form div input,
.formulario > form div textarea {
	width: 100%;
	font-family: 'DM Sans';
	font-size: 0.9em;
	color: var(--negro);
	padding:9px 12px;
	border: solid 1px var(--negro);
	border-radius: 6px;
	opacity: 0.8;
	transition: all 0.3s ease-in-out;
}
.formulario > form div input:focus,
.formulario > form div textarea:focus {
	border-color: var(--cafe);
	opacity: 1;
}
.formulario > form div textarea {
	resize: none;
	min-height: 90px;
}
.formulario > form .send {
	margin: 24px 0 0;
}

.intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:60px 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.intro img {
	width: calc(40% - 180px);
}
.intro p {
	width: 60%;
}

.foda {
	display: flex;
	justify-content: space-between;
	padding:0 0 60px;
}
.foda > div {
	position: relative;
}
.foda .texto {
	width: calc(60% - 15px);
}
.foda .imagen {
	width: calc(40% - 15px);
}
.foda .imagen img {
	width: calc(100% - 130px);
	border-radius: 6px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 1;
}
.foda .imagen img:nth-child(2n) {
	margin: -42px 0 0 30px;
}

.caja {
	position: relative;
	display: flex;
	gap: 36px;
	margin: 0 0 42px;
}
.caja:last-child {
	margin: 0;
}
.caja .box {
	width: 100%;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.caja .box .tit {
	position: relative;
	display: flex;
	gap: 9px;
	align-items: center;
	padding:0 0 24px;
}
.caja .box .tit span {
	color: var(--vino);
}
.caja .box .tit h3 {
	font-size: 1.3em;
	color: var(--cafe);
}
.caja .box p {
	text-align: justify;
	text-justify: inter-word;
}
.caja .box ul {
	list-style: none;
}
.caja .box ul li {
	margin: 0 0 24px;
	text-align: justify;
	text-justify: inter-word;
}
.caja .box ul li:last-child {
	margin: 0;
}

.foda.servicio {
	padding:60px 0;
}
.foda.servicio .texto,
.foda.servicio .imagen {
	width: calc(50% - 30px);
}
.des {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.des:first-child {
	padding:60px 0 30px;
}
.des h2 {
	font-family: 'Inter Bold';
	font-size: 2.1em;
	color: var(--vino);
	margin: 0 0 24px;
}
.des h3 {
	font-size: 1.5em;
	margin: 0 0 12px;
}
.des p {
	margin: 0 0 30px;
}
.des p:last-child {
	margin: 0;
}
.des .btn {
	margin: 12px 0 0;
}

.ventana {
	margin: 0 auto 60px;
}
.ventana .texto {
	width: 100%;
	padding:120px 66.6% 120px 30px;
	position: relative;
	z-index: 3;
}
.ventana .texto h2 {
	font-family: 'Inter Bold';
	font-size: 2.1em;
	color: var(--blanco);
	margin: 0 0 24px;
}
.ventana .imagen {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	overflow: hidden;
	border-radius: 12px;
	z-index: 1;
}
.ventana .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
}

.mapa {
	width: 100vw;
	height:42vh;
	max-height: 666px;
	position: relative;
}
.mapa iframe {
	width: 100%;
	height:100%;
	margin: 0 0 -6px;
}

footer {
	width: 100%;
	position: relative;
	color: var(--blanco);
	background: var(--negro);
	padding:45px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: auto 0;
	position: relative;
	display: flex;
	gap: 30px;
}
footer .inter > div {
	width: 20%;
}
footer .inter img {
	width: 180px;
	margin: 0 0 18px;
}
footer .inter h3 {
	color: var(--cafe);
	margin: 0 0 24px;
}
footer .inter p,
footer .inter a {
	font-size: 1em;
	color: var(--blanco);
}
footer .inter > div > a {
	display: block;
	margin: 0 0 15px;
}
footer .inter > div > a:hover {
	color: var(--gris);
	text-decoration: underline;
}
footer .inter a.link {
	display: flex;
	gap: 9px;
	align-items: center;
}
footer .inter a.link:hover {
	text-decoration: none;
}
footer .inter a.link p {
	width: calc(100% - 45px);
	font-size: 0.9em;
}
footer .inter a.link:hover p {
	color: var(--cafe);
}
footer .redes {
	width: 100%;
	position: relative;
	display: flex;
	gap: 12px;
	padding:0 0 21px;
}
footer circle {
	width: 39px !important;
	height:39px !important;
	background: var(--vino);
}
footer circle span {
	font-size: 1.3em;
}

footer .pie {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 42px 0 0;
	padding:24px 0 0;
	text-align: center;
	border-top: solid 1px var(--gris);
}
footer .pie > * {
	font-size: 0.7em;
}
a.especial {
	margin: 24px 0 0;
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
	}
	
	p,
	ul {
		font-size: 0.8em;
	}
	
	h1 {
		font-size: 1.8em;
	}
	h2 {
		font-size: 1.5em;
	}
	
	h3 {
		font-size: 1.2em;
	}
	
	header .inter div img {
		height: 42px;
		margin: 18px 0;
	}
	header .menu a {
		order: 1;
		display: none;
	}
	.btn-menu {
		order: 2;
		display: inline-block;
		vertical-align: middle;
	}
	
	.btn {
		font-size: 0.84em;
		padding:9px 24px;
	}
	header .btn {
		padding:6px 12px;
	}
	header .btn span {
		display: none;
	}
	
	.add {
		padding:90px 0 0;
	}
	
	#portada {
		height:calc(100vh - 72px);
		margin: 72px 0 0;
	}

	.nos {
		flex-wrap: wrap;
		padding:60px 24px;
		gap: 24px;
	}
	.nos div:nth-child(1),
	.nos div:nth-child(2) {
		width: 100%;
	}
	.nos div h2 {
		font-size: 3.9em;
		gap: 3px;
	}
	.nos div h2 span:first-child {
		min-width: 60%;
	}
	.nos div h2 span:last-child {
		font-size: 0.27em;
	}

	.logos {
		padding:0 0 24px;
	}
	.logos img {
		width: calc(50% - 9px);
		padding:12px;
	}

	.boxes {
		padding:48px 0;
	}
	.boxes .box {
		width: 100%;
		padding:21px;
	}
	.boxes .box img {
		height:60px;
	}
	.boxes .box h3 {
		font-size: 1.3em;
	}
	.boxes .box button {
		padding:27px 0 0;
		display: inline-block;
	}
	.boxes a.box:hover img {
		height: 60px;
		filter: brightness(0) invert(1);
	}

	.titulo {
		padding:48px 0 0;
	}

	.formulario {
		padding:24px 18px 60px;
		gap: 30px;
		flex-wrap: wrap;
	}
	.formulario > div,
	.formulario > form {
		width: 100%;
	}
	.formulario > div {
		padding:24px 0;
	}
	.formulario > form div input,
	.formulario > form div textarea {
		padding:6px 9px;
	}

	.intro {
		padding:48px 0;
		flex-wrap: wrap;
	}
	.intro img {
		width: calc(100% - 60px);
		margin: 0 auto 24px;
	}
	.intro p {
		width: 100%;
	}

	.foda {
		padding:0 0 48px;
		flex-wrap: wrap;
		gap: 24px;
	}
	.foda .texto,
	.foda .imagen {
		width: 100%;
	}

	.caja .box .tit h3 {
		font-size: 1.2em;
	}
	.caja .box p {
		text-align: left;
		text-justify: none;
	}
	.caja .box ul li {
		text-align: left;
		text-justify: none;
	}

	.foda.servicio {
		padding:48px 0;
	}
	.foda.servicio .texto,
	.foda.servicio .imagen {
		width: 100%;
	}
	.des:first-child {
		padding:48px 0 24px;
	}
	.des h2 {
		font-size: 1.8em;
	}
	.des h3 {
		font-size: 1.3em;¡
	}

	.ventana .texto {
		padding:99px 30px;
	}

	footer {
		padding:42px 0;
	}
	footer .inter {
		gap: 24px;
		flex-wrap: wrap;
	}
	footer .inter > div {
		width: 100%;
	}
	footer .inter img {
		width: 150px;
		margin: 0 auto 18px;
	}
	
}
main.logos.negrote {
    filter: brightness(0) !important;
}