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

* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #000;
    background: url('/assets/img/background.jpg') no-repeat center bottom fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 1.1em;
}

.container {
    width: 90%;
    max-width: 600px;
    height: 85vh;
    padding: 20px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.9);
}

.custom-prev {
    margin-left: -5px;
}

.custom-next {
    margin-right: -5px;
}

#firstButton {
    display: flex;
    justify-content: flex-end;
}

#cadastrar_arvore {
    display: flex;
    justify-content: flex-end;
}

#map-canvas {
    width: 100%;
    height: 600px;
}

.draggable-tree {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
}

.step {
    display: none;
    flex-grow: 1;
    overflow-y: auto;
    padding: 5px;
}

.step.active {
    display: block;
}

/* .button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
} */

button {
    margin-left: 5px;
    margin-right: 5px;
}

.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-indicator span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ddd;
}

.progress-indicator span.active {
    background-color: #43bdff;
}

.progress-indicator span.current {
    background-color: #43bdff;
}

.form-check-input.rounded-circle {
    border-radius: 50%;
}

#publico-msg {
    background: rgba(65, 65, 65, 0.7);
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    /* max-width: 600px; */
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}

/* botões avançar e anterior */
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button-container .next-btn {
    margin-left: auto;
    /* Garante que o botão Avançar fique à direita */
}

.hidden {
    visibility: hidden;
}

/* MENSAGEM MENORES DE IDADE */
#mensagem-menores-idade {
    color: #25561e;
}

/* CONTADOR DE ARVORES */
#contadorArvores {
    margin-top: -25px;
    margin-right: 30px;
    position: relative;
    color: #fff;
    text-align: right;
}

@media (max-width: 768px) {
    body {
        font-size: 1.0em;
    }

    .container {
        height: 85vh;
        margin-top: -50px;
    }

    #map-canvas {
        width: 100%;
        height: 380px;
    }
}

/* BOTÃO CADASTRAR EMPRESA */
#cadastrar_empresa {
    display: flex;
    justify-content: flex-end;
}

/* COR DO CHECKBOX RADIO QUANDO MARCADO */

input[type="radio"]:checked {
    background-color: #43bdff;
    /* Cor de fundo quando marcado */
    border-color: #43bdff;
    /* Cor da borda quando marcado */
}

input[type="radio"]:checked::before {
    background-color: white;
    /* Cor do ícone da marcação */
}

/*--------------------------------------------------------------
  # BANNER COOKIE
--------------------------------------------------------------*/
#cookie-banner {
    display: none;
    border: 1px solid black;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: 400px;
    background-color: #F4F8FB;
    color: black;
    padding: 10px;
    text-align: left;
    border-radius: 15px;
    z-index: 10;
}

.cookie-content {
    margin: 3%;
    position: relative;
}

.close-button {
    background: none;
    border: none;
    color: black;
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

.cookie-actions {
    text-align: right;
}

.cookie-actions .btn {
    width: 130px;
    height: 50px;
    font-size: 1.1em;
}

#cookie-banner a {
    text-decoration: none;
    color: #0D6EFD;
}