html,
body {
	font-size: 12px;
}

marca {
  font-weight: 600;
  font-variant: small-caps;
  position: relative;
  display: inline-block;
}

marca::after {
 content: "\00AE";
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 0.1em;
  color: #fe4133;
}

.menu{
	position: fixed;
	top: 58%;
	transform: translateY(-50%);
	left: 2%;
	z-index: 25;
	color: rgba(236, 233, 233, 1);
}
.menu .audio-controls{ 
font-size: 1.5em;	
}

.menu .audio-controls .icon-mute{ 
opacity: .75
}

.menu .openfooter-btn{ 
font-size: 3em;	
}

.indicators {
	 position: fixed;
	bottom: 5%;
	right: 10%;
	display: flex;
	gap: 1.2em; 
	z-index: 25; 
}

.vp-dot {
	width: 0.55em;
	height: 0.55em;
	background: #ece9e9;
	border-radius: 50%;
	opacity: 0.4;
	transition: opacity 0.3s ease;
	cursor: pointer;
	position: relative;
}

.vp-dot.active{
	background: #f24e2e;
	opacity: 1;
}

/* Tooltip */
.vp-dot::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 2em;  
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(238, 238, 238, 1);
	color: rgba(19, 16, 16, 1);
	padding: 0.3em 0.6em;
	font-size: 0.75em;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
	z-index: 999;
}

.vp-dot:hover::after {
	opacity: 1;
}

.modulo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
    /* transition: opacity 2s ease; */
	overflow: hidden;
	pointer-events: none;
}

.modulo.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
	pointer-events: auto;
}

.modulo .text {
	opacity: 0;
	transform: translateY(2rem); /* o translateY(20px), según escala que estés manejando */
	transition: opacity 1s ease, transform 1s ease;
}

/* Solo cuando el módulo está activo */
.modulo.active .text {
	opacity: 1;
	transform: translateY(0);
}

.modulo .video-case {
	opacity: 0;
	transform: translateY(-2rem); /* o translateY(20px), según escala que estés manejando */
	transition: opacity 1s ease, transform 1s ease;
}

/* Solo cuando el módulo está activo */
.modulo.active .video-case {
	opacity: 1;
	transform: translateY(0);
}

.modulo h1{
	position: absolute;
	top: 2%;
	left: 2%;
opacity: .75;
font-size: .8em;
color: rgba(98, 106, 97, 1);
z-index: 10
}

.video-case {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: url(../assets/img/papel.webp) center / cover;
	background-attachment: fixed;
}

.video-case video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	filter: saturate(0) contrast(1.2);
	object-fit: cover;
	width: 100%;
}

.video-case img.placeholder {
	opacity: 1;
	transition: opacity 1s ease;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	mix-blend-mode: multiply;
	filter: saturate(0);
}

.bar-container {
	position: absolute;
	top: 30%;
	left: 50%;
	width: 10%;
	height: 3px;
	background-color:  #ece9e9;
	display: flex;
	align-items: center;
	transform: translate(-50%, -50%);
	z-index: 50;
}

.progress-bar {
	height: 100%;
	background-color: #fe4133;
	width: 0%;
	transition: width 0.3s ease
}

.progress-text {
	margin-left: 0;
	color: #fe4133;
	font-size: .75em
}


.text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 10;
	opacity: 1;
	transition: opacity 0.5s ease, z-index 0s linear 0.5s;
	background: rgba(19, 16, 16, .2);
}

.text .contenthome.desk{
	display: none;
}

.text .pattern{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../assets/img/patternwhite.webp);
	background-size: 1.2px;
	opacity: .85;
	/* background: rgba(254, 65, 51, 1); */
}
.text .fill{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .5;
}


.text ul {
	position: absolute;
	right: 5%;
	bottom: 11%;
	width: 80%;
	text-align: right;
	z-index: 12;
}

.text ul li h2 {
	margin-bottom: -.8rem;
	color: rgba(236, 233, 233, 1);
text-shadow: 1px 1px 2px rgba(19, 16, 16, .3), -1px -1px 1px rgba(255, 255, 255, 1); 
font-size: 3em;
}
.text ul li h3 {
	color: rgba(255, 255, 255, 1);
	/* background: rgba(19, 16, 16, .25); */
	display: inline-block;
	padding: .3em;
	border-radius: 0 0 4px 4px;
}

