* {
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #0032d2;
    --color-secondary: #e9ecec;
    --color-black: #122029;
    --color-white: #E9ECEC;
}

body {
    background-color: #122029;
}

header {
 margin-bottom: -30px;
}



.hero-section {
    padding: 1.25rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: 4rem;
    height: 100vh;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.logo {
    width: 14rem;
    justify-content: center;
    align-items: center;
    display: flex;


}

.geral {
    background-image: url(/img/Slice-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
  
}

.clientes {
    justify-content: center;
    align-items: center;
    display: flex;
}

.button {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    background-color: #0032d2;
    box-shadow: 0px 0px 20px 0px #0032D2;
    padding: 15px 30px 15px 30px;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    display: flex;
}

.button-link {
    color: #E9ECEC;
     font-size: 14px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 50px 10px 0px 10px;
     text-decoration: none;
    text-align: center;
    justify-content: center;
    display: flex;
    background: #fff;
}


h1 {
    font-size: 2.25rem;
    line-height: 130%;
    color: var(--color-white);
    font-weight: 400;
    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 140%;
    color: var(--color-secondary);
    text-align: center;
}

.junte {
    font-size: 0.9rem;
    color: var(--color-secondary);
    text-align: center;
    padding-bottom: 0.75rem;;
}


.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-primary {
    color: var(--color-white);
}


@media screen and (max-width: 600px) {
   
    main {
        padding-left: 1rem;;
        padding-right: 1rem;
    }
}