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

:root{
    --branco: #FFFFFF;
    --cinza-escuro: #3D3F43;
    --cinza-claro: #F6F6F7;
    --cinza: #D8D9DB;
    --azul-cora: #154295;
    --verde: #00a248;
    --vermelho: #920400;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
  }
  
article {
    flex: 1;
    padding: 2rem;
}

P{
    margin: 0;
}

a{
    text-decoration: none;
}

.navbar{
    border-bottom: 1px solid var(--cinza);
}

.nav-link{
    color: var(--cinza-escuro) !important;
}

.nav-link-active{
    color: var(--azul-cora) !important;
    font-weight: 600;
}

.button-flashy{
    background-color: var(--verde);
    color: var(--branco) !important;
    border-radius: 1rem;
}

.container-article{
    margin-top: 3rem;
}

.container-title {
    text-align: center;
    color: var(--cinza-escuro);
    margin-bottom: 5rem;
}

.container-card {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-process-title{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    color: var(--cinza-escuro);
    align-items: center;
    justify-content: space-between;
}

.card-process {
    width: 100%;
    background-color: var(--cinza-claro);
    border-radius: 20px;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.card-process:hover{
    opacity: 70%;
}

.icon {
    width: 50px;
    height: 50px;
    background-color: var(--azul-cora);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.icon i {
    font-size: 1.125rem;
    color: var(--branco);
}

.card-process h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    max-width: 350px;
    width: 100%;
    margin-bottom: 0;
}

.card-process p {
    color: var(--cinza-escuro);
}

/* FOOTER */
.container-footer{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-evenly;
 }
 

footer{
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    color: var(--branco);
    background-color: var(--azul-cora);
    padding: 1.25rem 0;
    text-align: center;
    font-size: .8125rem;
 }

  /* Responsivo */
 /* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-width: 320px) and (max-width: 480px) {

}

/* (480x800) Android */
@media only screen and (min-width: 480px) and (max-width: 800px) {

}

/* (640x960) iPhone 4 & 4S */
@media only screen and (min-width: 640px) and (max-width: 960px) {
}

/* (720x1280) Galaxy Nexus, WXGA */
@media only screen and (min-width: 720px) and (max-width: 1280px) {

}


/* (1024x768) iPad 1 & 2, XGA */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

}

/* (2048x1536) iPad 3 */
@media only screen and (min-width: 1536px) and (max-width: 2048px) {
    /* insert styles here */
}

/* (1280x720) Galaxy Note 2, WXGA */
@media only screen and (min-width: 720px) and (max-width: 1280px) {

}

/* (1280x1024) SXGA Display */
@media screen and (min-width: 1280px) {
    
}

/* (1366x768) WXGA Display */
@media screen and (min-width: 1366px) {
}

/* (1440x900) WXGA+ Display */
@media screen and (min-width: 1440px) {
}

/* (1680x1050) WSXGA+ Display */
@media screen and (min-width: 1680px) {
}

/* (1920x1080) Full HD Display */
@media screen and (min-width: 1920px) {
}