body {
    min-height:100vh;
}

.navbar{
    background: linear-gradient(to right, #14213D, #283E84, #345A86, #5B82B7);
}

.img-fluid {
    max-height:48px; 
    width:auto;
}

.btn-crimson {
    --bs-btn-bg: #cf143d;
    --bs-btn-border-color: #cf143d;
    --bs-btn-color: #fff;

    --bs-btn-hover-bg: #b3092e;
    --bs-btn-hover-border-color: #b3092e;
    --bs-btn-hover-color: #fff;

    --bs-btn-active-bg: #9f0728;
    --bs-btn-active-border-color: #9f0728;
    --bs-btn-active-color: #fff;

    --bs-btn-disabled-bg: #cf143d;
    --bs-btn-disabled-border-color: #cf143d;
    --bs-btn-disabled-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(to right, #14213D, #283E84, #345A86, #5B82B7);
}

.calendario-wrapper {
  width: 100%;
}

.calendario-table {
  width: 100%;
  table-layout: fixed;
  background: #fff;
}

.calendario-table td {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: top;
  padding: 0.85rem 0.9rem;
  border: 1px solid #000;
}

.calendario-table .border-0 {
  border: 0 !important;
}

.calendario-label {
  width: 24%;
  min-width: 170px;
  font-weight: 600;
}

.calendario-content {
  width: auto;
}

.calendario-titulo {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.3;
}

.calendario-content p,
.calendario-content ul {
  line-height: 1.45;
}

.calendario-content ul {
  margin-bottom: 0;
}

.emoji-mail {
  font-size: 1rem;
  line-height: 1;
  margin-right: 0.25rem;
}

@media (max-width: 576px) {
  .calendario-table,
  .calendario-table tbody,
  .calendario-table tr,
  .calendario-table td {
    display: block;
    width: 100%;
  }

  .calendario-table tr {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .calendario-table td {
    border: 0 !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding: 0.8rem 0.9rem;
  }

  .calendario-table td:last-child {
    border-bottom: 0 !important;
  }

  .calendario-label {
    background: #f8f9fa;
    min-width: 0;
  }
}


#wizard {
    padding:20px;
}

.wizard-steps {
        counter-reset: step;
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        position: relative;
}

.wizard-steps::before {
        content: '';
        position: absolute;
        top: 1rem;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--bs-border-color);
        z-index: 0;
}

.wizard-steps li {
        position: relative;
        z-index: 1;
        background: var(--bs-body-bg);
        padding: 0 0.75rem;
        text-align: center;
        color: var(--bs-secondary-color);
        font-size: 0.875rem;
}

.wizard-steps li::before {
        counter-increment: step;
        content: counter(step);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        margin: 0 auto 0.5rem;
        border-radius: 50%;
        background: var(--bs-body-tertiary-bg);
        border: 2px solid var(--bs-border-color);
        color: var(--bs-secondary-color);
        font-weight: 600;
}

.wizard-steps li.active {
        color: var(--bs-primary);
        font-weight: 600;
}

.wizard-steps li.active::before {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
}

.wizard-steps li.completed::before {
        background: var(--bs-success);
        border-color: var(--bs-success);
        color: #fff;
        content: '\f633';
        font-family: 'bootstrap-icons';
}





@keyframes fade {
    from { opacity:0; }
    to { opacity:1; }
}

#chart-container {
    height:420px;
}


.result-label {
    font-weight:700;
    color:#0d6efd;
}



#grafico {
    height:350px;
}


.nav-link.disabled {
    opacity:.4;
    pointer-events:none;
}