.custom-class {
    background-color: #489524;
    color: white;
}

.custom-class:hover {
    background-color: #489524 !important;
    border: 2px solid black;
}

.flatpickr-day.selected {
background-color: #133204 !important;
border: 2px solid #133204 !important;
}


    .flatpickr-day:hover{
background-color: #133204 !important;
border: 2px solid #133204 !important;
}


.flatpickr-day {
    background-color: #489524 !important;
    color:white !important;
}


        .flatpickr-disabled:hover{
    background-color:rgba(57,57,57,0.1) !important;
    border:none !important  ;
    color:black !important;
}

.flatpickr-disabled{
    background-color:rgba(57,57,57,0.1) !important;
    color:black !important;
}



  /* footer */
  .icone-footer {
    background: #489524 !important;
    color: white !important;
}

.icone-footer:hover {
    background: #489524 !important;
    color: white !important;
}

.icone-contato {
    color: black !important;
}

/* footer */

/* btns */
.btn-branco {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #489524;
    background: white;
}

.btn-branco:hover {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: white !important;
    background: #146c0b;
}

.btn-get-started:hover {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: white !important;
    background: #146c0b !important;
}

.btn-verde:hover {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: white !important;
    background: #146c0b;
}

#header {
    background: black !important;
    padding: 12px 0 !important;
}


/* btns */

@media screen and (max-width: 768px) {
    #ul-menu {
        background: black;
    }

}
.hidden { display: none; }
        .step { transition: opacity 0.5s ease-in-out; }
        .progress-bar-striped { background: repeating-linear-gradient(45deg, #198754, #198754 10px, #28a745 10px, #28a745 20px); }
   


        body {
            background-color: #f4f4f4;
            font-family: Arial, sans-serif;
        }
    
        .container {
            display: flex;
            max-width: 100%;
            margin: 80px auto;
            background: #fff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }
    
        .sidebar {
            background-color: #146c0b;
            color: white;
            padding: 20px;
            width: 30%;
        }
    
        .sidebar .step-indicator {
            list-style: none;
            padding: 0;
        }
    
        .sidebar .step-indicator li {
            padding: 15px 10px;
            margin: 10px 0;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }
    
        .sidebar .step-indicator li.active {
            background-color: #489524;
            border-left: 4px solid #fff;
            font-weight: bold;
        }
    
        .form-section {
            padding: 20px;
            width: 70%;
        }
    
        .form-label {
            font-weight: bold;
            margin-top: 20px;
        }
    
        .form-control {
            border: none;
            border-bottom: 2px solid #ccc;
            border-radius: 0;
            background-color: transparent;
            box-shadow: none;
            transition: border-color 0.3s;
        }
    
        .btn-success {
            background-color: #146c0b;
            border-radius: 50px;
            padding: 12px 30px;
        }
    
        .hidden {
            display: none;
        }
    
    
        /* teste */
        
    
    .step-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .step-item {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top:3em;
    }
    
    .circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #555;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: bold;
    }
    
    .step-item.active .circle {
        background: #4CAF50;
    }
    
    .step-text {
        font-size: 18px;
        font-weight: bold;
        flex-grow: 1;
    }
    
    .line {
        width: 2px;
        height: 50px;
        background: #888;
    }
    
    /* Progress Bar */
    .progress-container {
        display: none; /* Escondido por padrão */
    }
    
    @media (max-width: 768px) {
        .sidebar {
            display: none !important; /* Esconde a sidebar em telas menores */
        }
        .progress-container {
            display: block; /* Mostra a barra de progresso */
        }
        .header{
            display: block !important;
        }
        #conteudo_geral{
            margin-top: 5em !important;
        }
        .form-section{
            justify-content: start !important;
        }
    }
    #conteudo_geral{
        margin-top:0;
    }
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        display: flex;
        min-height: 100vh; /* Faz com que ocupe toda a tela */
    }
    
    .sidebar {
        background: black;
        color: #fff;
        padding: 30px;
        width: 280px;
        /* border-radius: 12px; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-section {
        flex-grow: 1; /* Faz o conteúdo ocupar o espaço restante */
        display: flex;
        flex-direction: column;
        justify-content: center; 
        padding: 20px;
    }
    
    .step label{
        font-size:25px;
        color:#333;
    }
    
    
    .form-control:focus {
        border-color: #333;
        outline: 0;
        box-shadow: none;
    }
    
    .btn-principal{
        background-color: #1f9f49;
        border-color: #1f9f49;
        color:white;
     
    }
    .btn-form{
        border-radius:60px;
        padding-left: 30px;
        font-size: 15px;
        padding-right: 30px;
    }
    .btn-principal:hover{
        background-color: #1f9f49;
        border-color: #1f9f49;
        color:white;
    }
    .btn-principal:hover{
        background-color: #1f9f49;
        border-color: #1f9f49;
        color:white;
    }
    .btn-principal:active{
        background-color: #1f9f49 !important;
        border-color: #1f9f49 !important;
        color:white !important;
    }
        /* teste */
    
        .options-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .option-card {
        background: #2a2a2a;
        color: white;
        border: 2px solid transparent;
        padding: 15px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .option-card:hover {
        background: #3b3b3b;
    }
    
    .option-card.selected {
        border-color: #4CAF50;
        background: #4CAF50;
        color: white;
    }
    
    .icon-check {
        font-size: 20px;
    }
    
    
    .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
        color:white;
        background-color: #4CAF50;
        border-color: #4CAF50;
    }
    
    .btn-outline-success {
        --bs-btn-color: #4CAF50;
        --bs-btn-border-color: #4CAF50;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #4CAF50;
        --bs-btn-hover-border-color: #4CAF50;
        --bs-btn-focus-shadow-rgb: 25, 135, 84;
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #4CAF50;
        --bs-btn-active-border-color: #4CAF50;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #4CAF50;
        --bs-btn-disabled-bg: transparent;
        --bs-btn-disabled-border-color: #4CAF50;
        --bs-gradient: none;
    }