/*
    Created on  : 07/01/2019
    Author      : ricardobelfort
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html, body{
    width: 100%;
    height: 100%;
}

.fontzero{
    font-size: 0;
}

.text-shadow{
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    -o-text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    -moz-text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    -webkit-text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
}

.alcenter{
    text-align: center;
}

.shadow {
    box-shadow:         3px 3px 5px 6px #333;
    -o-box-shadow:      3px 3px 5px 6px #333;
    -moz-box-shadow:    3px 3px 5px 6px #333;
    -webkit-box-shadow: 3px 3px 5px 6px #333;
  }

img {
    max-width: 100%;
    vertical-align: middle;
}

img a {
    border: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*
COLORS STYLE COM VARIÁVEIS
*/
:root {
    --themeColorA: #9f51ec;
    --themeColorB: #550e9c;
    --themeBgLight: #f8fafb;
    --themeBgDark: #201e29;

    --colorH: #232935;
    --colorP: #96a1b6;
}

/*
EMBED
*/
embed,
video,
iframe,
iframe[style] {
    max-width: 100%;
    height: auto;
}

/*
CONTAINERS
*/
.container {
    max-width: 1170px;
    margin: 0 auto;
}

.embed-container {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.embed-container embed,
.embed-container video,
.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
BOX STYLES
*/
.radius {
    --radius: 4px;
    border-radius: var(--radius);
    -o-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.rounded {
    --radius: 50%;
    border-radius: var(--radius);
    -o-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
}

.transition {
    --seconds: .2s;
    transition-duration: var(--seconds);
    -o-transition-duration: var(--seconds);
    -moz-transition-duration: var(--seconds);
    -webkit-transition-duration: var(--seconds);
    cursor: pointer;
}

/*
BUTTONS STYLE
*/
.btn {
    display: inline-block;
    padding: 20px 40px;
    margin-bottom: 12px;
    background: #888;
    border-radius: 40px;    
    cursor: pointer;
    font-family: 'Open sans', sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: var(--themeColorA);
    margin: 0 10px;
}

.btn:hover {
    color: #fff;
    text-decoration: none;
    background: #666;
}

.btn-small {
    font-size: 0.875em;
}

.btn-big {
    font-size: 1.4em;
}

.btn-purple {
    background: var(--themeColorA);
    color: #fff;
}

.btn-purple:hover {
    background: var(--themeColorB);
    color: #fff;
    box-shadow: 0 16px 32px -6px rgba(0, 0, 0, .2);
}

.btn-purple-out {
    color: var(--themeColorB);
    border: 1px solid var(--themeColorB);
    background: transparent;
    text-shadow: none;
}

.btn-purple-out:hover {
    color: #fff;
    border: 1px solid var(--themeColorB);
    background: var(--themeColorB);
    text-shadow: 1px 1px rgba(0,0,0,0.3);
}

/*
FLEXBOX
*/
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex .flex-1 {
    flex-basis: 100%;
}

.flex .flex-2 {
    flex-basis: calc(50% - 40px);
    margin: 20px;
}

.flex .flex-3 {
    flex-basis: calc(33.33% - 30px);
    margin: 15px;
}

.flex .flex-4 {
    flex-basis: calc(25% - 20px);
    margin: 10px;
}


