@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,100;1,500;1,700&display=swap');

/***********************
		-	                                                                           BASICS 	-
***********************/

body,
html {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100vh;
    color: #555555;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
    font-style: italic;
    box-sizing: border-box;
    width: 100%;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    width: 100%;

}

hr {}

button {
    cursor: pointer;
    border: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/*******************************
			-	                                                                           	Textos -
********************************/
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
    letter-spacing: .2rem;
}

h3 {
    letter-spacing: .2rem;
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: .8rem;
}

p {
    font-size: .65rem;
}

.font-light {
    font-weight: 100;
}
.font-normal {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.center-text {
    text-align: center;
}


/*******************************
			-	                                                                           	Util -
********************************/
.center-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tapa {
    z-index: 100;
    animation: fadeout 2.5s ease-out forwards .2s;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);

}

.content {
    text-align: center;
    width: 50%;
    min-width: 240px;
    max-width: 350px;
    margin: auto;
    height: 100%;
}

.logo {
    padding: 3rem 0;
    width: 70%;
}

.loading {
    
    background: linear-gradient(90deg, #ffffff 0%, #d5ff8d 100%);
    width: 75%;
    height: .5rem;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
   
}

.bar {
    position: relative;
    height: 100%;
    opacity: .1;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    width: 200%;
    left: -63px;
    animation: pos-x 1s infinite linear;
}

@keyframes pos-x {
    from {
        left: -12%;
    }

    to {
        left: 0%;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


.bar img {
    object-fit: cover;
}