/* Estilos customizados para o domínio territorialgeo */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa; 
}
main {
    flex: 1;
}
.card-icon {
    font-size: 3rem;
    color: #038e0a; /* Cor primária territorialgeo */
}
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.card-body {
    display: flex;
    flex-direction: column;
}
.card-title {
    font-weight: 500;
}
.card-text {
    flex-grow: 1;
}
.footer {
    background-color: #212529; /* Tom levemente mais escuro para contraste */
}

/* Identidade Visual TerritorialGeo */
.bg-padrao-site {
    background-image: linear-gradient(135deg, rgb(0, 165, 80) 0%, rgb(0, 128, 64) 100%);
}

.btn-padrao-site {
    background-image: linear-gradient(135deg, rgb(0, 165, 80) 0%, rgb(0, 128, 64) 100%);
    color: white;
    border-color: #038e0a;
}

.btn-padrao-site:hover {
    background-color: #04a30b; /* Verde um pouco mais aberto para o hover */
    color: white;
    border-color: #04a30b;
}

.btn-padrao-site:active {
    background-color: #026d08; /* Verde mais fechado para o clique */
    color: white;
    border-color: #026d08;
}

.btn-padrao-site.disabled,
.btn-padrao-site:disabled {
    background-image: linear-gradient(135deg, rgb(0, 165, 80) 0%, rgb(0, 128, 64) 100%);
    border-color: #038e0a;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    color: #f0f0f0;
}


/* Estilos customizados */
.form-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* --- ESTILOS PARA O FLUXOGRAMA COMPACTO (TERRITORIALGEO) --- */
.timeline-compact {
    position: relative;
    padding: 1rem 0;
}

.timeline-compact .timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-compact .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #dee2e6; /* Cinza claro por padrão */
    background-color: white;
    color: #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.timeline-compact .timeline-step h3 {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #6c757d;
}

/* Linha de conexão do fluxograma */
.timeline-compact::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    background-color: #dee2e6;
    top: calc(25px + 1rem - 1.5px);
    left: 10%;
    z-index: 0;
}

/* --- ESTILOS PARA ETAPAS (ATIVA E CONCLUÍDA) - PADRÃO TERRITORIALGEO --- */

/* Etapa Ativa: Verde vibrante principal */
.timeline-compact .timeline-step.active .icon-circle {
    border-color: #038e0a; 
    background-image: linear-gradient(135deg, rgb(0, 165, 80) 0%, rgb(0, 128, 64) 100%);
    color: white;
}

.timeline-compact .timeline-step.active h3 {
    color: #038e0a;
    font-weight: 700;
}

/* Etapa Concluída: Tom levemente mais escuro para indicar finalização */
.timeline-compact .timeline-step.completed .icon-circle {
    border-color: #026d08; 
    background-color: #026d08;
    color: white;
    font-size: 1.8rem;
}

.timeline-compact .timeline-step.completed h3 {
    color: #026d08;
}

/* Ajuste para telas pequenas */
@media (max-width: 767px) {
    .timeline-compact::after { display: none; }
    .timeline-compact .timeline-step { display: flex; align-items: center; margin-bottom: 1rem; text-align: left !important; }
    .timeline-compact .icon-circle { margin: 0; width: 45px; height: 45px; font-size: 1.2rem; flex-shrink: 0; }
    .timeline-compact .timeline-content { margin-left: 1rem; }
    .timeline-compact .timeline-step h3 { margin-top: 0; }
}



