/* CSS Resets */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	padding: 0
}
article, aside, figure, figure img, figcaption, hgroup, footer, header, nav, section, video, object {
	display: block
}
a img {	border: 0}
figure {position: relative; margin: 0; width: 100%}
figure img {width: 100%; height: auto; margin: 40px 0; display: block;}

html { margin: 0 !important;}



body {
	overflow-x: hidden;
	background-color: var(--color-contraste);
	max-width: 100vw;
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--color-texto);
	min-height: 100vh;
	line-height: 1.5;
	letter-spacing: 1px;
	margin: 0;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	font-size: 16pt;
	align-content: center
}



h1, h2, h3, h4, h5, h6 {margin: 0;}
h1 {font-weight: 700; font-size: 36pt; text-transform: none; line-height: 1.2}
h2 {font-weight: 700; font-size: 24pt; text-transform: none; line-height: 1.2}
h3 {font-weight: 500; font-size: 18pt; margin: 0}
h4 {font-weight: 500; font-size: 16pt; color: var(--color-contraste)}
h5 {font-weight: 700; font-size: 16pt; color: var(--color-contraste)}
h6 {font-weight: 500; font-size: 12pt; text-transform: uppercase; color: var(--color-)}

ul, ol { list-style: none; margin: 0;}
ol {margin-left: 40px; margin-bottom: 40px;}
ol li {margin-bottom: 20px;}
ul.children { margin-left: 15px;}
ul.children li:last-child {padding: 0 0 0 0 !important;}
a, a:hover { text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;}
a:hover {font-weight: 600}
a, .nav li a {
	-webkit-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
	color: var(--color-contraste);
}

hr {border: 0; border-top: 2px solid var(--color-contraste); display: inline-block; width: 100%; margin: 0}

p {line-height: 1.5;font-weight: 400; font-size: 16pt; text-align: left; margin: 0 0 0px;}



.flex {display: flex; width: 100%; }
.wrap {flex-wrap: wrap;}
.col {flex-direction: column !important;}
.row {flex-direction: row !important;}
.flex.rev {flex-direction: row-reverse;}
.flex.center {align-items: center; justify-content: center;}
.flex.start {align-items: start;}
.flex.row.end {align-items: flex-end;}
.flex.col.end {align-items: center; justify-content: flex-end;}
.flex.col.end.end {align-items: flex-end; justify-content: flex-end;}
.flex.row.end {justify-content: flex-end;}
.space {justify-content: space-between !important;}
.flex.col.space.end {align-items: flex-end;justify-content: space-between; }
.flex.col.center.end {align-items: flex-end; justify-content: center; }

.gm {gap: .5rem !important}
.g1 {gap: 1rem !important}
.g2 {gap: 2rem !important}
.g3 {gap: 3rem !important}
.g4 {gap: 4rem !important}
.g8 {gap: 8rem !important}



.fl {float: left !important;}
.fr {float:right !important;}

/* Filtros */

.grayscale { filter: none; -webkit-filter: grayscale(100%); -moz-filter:    grayscale(100%); -ms-filter:     grayscale(100%); -o-filter:      grayscale(100%); -webkit-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in; -ms-transition: all 0.3s ease-in; }



/*  HEADER */
header {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px;
    height: min(20vh, 240px);
    z-index: 4;
    background-color: #fff;
    -webkit-transition: 600ms;
    -moz-transition: 600ms;
    -o-transition: 600ms;
    -ms-transition: 600ms;
    transition: 600ms;
}

header a#menu {
    position: relative;
    display: none;
    font-size: 1em;
    text-transform: lowercase;
    font-weight: 200;
    cursor: pointer;
    color: var(--color-contraste);
    z-index: 8;
}

header a#menu:hover {
    color: var(--color-highlight)
}


