﻿/**/
.loading {
	display: none;
	position: fixed;
	
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	
	justify-content: center;
	align-items: center;
	
	font-size: 2em;
	color:#FFEECC;
	background-color:#110022;
	z-index:99999;
}
.loading--show {
	display:flex;
}

/*RESET*/

*, *::before, *::after, html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, button, input, select, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, header, main, section, figure, mark{
	margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; background-color: transparent; text-decoration: none; list-style: none; list-style-type: none; border-style: none; 
	box-sizing:border-box; /*No cuenta con los paddings - MODO FACIL*/
	Xoutline: red inset thin; /*Delineado de todos los objetos - MODO DISEÑO*/
	Xbackground-color: rgba(255, 0, 0, 0.2); /* Rojo semitransparente */
}

/*TIPOGRAFIAS*/

@font-face {
    font-family:"Familia Murales";
    src: url("../fonts/Familia-Murales.woff2") format('woff2');
	unicode-range: U+0000-00FF; /* Rango de caracteres a precargar, por ejemplo, el rango básico latino */  
	font-display: fallback;
}

@font-face {
    font-family:"Mulish";
    src: url("../fonts/Mulish-Regular.woff2") format('woff2');
	unicode-range: U+0000-00FF; /* Rango de caracteres a precargar, por ejemplo, el rango básico latino */   
	font-display: fallback;    
}

/* MESA DE TRABAJO / CONTAINERS */

html, body{ max-width:100vw; /*Relativa al % del ANCHO del viewport view-width*/ min-height:100vh;/*Relativa al % del ALTO del viewport view-height*/} 

body{
	font-family: "Mulish", Arial, sans-serif;
	font-size:1em;/*Relativa al tamaño del body*//*font-size:1vw;  Relativa al % del ANCHO del viewport view-width*//*REDUCE PROPORCIONAL*//*ANULA EL ZOOM*/
	text-align: center;
	overflow:overflow-y;
}
.seccion{
	width:100%;
	margin: 0 auto; /*CENTRADO en el body*/
	display:block;
	float:left;
	/*background-color:yellow;*/	
}
.sub-seccion{
	width:100%;
  	margin: 0 auto; /*CENTRADO en el .seccion*/
	display:block;
	overflow:hidden; /*RECORTA los elementos que se salgan de los seccions*/
	/*background-color:blue;*/	
}
    
.columna, .a-1-columnas, .a-2-columnas, .a-3-columnas, .a-4-columnas, .a-6-columnas, .a-8-columnas, .a-10-columnas{
	float:left;
	margin: 0 auto; /*CENTRADOS en el .sub-seccion*/ 
	display:inline-block;
	/*background-color:red;*/
}
.a-1-columnas{width:99.96%;}
.a-2-columnas{width:49.98%;}
.a-3-columnas{width:33.32%;}
.a-4-columnas{width:24.99%;}
.a-6-columnas{width:16.66%;}
.a-8-columnas{width:12.49%;}
.a-10-columnas{width:10%;}




/*FUENTES Y ESTILOS*/

h1, h2, h3, h4, h5, h6{
	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
}
h1{
	font-size: 3.5em;
}
h2{
	font-size: 3em;
}
h3{
	font-size: 2.5em;
}
h4{
	font-size: 2em;
}
h5{
	font-size: 1.5em;
}
h6{
	font-size: 1em;
}
p{
	font-size:1em;
	overflow:hidden;
	/*background-color:purple;*/
}
b{
	font-weight:bold;
}
em{
	font-style:italic;
}
strong {
	font-weight:bold;
}
span{
	
}

/* IMAGENES */

img {
	width:100%; /* :100%; Estira la imagen al contenedor a lo ANCHO */
	height:auto; /* :100%; Estira la imagen al contenedor a lo ALTO / :auto; se deja controlar por el width: */
	
	max-width:100%; /* :100%; Estira la imagen al contenedor a lo ANCHO */
	min-width:100%; /* :100%; Estira las imagenes pequeñas al contenedor a lo ANCHO cuando sobrepasa su tamaño se deja de ver parte de la imagen */
	
	max-height:100%; /* :100%; ALTO minimo de la imagen*/
	/* min-height:100%;  :100%; igual al height:100%; en PX obliga a que sea el ALTO minimo  SOLUCIONA ESPACIOS BLANCOS EN EL seccion  */

	vertical-align: middle;	
}
.imgBG{
	background-size:100%;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:left top;
}

