@import url("../variaveis.css");

.error{display: none;}
.error.active{
    
}

.container{
    width: 100%;
    min-height: 84vh;
    background-color: var(--terciary-color);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.list-diferenciais{
    padding-left: 5rem;
}

.nav-etapas{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 1rem 2rem;
    background-color: var(--secundary-color);
}

.nav-etapas button{
    padding: 1rem 1.5rem;
    width: 48%;
    border-radius: 1rem;
    border: solid var(--black-color) 1.5px;
    transition: all .1s ease-in-out;
}

.nav-etapas button:hover{
    transform: scale(1.05);
    background-color: #5964db;
}

.nav-etapas button:nth-child(1){background-color: #37B6AE;}
.nav-etapas button:nth-child(2){background-color: #3F4AB7;}
.nav-etapas button:nth-child(3){background-color: #FABE00;}
.nav-etapas button:nth-child(4){background-color: #E40042;}

.objetivos, .diferenciais{
    padding: 0 2rem;
}

.objetivos-text, .diferencial-text{
    text-align: justify;
}

@media screen and (min-width: 480px) {
    
}

@media screen and (min-width: 600px) {
    
}

@media screen and (min-width: 768px) {
    
}

@media screen and (min-width: 992px) {
    
}

@media screen and (min-width: 1200px){
    
}