header .espacio {padding: 2em 4em; gap: 0em;  z-index: 3; width: calc(100% - 8em); max-width: 1440px; display: inline-flex; flex-direction: row; flex-wrap: wrap; justify-content:  space-between; align-items: center; align-content: center;
	flex: 1 1; position: relative;
	-webkit-transition: 600ms;
	-moz-transition: 600ms;
	-o-transition: 600ms;
	-ms-transition: 600ms;
	transition: 600ms;}

header .espacio .der,
header .espacio .izq {display: inline-flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 2em; }

header .espacio .izq {width: 80%; flex: 1 0 80%}
header .espacio .der {width: 10%; flex: 1 0 20%; justify-content: flex-end}

header .espacio .izq a.logo figure{min-width: 210px; min-height: 80px}

header .menu {display: inline-flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 4em; z-index: 2;}



header nav.idiomas {z-index: 4}


header.scroll {top: calc((25vh - 5px) * -1);border-bottom: 10px solid var(--color-claro); cursor: pointer; position: fixed;
    background-color: #fff}
    header.scroll:hover {top: 0;}
    
    
nav.menu a {font-size: var(--texto-menu); color: var(--color-contraste); font-weight: 500; padding: 5px;}
nav.menu a:hover { border-bottom: 3px solid var(--color-contraste);}


/* Imágenes */

figure {background-position: center; background-repeat: no-repeat; background-size: cover;}
figure.fotograma {min-height: 75vh; }
figure.imagen {height: min(60vh, 540px); border-radius: 1em}
figure.imagenfondo {position: absolute; z-index: 0; width: 100%; height: 100vh;}
figure.portada {position: fixed; top: 0; left: 0; min-width: 100vw; min-height: 100vh}
figure.thumb {min-height: 240px; border-radius: .75rem; flex: 0 1 40%;}

/* Secciones */
section {width: 100%; display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: center; padding: 0; min-height: auto}

section aside {width: 50%; flex: 1 1; align-self: stretch; display: flex; flex-direction: column; flex-wrap: wrap; align-items: center; justify-content: center;}
section blockquote {margin: 0px; font-size: 16pt; font-weight: 700; display: inline-flex; flex-direction: column; gap: 1em; width: calc(100% - 8em); padding: 4em; }



/* Bloques */ 

main {position: relative; width: calc(100% - 0px); display: flex; flex-direction: column; flex-wrap: wrap; z-index: 1; background-color: transparent}
.contenedor {display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; width: min(calc(100% - 8em), 1440px); padding: 8em 4em; gap: 4em;}

.columna {width: 100%; margin: 0; position: relative; height: auto; gap: 1em; display: flex; flex-direction: column;}

.columna.uno {width: calc(100% - 16em); padding: 0em 8em}
.columna.dos {width: calc(50% - 40px); gap: 2em; flex: 1 1;}
.columna.dos .fotograma {position: relative; display: block; margin: 0 0 40px}

.cajatexto {width: calc(100% - 160px); padding: 80px; position: relative;}

.columna.tres {width: calc((100% / 3) - 2px); flex: 1 1 0}
.columna.tercio {width: calc((100% / 3)*2 - 3px);display: inline-block;}
.columna.cuatro {width: calc((100% / 4) - 2px); flex: 1 1 0}


.encabezado { position: relative; display: inline-flex; flex: 1 1 100%;  width: 100%; z-index: 8; margin: 0; gap: 10px; flex-direction: column}

.cuadrotexto {width: 100%; flex: 1 1; align-self: stretch; display: inline-flex; align-items: flex-start; justify-content: center; flex-direction: column; gap: 1em}

.encabezado.seccion {max-width: 30%; width: calc(30% - 20px); padding-left: 20px}
.encabezado.seccion h2 {color: var(--color-contraste); font-size: 32pt}



/* Botones */

span.boton {
		text-align: left;
		padding: 0;
		width: auto;
		display: inline-flex;
		gap: 1em;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		color: var(--color-encabezados);
		font-size: var(--texto-menu);
		cursor: pointer;
		font-weight: 700;
		background-color: transparent;

		-moz-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
}

span.boton:hover {
	-moz-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
}

span.boton a {display: flex; flex-direction: row; gap: 1em; justify-content: center; align-items: center; color: var(--color-encabezados); border: 3px solid var(--color-encabezados); padding: .5rem 1em; border-radius: .75em;}
span.boton:hover a{background-color: var(--color-neutro); color: var(--color-encabezados);}


span.boton.alt a {color: var(--color-claro); border: 3px solid var(--color-claro); }
span.boton.alt2 a {background-color: var(--color-claro); border: 0; color: var(--color-encabezados); }


/* Cuadrículas */

ul.grid {width: 100%; display: grid; list-style: none !important; fit-content; margin: 0; grid-template-columns: repeat(12, 4fr); gap: 2em}
ul.grid.uno li {grid-column: span 12;}
ul.grid.dos li { grid-column: span 6; }
ul.grid.tres li { grid-column: span 4; }
ul.grid.cuatro li { grid-column: span 3; }
ul.grid li {display: inline-flex; flex: 1 1 0; flex-direction: row; align-items: center; justify-content: center; margin: 0 !important; gap: 2em}
ul.grid li a {flex: 1 1; display: inline-flex; position: relative}

ul.grid li .thumb {min-height: 240px; width: 100%;
background-position: center;
background-repeat: no-repeat;}

ul.grid li span {font-size: 14pt; text-align: left; display: block}


/* Formularios */

section form {
    display: flex;
    flex-direction: column;
    gap: 2em
}

section input,
section select,
section button {
    background-color: transparent;
    width: auto;
    padding: 5px;
    border: 0;
    min-height: 40px;
    font-size: 18pt;
    font-weight: 500;
    border-bottom: 3px solid var(--color-contraste);
    border-radius: 0;
    display: inline-flex;
    flex: 1 1
}

section button.disabled-button {
    background-color: #ddd;
    border-color: #ddd;
    cursor: not-allowed;
}
section button.disabled-button:hover {
	background-color: #ddd;
	border-color: #ddd;
	color: var(--color-contraste);
}

section textarea {
    border: 2px solid var(--color-contraste);
    width: 100%;
    min-height: 180px;
    margin: 20px 0
}

    {
    background-color: var(--color-contraste);
    font-weight: 700;
    padding: .5em 1em;
    font-size: 18pt;
    color: var(--color-claro);
    border-radius: 1em
}

section input::placeholder {
    color: #333
}

section select {
    min-height: 40px;
    cursor: pointer;
}

section form button,
section form input[type="submit" i],
section form .cart-action button {
    color: var(--color-encabezados);
    border: 3px solid var(--color-encabezados);
    padding: .5em 1em;
    border-radius: .75em;
    font-size: 18pt;
    font-weight: 700;
    margin: 1em 0;
    cursor: pointer;
    justify-content: center;
    background-color: var(--color-claro);
    font-family: "futura-pt", sans-serif;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;

}

section form button.disabled,
section form button.disabled:hover {
    cursor: not-allowed;
    background-color: #ddd !important;
    border-color: #ddd !important;
    color: var(--color-contraste) !important;
}

section form button:hover,
section form input[type="submit" i]:hover,
section form .cart-action button:hover {
    background-color: var(--color-encabezados);
    color: var(--color-claro);
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;

}

section form h1,
section form h2,
section form h4 {
    flex: 1 1 100%
}

form .custom-radio {
    display: flex;
    align-items: center;
    flex-direction: row;
    border: 2px solid #ccc;
    padding: 1rem ;
    border-radius: .5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: border 0.2s ease;
    flex: auto;
    color: var(--color-contraste);
    flex-wrap: wrap;
    gap: 0px 8px;
}

form .custom-radio span.texto {
    flex: 1 0
}

form .custom-radio:hover {
    border-color: var(--color-contraste);
}

:is(form .custom-radio.terminos, form .custom-radio.terminos:hover) {
    border: 0;
    padding: 0;
}

form .custom-radio.terminos {
    font-size: 1rem
}

form .custom-radio input[type="radio"] {
    display: none;
}

form .custom-radio input[type="checkbox"] {
    display: none;
}

form .radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-principal);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form .radio-button::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--color-principal);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

