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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.div-header-icones {
    display: flex;
    align-items: center;
}

body {
    background: linear-gradient(180deg, #000 0%, #3a2415 40%, #d87c2b 100%);
    color: #222;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    background-color: #262626;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

main.container_metrologias {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding: 1rem;
    position: relative;
}

.titulo_metrologias {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.metrologia {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conteudo_metrologia h3 {
    font-size: 1.1rem;
    color: #f35f15;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.conteudo_metrologia p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.2rem;
}

.data_metrologia {
    font-size: 0.85rem;
    color: #777;
}

.botao_ver {
    background: linear-gradient(90deg, #f35f15, #ff7b00);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

header,
footer {
    background-color: #262626;
    color: #fff;
    padding: 0.8rem 1rem;
    text-align: center;
    font-weight: 600;
}

.fa-plus {
    position: fixed;
    bottom: 130px;
    right: 10px;
    z-index: 9999999999;
    background: linear-gradient(90deg, #f35f15, #ff7b00);
    padding: 0.8rem;
    font-size: 24px;
    color: white;
    border-radius: 50%;
}

.btn_metrologias {
    background-color: white;
    border-radius: 12px;
    padding: 0.4rem;
    flex: 1;
    text-align: center;
    opacity: 0.6;
    cursor: pointer;
}

.btn_metrologias.ativo {
    opacity: 1;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.grupo_metrologias {
    display: none;
}

.grupo_metrologias.ativo {
    display: block;
}

.container_secao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}