.text ul li.contenthome {
	margin: .5em 0;
	padding: .5em 1em 0;
	border-top: 1px solid rgb(255 255 255 / .3);
	border-bottom: 1px solid rgb(255 255 255 / .3);
	 background: rgba(19, 16, 16, .1); 
	color: rgba(255, 255, 255, 1);
	border-radius: 4px;
}

.text ul li a.btn {
	background: rgba(19, 16, 16, .4);
	color: rgba(236, 233, 233, 1);
	border-radius: 4px;
	padding: .4em 1em;
}

.text ul li a.openfooter-btn {
	font-size: 2em;
	color: rgba(236, 233, 233, 1);
	margin: 1rem .3em;
	text-decoration: none;
}

.text ul li .audio-controls{
	margin-top: 0;
}

.text ul li .audio-controls span{
	font-size: 1.25em;
	color: rgba(236, 233, 233, .5);
	font-weight: 100;
}

.text ul li .audio-controls span:hover{
	color: rgba(236, 233, 233, 1);
	cursor: pointer;
}

.text.nosotros {
	-webkit-mask-image: url(../assets/img/mask/movil/01-mask.webp);
	-webkit-mask-size: 100% 100%; 
}
.text.loquehacemos {
	-webkit-mask-image: url(../assets/img/mask/movil/02-mask.webp);
	-webkit-mask-size: 100% 100%
}
.text.comolohacemos {
	-webkit-mask-image: url(../assets/img/mask/movil/03-mask.webp);
	-webkit-mask-size: 100% 100%
}
.text.loquemostramos {
	-webkit-mask-image: url(../assets/img/mask/movil/04-mask.webp);
	-webkit-mask-size: 100% 100%
}
.text.contacto {
	-webkit-mask-image: url(../assets/img/mask/movil/05-mask.webp);
	-webkit-mask-size: 100% 100%
}

footer{
	position: fixed;
	top: 100vh;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding: 0;
	opacity: 0;
	z-index: 50;
	transition: opacity 0.5s ease, z-index 0s linear 0.5s;
	background: url(/assets/img/papel.webp) center / cover;
	background-attachment: fixed;
	overflow-y: none;
}
footer.show{
	top: 0;
	opacity: 1;
	z-index: 50;
	transition: opacity 0.5s ease 0s, z-index 0s linear 0s
}

 footer .imgcorp{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 3%;
	list-style: none;
	color: rgba(236, 233, 233, 1);
	text-align: center;
}
footer .imgcorp img{
	height: 10em;
	width: auto;
	margin: 0 auto;
}

footer .imgcorp .promp{
	font-size: 1em;
	font-weight: 700;
	opacity: .75;
	margin-top: .2em;
}
footer .imgcorp .description{
	font-size: 1em;
	font-weight: 100;
	border-top: 1px solid rgba(236, 233, 233, 1);
	letter-spacing: .3em;
}
footer .imgcorp .tagline{
	font-size: 1em;
	font-weight: 400;
	margin: 0;
	opacity: .85;
}
footer .imgcorp .derechos{
	font-size: .7em;
	font-weight: 400;
	opacity: .75;
}

footer nav{
	position: absolute;
	right: 50%;
	top: 50%;
	transform: translateY(-50%);
	text-align: right;
	padding: 0 1em;
}
footer nav a{
	display: block;
	color: #ffffff;
	font-size: 1.2em;
	margin-bottom: .5em;
	text-decoration: none;
}
footer nav a:after{
	font-family: "icomoon";
	content: "\e902";
	color: #f24e2e;
	font-size: .65rem
}

footer nav a.socialmedia{
	color: #000000;
	font-size: 1.6em;
	padding: .5em .3em;
	border: 1px solid #000000;
	border-left: none;
	border-right: none;
	opacity: .75;
}
footer nav a.socialmedia:after{
	font-family: "icomoon";
	content: "";
	color: #f24e2e;
	font-size: .65rem
}

footer nav a.socialmedia span{
	margin-left: .75em;
}

footer nav a.legal{
	font-size: .9em;
	opacity: .7;
}

