﻿

/* 🚀 QUADRADO DE TESTE - Se o arquivo CSS carregar, ele fica amarelo */
/*  <div class="sinal-teste-codorna">CSS</div> */


/* --- COMPONENTE: SABER MAIS (BADGE) --- */
.badge-manual {
    background-color: #dc3545;
    color: white !important;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 8px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
    cursor: pointer;
}

    .badge-manual:active {
        transform: scale(0.9);
        background-color: #a71d2a;
    }

/* --- COMPONENTE: CARTÃO DE MANUAL --- */
.bloco-card-manual {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px dashed #ccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
}

.texto-manual {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
    text-align: justify;
    white-space: normal !important;
}

.quebra-texto-manual {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    display: block;
    line-height: 1.5;
    padding-right: 5px;
}

/* --- ESTRUTURA DE BLOCOS --- */
.titulo-bloco {
    font-weight: bold;
    color: #03173d;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-rotulo {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Animação de transição suave */
.animate-fade {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* 🚨 SINAL DE TESTE DO CARLOS */
.sinal-teste-codorna {
    width: 50px;
    height: 50px;
    background-color: yellow !important;
    border: 2px solid black;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: black;
}
