/* @override 
	http://asomate.mamp.xyz/css/cromatizador.css?* */

/* @group Light Reset */

@charset "UTF-8";
@-ms-viewport{ width: device-width; }

/* HTML5 Reset*/
html, body, div, span, h1,h2,h3,h4,h5,h6, p, blockquote, em, img, main, small, strong, b, i, ol, ul, li, form, label, aside, footer, header, hgroup, menu, nav, section { margin:0; padding:0; border:0; outline:0; font-size:100%; -webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%; vertical-align:baseline; background:transparent; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body { line-height:1; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; -webkit-transition: color .2s linear; -o-transition: color .2s linear; -moz-transition: color .2s linear; -ms-transition: color .2s linear; transition: color .2s linear; text-decoration: none; outline: none; }
a img{ border:0 }
article, aside, footer, header, hgroup, menu, nav, section { display:block; }
blockquote { quotes:none; }
blockquote:before, blockquote:after, q:before, q:after { content:''; content:none; }
h1,h2,h3,h4,h5,h6 { font-style:normal; font-weight:normal; }
input, select { vertical-align:middle; }
input, select, textarea { outline: none; -webkit-appearance: none; -moz-appearance: none; }
ol, ul, nav ul { list-style:none; }
hr { display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0; }
::-moz-selection { background: yellow; }
::selection { background: yellow; }

/* @end */

:root {
	/* Medidas*/
	--unidad: 18px;
	--ancho-minimo: 320px;
	--ancho-maximo: 1024px;
	
	/* Colores (RGB) */
	--color-txt: 0, 0, 40;
	--color-luz: 255, 255, 255;
	--color-azul: 0, 61, 165;
	--color-azul-claro: 141, 200, 232;
	--color-rojo: 255, 88, 93;
	--color-amarillo: 256, 181, 73;
	--color-crema: 254, 228, 205;
	--color-cafe: 181, 129, 80;
	
	/* Tipografía */
	--fuente: forma-djr-micro, sans-serif;
	--fuente-w-normal: 300;
	--fuente-w-media: 500;
	--fuente-alt: adobe-garamond-pro, serif;
	--fuente-alt-w: 400;
}

/* @group Global */

body {
	color: rgb( var(--color-txt));
	background-color: rgb( var(--color-luz));
	font-family: var(--fuente);
	font-weight: var(--fuente-w-normal);
	font-style: normal;
	min-width: var(--ancho-minimo);
	padding-top: 3rem;
	font-size: 1.25rem;
	text-align: center;
}

.left, .right { display: block; }
.left { float: left; }
.right { float: right; }

.contained {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.padded { padding: 2rem; }

h2 {
	font-size: 2rem;
	margin-bottom: 3rem;
	font-weight: var(--fuente-w-media);
}

h3 {
	font-family: var(--fuente-alt);
	font-weight: var(--fuente-alt-w);
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	margin-top: 3rem;
}

p {
	margin-bottom: 2rem;
	text-align: center;
}

p, section li { line-height: 1.75rem; }

strong { font-weight: var(--fuente-w-media);}

section ul, ol { margin-bottom: 2rem; }

section li {
	padding: 1rem 0.5rem;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: rgba(var(--color-azul), .25);
}

ol { counter-reset: li }

ol li::before {
	content: counter(li);
	display: block;
	width: 1em;
	text-align: center;
	width: 100%;
	font-weight: var(--fuente-w-media);
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

ol li { counter-increment: li}

ol li:last-child, ul li:last-child { border-bottom: none; }

.padded p:last-of-type,
.padded ul:last-of-type,
.padded ol:last-of-type { margin-bottom: 0; }

/* @end */

/* @group Navegacion */

#NavBar {
	display: block;
	width: 100%;
	height: 3rem;
	position: fixed;
	background-color: rgb(var(--color-luz));
	top: 0;
	font-size: 1.25rem;
}

#NavBar .contained > div > a {
	color: rgb(var(--color-azul));
	height: 3rem;
	line-height: 3rem;
	display: block;
}

#NavBar .left a { padding-left: 2rem; }

#NavBar .right a { padding-right: 2rem; }

#NavBar .left a:before,
#NavBar .right a:after {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	text-align: center;
	background-repeat: no-repeat;
}

#NavBar .left a:before {
	content: '';
	margin-right: 0.5rem;
	background-image: url(../pix/ico-menu.svg);
}

#NavBar .right a:after {
	content: '';
	margin-left: 0.5rem;
	background-image: url(../pix/ico-contacto.svg);
}

#Menu {
	background-color: rgb(var(--color-luz));
	position: absolute;
	top: 3rem;
	width: 100%;
	display: none;
	left: 0;
	padding: 0;
	text-align: center;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgba(var(--color-azul), .25);
}

#Menu a {
	display: block;
	line-height: 1.75rem;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: rgba(var(--color-azul), .25);
	color: rgb(var(--color-azul));
	padding-top: 1rem;
	padding-bottom: 1rem;
}

#Menu.show { display: block; }

#Icono {
	display: block;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	transition: all 0.5s linear;
	position: absolute;
	left: 50%;
	margin-left: -1.5rem;
	top: -3rem;
	text-align: center;
	background-image: url(../pix/ico-asomate.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.75rem auto;
}

#Icono.show { top: 0;}

/* @end */

/* @group Secciones */

section {
	padding-top: 6rem;
	padding-bottom: 6rem;
	color: rgb(var(--color-azul));
}

#Inicio img {
	width: 75%;
	max-width: 30rem;
	margin-bottom: 4rem;
}

#Inicio h1 span { display: none; }

section:nth-of-type(2) {
	background-color: rgb(var(--color-azul-claro));
}

section:nth-of-type(3) {
	background-color: rgb(var(--color-rojo));
	color: rgb(var(--color-luz));
}

section:nth-of-type(4) {
	background-color: rgb(var(--color-amarillo));
}

section:nth-of-type(5) {
	background-color: rgb(var(--color-azul));
	color: rgb(var(--color-luz));
}

section:nth-of-type(5) ol li::before { color: rgb(var(--color-azul-claro)); }

section:nth-of-type(5) li { border-bottom-color: rgba(var(--color-luz), .25); }

section:nth-of-type(6) {
	background-color: rgb(var(--color-crema));
}

section:nth-of-type(6) li span {
	display: block;
	color: rgba(var(--color-cafe), 1);
}

#Contacto > div > img {
	height: 64px;
	width: auto;
	margin-bottom: 4rem;
}

.person {
	margin-bottom: 3rem;
	font-size: 1.5rem;
}

.person > span {
	display: block;
	margin-bottom: 1rem;
}

.person a {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	
}

.person a {
	background-repeat: no-repeat;
}

.person a:nth-of-type(1) {
	background-image: url(../pix/ico-whatsapp.svg);
}

.person a:nth-of-type(2) {
	background-image: url(../pix/ico-mail.svg);
	margin-left: 2rem;
	margin-right: 2rem;
}

.person a:nth-of-type(3) {
	background-image: url(../pix/ico-phone.svg);
}

.person a span {
	display: none;
}

/* @end */

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #Menu, #NavBar { background-color: rgba(var(--color-luz), .75); }
  
  .blur {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}

/* ⬇ 600px and bigger | Phone Portrait */
@media screen and (min-width: 600px) {
	.padded { padding: 2rem 4rem; }
}

/* ⬇ 768px and bigger | iPad Portrait */
@media screen and (min-width: 600px) {
	.padded { padding: 2rem 6rem; }
}