form .custom-radio input[type="radio"]:checked+.radio-button::after {
    opacity: 1;
}

form .custom-radio input[type="checkbox"]:checked+.radio-button::after {
    opacity: 1;
}

form .label-text {
    font-size: 16px;
    font-weight: 500;
}

/* Páginas  */

section.pagina {padding-top: 0; height: min(calc(80vh -240px), calc(100vh - 240px)); z-index: 2; background-color: var(--blanco);}
section.pagina .contenedor {align-items: flex-start; padding: 4em; gap: 4em; position: relative;}
section.pagina.std .contenedor {justify-content: flex-start; width: min(100%, 840px)}
section.pagina.destacado .contenedor {padding: 0 4em 8em}
section.pagina .encabezado {text-align: left}
section.image.banner {position: relative; min-height: 50vh;}
section.image.banner figure.imagenfondo {height: 100%}

section.pagina iframe {min-width: 100%; display: block; min-height: 540px; margin-bottom: 2em; position: relative;
    width: 100%;}

section.pagina .cajatexto {display: inline-block; width: calc(100% - 80px); min-height: 100%; font-weight: 700; font-size: 14pt; padding: 40px; color: var(--color-contraste)}
section.pagina .cajatexto h2 {font-size: 18pt; margin-top: 0}
section.pagina ul{list-style: inherit;}
section.pagina ul li {margin-bottom: 10px; margin-left: 20px; font-weight: 400}


