/* 
Câmera: 
    Zoom: 1.75
Device:
    Y: 0.13
    Rotation: 20
    Color:
        Default: C8C8C8
        Azul: 4a6284
        Vermelho: d13d3d
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;700&display=swap');

:root {
	--color-bg-1: #252541;
	--color-bg-2: #383856;
	--color-bg-3: #56567a;
}

* {
	box-sizing: border-box;
}

body {
    margin: 0;
	font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
	background-color: #121231;
}

h1 {
    font-size: 3em;
    font-weight: 700;
}

.fit {
    margin: 0;
}

h2 {
    font-size: 2.25em;
    font-weight: 700;
}

h4 {
    font-size: 1.5em;
    font-weight: 700;
}

p, ul {
    font-size: 1.2em;
}

img.screen {
	max-width: 100%;
	height: auto;
    display: block;
}

a, a:visited {
    color: #2DC6EE;
}

.color-white {
    color: #FFFFFF;
}
.color-medium {
    color: #A8B2E3;
}
.color-primary {
    color: #2DC6EE;
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.box-container {
    /* display: flex;
    align-items: center; */
}
.box {
    padding: 1em 1.5em;
    /* border: 1px solid red; */
}
.box-padding {
    padding: 1em;
}

.box-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.clear {
    clear: both;
}

header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 1em;
}
.logo img {
    height: 40px;
    margin-top: 0.25em;
}
header.header .social {
    height: 30px;
}





/* SECTION MAIN */
section.main {
    background-color: var(--color-bg-1);
}

section.main .stores {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
section.main .stores span {
    display: inline-block;
    text-align: center;
}
section.main .stores .ios {
    width: 44%;
}
section.main .stores .android {
    width: 49%;
}
section.main .stores span img {
    max-width: 100%;
}

#stores-desktop {
    display: none;
    margin-top: 5em;
}



/* SECTION LINEUP */
section.lineup {
    background-color: var(--color-bg-2);
}

section.lineup .brands {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
section.lineup .brands img {
    width: 130px;
    border-radius: 15px;
    margin: 1em;
}



/* SECTION COLLECTION */
section.collection {
    background-color: var(--color-bg-1);
}



/* SECTION SHARE */
section.share {
    background-color: var(--color-bg-2);
}



/* SECTION FEATURES */
section.features {
    background-color: var(--color-bg-1);
}



/* SECTION SUPPORT */
section.support {
    background-color: var(--color-bg-3);
}





@media (min-width: 768px) {
    #stores-mobile {
        display: none;
    }
    #stores-desktop {
        display: flex;
    }
    .box-container {
        display: flex;
        align-items: center;
    }
    .reverse {
        flex-direction: row-reverse;
    }
    .box {
        width: 50%;
    }
    section.lineup .brands img {
        width: 190px;
    }
}