footer .closefooter-btn.icon-cross{
	font-size: 3em;
	opacity: .7;
	position: absolute;
	right: 5%;
	top: 5%;
	background: none;
	text-decoration: none;
	z-index: 10
}

footer form{
padding: 1em;
width: 50%;
text-align: left;
position: absolute;
top: 50%;
transform: translateY(-50%);
border-left: 1px solid #ece9e9;
left: 50%;
} 

form {
	padding: 0;
	width: 100%;
	text-align: left;
}

form input,
form select {
	width: 100%;
	margin-bottom: 1em;
	padding: .5em 1em;
	background: rgb(236 233 233 / .25);
	border: none;
	color: #eee;
	font-family: inherit;
	font-size: .8em;
	border-radius: 5px
}

form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FE4134' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1em center;
	background-size: 10px 6px
}

form button {
	padding: .35em 1em;
	background: rgba(236, 233, 233, .5);
	color: #fe4133;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	border-radius: 8px
}

form label {
	display: block;
	margin-bottom: .5em;
	font-size: 1em
}

form ::placeholder {
	color: #ece9e9;
	font-size: .9em
}

form div {
	background: none;
	border: 1px solid rgba(236, 233, 233, .5);
	border-left: none;
	border-right: none;
	padding: 1em 0 0;
	margin: 2em 0;
	color: #eee
}



.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	opacity: 0;
	z-index: -2;
	transition: opacity 0.5s ease, z-index 0s linear 0.5s;
	color: rgba(221, 221, 221, 1);
}

.popup.active {
	opacity: 1;
	z-index: 60;
	transition: opacity 0.5s ease 0s, z-index 0s linear 0s
}

.popup.closing {
	opacity: 0;
	z-index: -2;
	transition: opacity 0.5s ease, z-index 0s linear 0.5s
}

.popup .closepopup-btn {
	font-size: 3.5em;
	position: absolute;
	right: 1%;
	bottom: 8%;
	cursor: pointer;
	color: rgba(255, 255, 255, 1);
	background: none;
	text-decoration: none;
	z-index: 30
}
.popup h2 {
	text-shadow: -1px -1px 1px rgba(255, 255, 255, 1), 2px 2px 5px rgba(0, 0, 0, 0.4);
	font-size: 4em;
	line-height: .85em;
}
.popup h3 {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
	font-size: 1.5em;
}
.popup hr {
	margin: 2em 0;
	opacity: .5;
}

.popup nav {
	position: absolute;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	cursor: pointer;
	color: rgba(255, 255, 255, 1);
	background: rgba(19, 16, 16, .75);
	text-align: center;
	padding: 1em;
	z-index: 20;
}
.popup nav a{
	background: none;
	text-decoration: none;
	font-size: .85em;
}

.popup nav a:after{
	font-family: "icomoon";
	content: "\e902";
	font-size: .5em;
	margin: 0 .5em;
}
.popup nav a:last-child:after{
	font-family: "icomoon";
	content: "";
}
/* =========================== */

.content-popup {
  padding: 0;
  margin: 0;
  width: 100%;
  background: none;
  position: absolute;
  bottom: 12%;
  left: 0;
  padding:  2em 3em;
}

.content-popup li {
  transition: all 0.5s ease;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-radius: 8px;
}

.content-popup h2 {
  font-size: 3.5em;
}

/* Head y CTA pegados sin espacio */
.content-popup .head {
  background: none;
}

.content-popup .vermas {
  cursor: pointer;
  padding: .5em 2em;
  color: #000;
  font-weight: 600;
}

.content-popup .vermas:after {
font-family: "icomoon";
content: "\e901";
transform: rotate(90deg);
margin-left: 2em;
display: inline-block;
}

/* Texto oculto inicialmente */
.content-popup .txt {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: none;
  transition: all 0.5s ease;
  padding: 0;
  background: rgba(0, 0, 0, .1);
  border-top: 1px solid rgba(255, 255, 255, 0.518);
  margin-top: .5em;
}

/* Estado abierto */
.content-popup.open{
top: 0;
left: 0;
width: 90%;
height: 100%;
 background: rgba(98, 106, 97, .85);
 z-index: 19;
}

