@charset "UTF-8";

/* RESET CSS */
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, 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, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CUSTOM RESET*/
a {
    text-decoration: none;
}
* {
    box-sizing: border-box;
}
*:focus {
    outline: 0;
}
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
    -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
}

/* SIMBA */

/* FONTS */
@font-face {
	font-family: 'simba';
	src: url('fonts/VAGRoundedStd-Bold.eot');
	src: local('☺'), url('fonts/VAGRoundedStd-Bold.woff') format('woff'), url('fonts/VAGRoundedStd-Bold.ttf') format('truetype'), url('fonts/VAGRoundedStd-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* LANDING */
body {
    font-family: 'simba', sans-serif;
}
#background {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: #fed473;
    background: -moz-linear-gradient(45deg,  #fed473 0%, #f49b53 100%);
    background: -webkit-linear-gradient(45deg,  #fed473 0%,#f49b53 100%);
    background: linear-gradient(45deg,  #fed473 0%,#f49b53 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fed473', endColorstr='#f49b53',GradientType=1 );
    z-index: 1;
}
#background_pattern {
    float: left;
    width: 100%;
    height: 100%;
    background-image: url(../images/pattern.png);
    background-repeat: repeat;
}
#dog {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 200px;
    height: 300px;
    background: url(../images/dog.png) no-repeat;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
#cat {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 152px;
    height: 250px;
    background: url(../images/cat.png) no-repeat;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}
#logo {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    z-index: 10;
}
#logo img {
    width: 100%;
}
#texto {
    position: absolute;
    top: 360px;
    left: 50%;
    width: 640px;
    margin-left: -320px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    z-index: 10;
}
#tiendas {
    position: absolute;
    z-index: 10;
    top: 450px;
    left: 50%;
    width: 600px;
    margin-left: -300px;
}
#tiendas_title {
    float: left;
    width: 100%;
    font-size: 20px;
    text-align: center;
    color: #fff;
}
#tiendas_img {
    float: left;
    width: 100%;
    margin-top: 15px;
    text-align: center;
}
#tiendas_img img {
    max-width: 100%;
}
#redes {
    position: absolute;
    top: 650px;
    left: 50%;
    width: 640px;
    margin-left: -320px;
    text-align: center;
    z-index: 20;
}
#redes a {
    display: inline-block;
    margin: 0px 5px;
}
@media (max-width: 640px) {
    #dog {
        width: 100px;
    }
    #cat {
        width: 76px;
        height: 130px;
    }
    #logo {
        top: 10px;
        width: 100px;
        margin-left: -50px;
    }
    #texto {
        top: 160px;
        width: 100%;
        left: 0px;
        padding: 0px 10%;
        margin-left: 0px;
        font-size: 14px;
    }
    #tiendas {
        top: 250px;
        width: 100%;
        left: 0px;
        margin-left: 0px;
        padding: 0px 10%;
    }
    #redes {
        top: 380px;
    }
    #redes a {
        width: 44px;
        height: 44px;
    }
    #redes a img {
        width: 100%;
    }
}