/* FX IMAGENES
  
img, .foto img {
	filter: sepia(15%) grayscale(5%) contrast(111%) saturate(105%) opacity(100%) brightness(100%) blur(0px);
	transition:all .3s linear .0s;
}
img:hover, .foto:hover img:hover {
	filter: sepia(90%) grayscale(10%) contrast(95%) saturate(95%) opacity(95%) brightness(95%) blur(0px);
	transition:all .100s linear .0s;
}

*/

img{
  transition: opacity 0.3s ease-in-out;
}
img.loading{
  opacity: 0;
}

/*ENLACES */

a{
}
a:active{
}
a:hover{
}
a:visited{
}
a:focus{
}

/*ENLACES */

/* SELECCIÓN */

::selection{
	color:rgba(51,0,51 ,1 );
	background-color:rgba(238,168,21 ,0.9 );
}
::-moz-selection{
	color:rgba(51,0,51 ,1 );
	background-color:rgba(238,168,21 ,0.9 );
}
::-webkit-selection{
	color:rgba(51,0,51 ,1 );
	background-color:rgba(238,168,21 ,0.9 );
}
.oculto{
	display:none;
}
.visible{
	overflow:visible;
}
.flex{
	display:flex;
}

/*FAMILIA MURALES*/

a{
	color:#320E3B;
}
a:hover{
	background-color:#D61347;
	color:#FFF6A7;
}
a:focus{
	color:rgba(51,0,51 ,1 );
	background-color:rgba(238,168,21 ,0.9 );
}
/*
a:active{
	color:#320E3B;
}
a:visited{
	color:#320E3B;
}
*/
body{
	background-image:url('../img/base/BG.gif');
	background-size:50%;
	background-attachment:fixed;
	background-repeat:repeat;
	background-position:left top;
	color:#320E3B; /*Purple*/
	background-color:#FFFAD2; /*Cream*/
}
.header{
	min-width:1080px;
	padding:1.5%;
}
.logo-familia{
	width:96%;
	margin-top:10%;
}
.head-titulo{
	float:left;
	margin-top:-500%;
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	clip-path:circle(0%);
}
.texto-intro{
	width:96%;
	margin:-3% auto 3% auto;
	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
	font-size: 2.5vw;
	line-height: 1.2em;
	transform: rotate(-1.3deg);
	mix-blend-mode:multiply;	
}
.resaltador{
	font-weight:normal;
	background-color:#FCE762;
	mix-blend-mode:multiply;
}
mark{
	color:#320E3B;
}
.by-myv{
	width:50%;
	margin:4% auto;
}
.por{
	width:20%;
}
.modoyvicio{
	width:80%;
}
.foto-retrato{
	margin:5% 0% 0% 0%;	
	transform:rotate(-3deg);
	transition: transform 0.3s ease-in-out;	
}

