/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header .logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    color: #3b6e2d;
}

p {
    font-size: 18px;
    color: #555;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.option-button {
    padding: 15px 20px;
    background-color: #3b6e2d;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.option-button:hover {
    background-color: #7dbd5b;
}

/* Estilos para o botão desabilitado */
.disabled-button {
    background-color: #cccccc;
    color: #888888;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Título da área de atuação */
.titulo-atuacao {
    font-size: 24px;
    color: #3b6e2d;
    margin-bottom: 15px;
}

/* Estilo da imagem do mapa */
.mapa-container {
    margin-top: 30px;
}

.mapa-atuacao {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para o botão de instalação do PWA */
#installBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    background-color: #3b6e2d;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

#installBtn:hover {
    background-color: #7dbd5b;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 600px) {
    .links-container {
        flex-direction: column;
        align-items: center;
    }

    .option-button {
        width: 100%;
        margin-bottom: 10px;
    }
}
