.emdesenv {
    background: var(--carvao);
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.emdesenv_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 440px;
    width: 100%;
}

.emdesenv_icone {
    width: 80px;
    height: 80px;
    background: rgba(232,96,28,0.08);
    border: 1px solid rgba(232,96,28,0.20);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.emdesenv_titulo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--carvao);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.emdesenv_subtitulo {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--cinza-medio);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.emdesenv_barra {
    width: 100%;
    height: 4px;
    background: rgba(43,45,47,0.10);
    border-radius: 4px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.emdesenv_barra_inner {
    height: 100%;
    width: 60%;
    background: var(--laranja);
    border-radius: 4px;
    animation: progresso 2s ease-in-out infinite alternate;
}

@keyframes progresso {
    from { width: 40%; opacity: 0.7; }
    to   { width: 75%; opacity: 1;   }
}


.emdesenv_btn {
    justify-content: center;
    padding: 11px 28px;
    font-size: 0.95rem;
}