.hola-new{
	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
	font-size: 10vw;
	width:70%;
	margin: 40% 0% -10% 0%;
	letter-spacing: -0.1em;
}
.somos{
	width:95%;
	float:left;
	margin-left:5%;
	font-size: 1.6vw;
	text-align:left;
}
.hide-hola{
	display:none;
}
.llamado{
	position: absolute;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
  	clip-path: circle(0%);	
}
.galeria-intro{
	background-color:#320E3B;
	height:auto;
	float:left;
	margin:5% auto;
}
.galeria{
	width:24.99%;	
}
.ficha{
	position:relative;
	overflow:hidden;	
}
.imagen{
	
}
.overlay {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	opacity: 0;
	transition: .5s ease;
	background-color:rgba(50,14,59 ,0.8);
}
.ficha:hover .overlay {
	opacity: 1;
}
.proyecto-titulo{
	width:80%;
	padding:0%;	
	margin:18% 0% -0% 8%;
	text-align: left;	
	font-size: 3.5vw;
	color: #FFF6A7;
	font-weight: normal;	
	line-height: 0.8em;
}
.proyecto-subtitulo{
	width:80%;
	padding:0%;	
	margin:0% 0% 0% 10%;	
	text-align:left;	
	font-size: 1.3vw;
	color: #FFF6A7;
	font-family: "Mulish", Arial, sans-serif;
	transform:rotate(-2deg);	
}
.proyecto-texto{
	width:80%;
	padding:0%;		
	margin:5% 10% 10% 10%;
	text-align:left;	
	font-size: 1.2vw;
	color: #FFF6A7;
	text-overflow: ellipsis;
}
.proyecto-enlace{
	width:80%;
	padding:0%;		
	margin:0% 0% 0% 10%;
	text-align:left;	
	font-size: 1.4vw;
	color: #FFF6A7;
}
.proyecto-enlace a{
	color:#320E3B;
}
.proyecto-enlace a:hover{
	background-color:#D61347;
	color:#FFF6A7;
}
.proyecto-enlace a:focus{
	background-color:#D61347;
	color:#FFF6A7;
}
.resaltado{
	font-weight:normal;
	color:rgba(51,0,51 ,1 );
	background-color:rgba(238,168,21 ,0.9 );
}
.CTA-fondo{
	margin:5% 0 0 0;
	padding:10% 12% 8% 12%;
	background-color:#320E3B;	
	mix-blend-mode:multiply;
}
.CTA-texto{
	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
	font-size: 9vw;
	letter-spacing: -0.05em;
	line-height: 1em;
	color: #FFF6A7;
	font-weight:normal;
}
#texto-dinamico {
  border-right: 9px solid #FFF6A7;
  padding-right: 1px;
  animation: blink 0.7s step-end infinite;
  
}
/* Animación de parpadeo del cursor */
@keyframes blink {
  0% { border-color: transparent; }
  50% { border-color: #FFF6A7; }
  100% { border-color: transparent; }
  
}
.txt-dinamico{
	display:none;
}
.CTA-boton{
	width:35%;
	margin: 3% auto;
	border-radius: 1000px;
	transform: rotate(-3deg);

	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
	font-size: 4vw;
	background-color:#D61347;
	color:#FFF6A7;
		
	overflow: hidden;
	white-space: nowrap;
	text-overflow: clip;
}
.CTA-boton a{
	color:#FFF6A7;
	border-radius: 1000px;
	padding:0 5%;
}
.CTA-boton:hover{
	transform: rotate(0deg);
	background-color:#EEA815;
}
.CTA-boton a:hover{
	color:#320E3B;
	background-color:#EEA815;	
}
.CTA-boton a:focus{
	color:#320E3B;
	background-color:#EEA815;
}
/*
.CTA-boton a:active{
	color:#320E3B;
}
.CTA-boton a:visited{
	color:#320E3B;
}
*/
.si{
	width:60%;
}
.si a{
	padding:0 12%;
}
.foot-padding{
	padding:2% 20%;
}
.foot-logo{
	padding:5% 5%;	
}
.foot-logo a:hover{
	background-color:transparent;
}
.foot-textos{
	text-align:left;
	font-size:2vw;
	padding:15% 5% 0% 5%;
}
.foot-redes{
	margin-top:5%;
}
.logo-redes{
	width:12.49%;
}
.logo-redes a{
	padding:0%;
	border-radius: 100%;
}
.logo-redes a:hover, .logo-redes a:active, .logo-redes a:visited {
	background-color:rgba(238,168,21 ,0.9 );
}
address{
	font-style:normal;
}
.by-modo{
	font-size:1.5vw;
	font-weight:lighter;
	margin:5%;	
}
.hr{
	font-family: "Familia Murales", "Comic Sans MS", sans-serif;
	font-size:4vw;
	letter-spacing: 0.5em;
	margin:-2% auto -4% auto;
	padding:0%;
}

/*
 _____ ______   _______   ________  ___  ________ 
|\   _ \  _   \|\  ___ \ |\   ___ \|\  \|\   __  \
\ \  \\\__\ \  \ \   __/|\ \  \_|\ \ \  \ \  \|\  \
 \ \  \\|__| \  \ \  \_|/_\ \  \ \\ \ \  \ \   __  \
  \ \  \    \ \  \ \  \_|\ \ \  \_\\ \ \  \ \  \ \  \
   \ \__\    \ \__\ \_______\ \_______\ \__\ \__\ \__\
    \|__|     \|__|\|_______|\|_______|\|__|\|__|\|__|
 ________  ___  ___  _______   ________  ___  _______   ________ 
|\   __  \|\  \|\  \|\  ___ \ |\   __  \|\  \|\  ___ \ |\   ____\ 
\ \  \|\  \ \  \\\  \ \   __/|\ \  \|\  \ \  \ \   __/|\ \  \___|_ 
 \ \  \\\  \ \  \\\  \ \  \_|/_\ \   _  _\ \  \ \  \_|/_\ \_____  \ 
  \ \  \\\  \ \  \\\  \ \  \_|\ \ \  \\  \\ \  \ \  \_|\ \|____|\  \ 
   \ \_____  \ \_______\ \_______\ \__\\ _\\ \__\ \_______\____\_\  \
    \|___| \__\|_______|\|_______|\|__|\|__|\|__|\|_______|\_________\
          \|__|                                           \|_________|


/* MEDIA QUERIES */

@media screen and (max-width: 1080px) {  /* PC 100% - 1080px X ?px */


.header{
	min-width:100%;
}

}

@media screen and (max-width: 960px) {  /* LAPTOP 100% - 960px X 540px */

.galeria{
	width:33.32%;
}
.proyecto-titulo{
	font-size: 4.5vw;
}
.proyecto-subtitulo{
	font-size: 1.5vw;
}
.proyecto-texto{
	font-size: 1.5vw;
	hyphens: auto;		
}
.proyecto-enlace{
	font-size: 1.8vw;
}














}

@media screen and (max-width: 720px) { /* TABLETS 99.99% - 720px X 405px */

.card-logo{
	width:45%;
	margin:7.5% 2.5% 7.5% 2.5%;
}
.texto-intro{
	font-size: 4vw;
}
.card-retrato{
	width:45%;
	margin:0% 2.5% 0 2.5%;
}
.foto-retrato{
	margin:5% 0% 0% 0%;	
	transform:rotate(3deg);
}
.card-hola{
	width:45%;
	margin:0% 2.5% 0 2.5%;
}
.hola-new{
	display:none;
}
.hide-hola{
	display:inline-block;
}
.somos{
	width:100%;
	font-size: 2.1vw;
	margin-left:-3%;
	padding:2.5% 0% 0% 0%;
	hyphens: none;
	hyphens: auto;
}
.oculto-720{
	display:none;	
}
.by-modo{
	font-size:1em;
}

}

@media screen and (max-width: 640px) { /* CELULARES GRANDES 66.66% - 640px X 360px */

.galeria{
	width:50%;
}
.proyecto-titulo{
	font-size: 6.5vw;
}
.proyecto-subtitulo{
	font-size: 2.5vw;
}
.proyecto-texto{
	font-size: 2.5vw;
	hyphens: auto;		
}
.proyecto-enlace{
	font-size: 2.8vw;
}
.oculto-640{
	display:none;	
}
.CTA-fondo{
	padding:10% 6% 10% 6%;
}
.CTA-texto{
	font-size: 10vw;
}
.CTA-boton{
	width:45%;
	font-size: 4vw;
}
.foot-padding{
	width:89.96%;
	width:100%;
	padding:10% 0%;
}
.foot-textos{
	font-size:3vw;
}


}

@media screen and (max-width: 480px) { /* CELULARES PEQUEÑOS 55.55% - 480x X 270px HORIZONTAL*/

body{
	overflow:hidden;
}
#super-container {
    height:100vh;
    overflow-y: scroll;
    sscroll-snap-type: y mandatory;
}
#super-container > Xsection, header, main, footer, .card-logo, .holas, .galeria, .CTA-fondo {
    justify-content: center;
    align-items: center;
    
    scroll-snap-align: center;
    scroll-snap-stop: always;
}
.card-logo{
	width:99.96%;
	height:90vh;
	margin:0%;
    justify-content: center;
    align-items: center;
    display:grid;
}
.logo-familia{
	margin-top:20%;
}
.texto-intro{
	width:96%;
	margin:0% auto;
	font-size: 8vw;
}
.card-retrato{
	width:90%;
	margin:15% 5% 0% 5%;
}
.card-hola{
	width:90%;
	margin:10% 5% 0% 5%;	
}
.somos{
	width:100%;
	margin-left:0%;
	padding:2.5% 0% 0% 0%;
	font-size: 1.1em;
	margin-bottom:10%;
}
.galeria{
	width:49.98%;
}
.big-me{
	width:100%;
}
.hide-me{
	display:none;
}
.big-me .proyecto-titulo{
	font-size: 10.5vw;
}
.big-me .proyecto-subtitulo{
	font-size: 4.5vw;
}
.big-me .proyecto-texto{
	font-size: 4.5vw;
	hyphens: auto;		
}
.big-me .proyecto-enlace{
	font-size: 4.8vw;
	margin-bottom:20%;
}
.CTA-fondo{
	height:90vh;
	padding:40% 5%;
    justify-content: center;
    align-items: center;
    display:grid;
}
.CTA-texto{
	font-size: 13vw;
}
.CTA-boton{
	width:90%;
	font-size: 7vw;
	margin:10% auto;
}
.txt-dinamico{
	display:inline;
}
.foot-padding{
	height:90vh;
	display:grid;
}
.foot-logo{
	width:99.96%;
}
.foot-textos{
	width:99.96%;
	font-size:6vw;
	padding:5% 5%;
	text-align:center;
}

}

@media screen and (max-width: 320px) { /* CELULARES PEQUEÑOS 44.44% - 320px X 570px VERTICAL*/


}


/*PREFIJOS

-webkit-	Chrome
-moz-		Firefox
-ms-		IE
-o-			Opera

*/