.content-popup.open .head {
 transform: translateY(0);
 background: none;
}
.content-popup.open .head h2{
 font-size: 2em;
 color: rgba(255, 255, 255, 0.75);
 text-shadow: none;
}
.content-popup.open .head h3{
 font-size: 1.3em;
 color: rgba(255, 255, 255, 1);
 text-shadow: none;
}

.content-popup.open .vermas {
  transform: translateY(0);
}
.content-popup.open .vermas:after {
font-family: "icomoon";
content: "\e901";
transform: rotate(270deg);
margin-left: 2em;
display: inline-block;
}

.content-popup.open .txt {
  max-height: 28em;
  opacity: 1;
  overflow-y: auto;
  padding: 3em 2em;
  margin: 2em 0;
}

.content-popup form {
  width: 80%;
  margin: 0 auto;
}

.popup.loquehacemos .content-popup .txt a {
  font-size: 1.1em;
  margin-bottom: .3em;
  color: #fe4133;
  background: none;
  text-decoration: none;
}

.popup.loquehacemos .content-popup .txt a:after {
  font-family: "icomoon";
  content: "\e901";
  margin-left: 1em;
  color: #ece9e9;
  font-size: .8em;
}

.popup.nosotros {
	background: url(/assets/img/movil/01.webp);
	background-size: cover;
	background-position: top;
}
.popup.nosotros .vermas {
	background: #fe4133;
}
.popup.nosotros span {
	color: #fe4133;
}
.popup.nosotros nav a:after{
	color: #fe4133;
}

.popup.loquehacemos {
	background: url(/assets/img/movil/02.webp);
	background-size: cover;
	background-position: top;
}
.popup.loquehacemos .vermas {
	background: #fe4133;
}
.popup.loquehacemos span {
	color: #fe4133;
}
.popup.loquehacemos nav a:after{
	color: #fe4133;
}

.popup.comolohacemos {
	background: url(/assets/img/movil/03.webp);
	background-size: cover;
	background-position: top;
}
.popup.comolohacemos .vermas {
	background: #fc5205;
}
.popup.comolohacemos span {
	color: #fc5205;
}
.popup.comolohacemos nav a:after{
	color: #fc5205;
}
.popup.loquemostramos {
	background: url(/assets/img/movil/04.webp);
	background-size: cover;
	background-position: top;
}
.popup.loquemostramos .vermas {
	background: #fc0552;
}
.popup.loquemostramos span {
	color: #fc0552;
}
.popup.loquemostramos nav a:after{
	color: #fc0552;
}
.popup.contacto {
	background: url(/assets/img/movil/05.webp);
	background-size: cover;
	background-position: top;
}

.popup.contacto .vermas {
	background: #fe4133;
}
.popup.contacto span {
	color: #c0b275;
	font-size: 1em;
}
.popup.contacto nav a:after{
	color: #c0b275;
}
.popup.contacto h2{
	font-size: 2em
}

.popup.contacto span[class^="icon-"] {
  font-size: 1.2em;
  color: #c0b275;
  vertical-align: middle;
  margin-left: 1em;
}
.popup.contacto p {
  margin-top: 1em;
}

.popup.faqs {
	background: url(../assets/img/movil/02.webp);background-position: center;
	background-size: cover;
	background-position: top;
}

.popup.legal {
	background: url(../assets/img/movil/02.webp);background-position: center;
	background-size: cover;
	background-position: top;
}


.popup.faqs .content-popup p{
  font-size: 1.1em;
  font-weight: 700;
  margin-top: 1em;
}
.popup.faqs .vermas, .popup.legal .vermas{
	background: #fe4133;
}
.popup.faqs span, .popup.legal span {
	color: #fe4133;
}
.popup.faqs nav a:after, .popup.legal nav a:after{
	color: #fe4133;
}

.popup a.btn-cta{
	background: rgba(236, 233, 233, .1);
	color: rgba(236, 233, 233, 1);
	margin-top: 1em;
	padding: .5em 2em;
	text-decoration: none;
	border-radius: 8px;
}
.popup a.btn-cta:after{
	content: "";
}
 
 /* MÓVIL PEQUEÑO - HORIZONTAL */
 @media (max-width: 899px) and (orientation: landscape) {
   body { font-size: 13.5px; }
 }
 
