/* Footer  */

footer {background-color: var(--color-contraste); color: var(--color-claro);min-height: 50vh; position: relative; bottom: 0; display: flex; width: 100%; z-index: 4; justify-content: center;align-items: center}
footer .espacio {position: relative; width: calc(100% - 8em); max-width: 1440px; display: flex; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 1em;}
footer a,
footer h4,
footer nav.menu a {color: #fff; font-weight: 400;}


footer .logopie {flex: 1 1 100%; flex-direction: row; justify-content: space-between}
footer .logopie figure {min-height: 120px}

footer .columna {gap: 2em;}
footer .columna p {line-height: 1.5; font-size: 10pt;color: var(--color-claro)}

footer .columna h2 {color: var(--color-claro); font-weight: 700; font-size: 32pt}
footer .columna.correo {align-items: flex-end;}

footer nav.redes {display: inline-flex; flex-direction: row; gap: 2em}
footer nav.redes a {color: #fff}
footer nav.redes .fa-1x {font-size: 24pt}

footer nav.menu {display: flex; flex-direction: column; gap: 0; align-items: flex-start}
footer nav.menu a {font-weight: 400; color: #fff}
footer nav.menu a:hover {border: 0; background-color: var(--color-claro); color: var(--color-encabezados)}

.copyright {float: right; position: fixed; bottom: 0; right: 0;}
.copyright p {font-size: 10pt; font-weight: 700; margin-right: 80px}



/* Preview Video */


.bdyt{position:fixed; top: 0; left: 0;width:100%;overflow:hidden;border-radius:14px;background:#000}
.bdyt__ratio{width:100%}
.bdyt__iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
  /* "cover" visual: el iframe es 16:9, esto lo centra */
}
.bdyt__play{
  position:absolute; inset:0;
  display:grid; place-items:center;
  background:transparent; border:0; cursor:pointer;
}
.bdyt__playIcon{
  width:76px; height:54px; border-radius:14px;
  background:rgba(0,0,0,.55);
  position:relative;
}
.bdyt__playIcon:before{
  content:"";
  position:absolute; left:30px; top:17px;
  border-style:solid;
  border-width:10px 0 10px 16px;
  border-color:transparent transparent transparent rgba(255,255,255,.95);
}
.bdyt:hover .bdyt__playIcon{background:rgba(0,0,0,.75)}
